/* -------------------------------- 

Primary style

-------------------------------- */

@media only screen and (max-width: 1199px) {
  body.nav-on-left.overflow-hidden {
    overflow: hidden;
  }
}

a {
  color: #69aa6f;
  text-decoration: none;
}

img {
  /* make images responsive */
  max-width: 100%;
}

input {
  font-family: sans-serif;
  font-size: 1.6rem;
}

input[type="search"]::-ms-clear {
  /* removes close icon - IE */
  display: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-main-content, .cd-main-header {
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

.cd-main-content, .cd-main-header {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
@media only screen and (max-width: 1199px) {
  .cd-main-content.nav-is-visible, .cd-main-header.nav-is-visible {
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    -o-transform: translateX(-260px);
    transform: translateX(-260px);
  }
  .nav-on-left .cd-main-content.nav-is-visible, .nav-on-left .cd-main-header.nav-is-visible {
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    -ms-transform: translateX(260px);
    -o-transform: translateX(260px);
    transform: translateX(260px);
  }
}

.cd-main-content {
  background: #e2e3df;
  min-height: 115px;
  z-index: 1;
}

.cd-main-header {
  height: 115px; width:100%; position:fixed; 
  background: #ffffff;
  z-index: 99;
}

/*@media only screen and (max-width: 767px) {
.cd-main-content {min-height: 70px;}
.cd-main-header { height: 70px; z-index: 3;}
	
}*/
.nav-is-fixed .cd-main-header {
  /* add .nav-is-fixed class to body if you want a fixed navigation on > 1200px */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
/*@media only screen and (min-width: 1200px) {
  .cd-main-header {
    height: 80px;
  }
  .cd-main-header::after {
    clear: both;
    content: "";
    display: table;
  }
}*/

.cd-logo {
  position: absolute;
  top: 10px;
  left: 15px;
}
.cd-logo img {
  display: block; height:60px;
}
/*@media only screen and (max-width: 380px) {
.cd-logo {
  position: absolute;
  top: 20px;
  left: 15px;
}
.cd-logo img {
  display: block; height:45px;
}
}
@media only screen and (max-width: 1199px) {
  .nav-on-left .cd-logo {
    left: auto;
    right: 5%;
  }
}
@media only screen and (min-width: 1200px) {
  .cd-logo {
    top: 26px;
    left: 4em;
  }
}
*/
.cd-header-buttons {
  position: absolute;
  display: inline-block;
  top: 10px;
  right: 15px;
}
.cd-header-buttons li {
  display: inline-block;
}
@media only screen and (max-width: 1199px) {
  .nav-on-left .cd-header-buttons {
    right: auto;
    left: 5%;
  }
  .nav-on-left .cd-header-buttons li {
    float: right;
  }
}
@media only screen and (min-width: 1200px) {
  .cd-header-buttons {
    top: 18px;
    right: 4em;
  }
}

.cd-search-trigger, .cd-nav-trigger {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  white-space: nowrap;
  /* hide text */
  color: transparent;
  z-index: 3;
}

.cd-search-trigger::before, .cd-search-trigger::after {
  /* search icon */
  content: '';
  position: absolute;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-search-trigger::before {
  /* lens */
  top: 11px;
  left: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #2e3233;
}
.cd-search-trigger::after {
  /* handle */
  height: 3px;
  width: 8px;
  background: #2e3233;
  bottom: 14px;
  right: 11px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-search-trigger span {
  /* container for the X icon */
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.cd-search-trigger span::before, .cd-search-trigger span::after {
  /* close icon */
  content: '';
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 22px;
  top: 50%;
  margin-top: -2px;
  left: 50%;
  margin-left: -11px;
  background: #2e3233;
  opacity: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
}
.cd-search-trigger span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-search-trigger span::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cd-search-trigger.search-is-visible::before, .cd-search-trigger.search-is-visible::after {
  /* hide search icon */
  opacity: 0;
}
.cd-search-trigger.search-is-visible span::before, .cd-search-trigger.search-is-visible span::after {
  /* show close icon */
  opacity: 1;
}
.cd-search-trigger.search-is-visible span::before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-search-trigger.search-is-visible span::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cd-nav-trigger span, .cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* hamburger icon in CSS */
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 24px;
  background: #2e3233;
}
.cd-nav-trigger span {
  /* line in the center */
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -2px;
  -webkit-transition: background 0.3s 0.3s;
  -moz-transition: background 0.3s 0.3s;
  transition: background 0.3s 0.3s;
}
.cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* other 2 lines */
  content: '';
  right: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  -moz-transition: -moz-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
}
.cd-nav-trigger span::before {
  /* menu icon top line */
  top: -6px;
}
.cd-nav-trigger span::after {
  /* menu icon bottom line */
  top: 6px;
}
.cd-nav-trigger.nav-is-visible span {
  /* hide line in the center */
  background: rgba(46, 50, 51, 0);
}
.cd-nav-trigger.nav-is-visible span::before, .cd-nav-trigger.nav-is-visible span::after {
  /* keep visible other 2 lines */
  background: #2e3233;
}
.cd-nav-trigger.nav-is-visible span::before {
  -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -o-transform: translateX(4px) translateY(-3px) rotate(45deg);
  transform: translateX(4px) translateY(-3px) rotate(45deg);
}
.cd-nav-trigger.nav-is-visible span::after {
  -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
  transform: translateX(4px) translateY(2px) rotate(-45deg);
}
@media only screen and (min-width: 1200px) {
  .cd-nav-trigger {
    display: none;
  }
}

.cd-primary-nav, .cd-primary-nav ul {
	list-style:none; text-transform:uppercase;
	padding:0;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 260px;
  background: #2e3233;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 99999;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-primary-nav a, .cd-primary-nav ul a {
  display: block;
  /*height: 60px;
  line-height: 60px;*/
  padding: 15px 20px;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;*/
  border-bottom: 1px solid rgba(255,255,255,0.1);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s; border-bottom: solid 1px rgba(255,255,255,0.1);
}
.cd-primary-nav.is-hidden, .cd-primary-nav ul.is-hidden {
  /* secondary navigations hidden by default */
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.cd-primary-nav.moves-out > li > a, .cd-primary-nav ul.moves-out > li > a {
  /* push the navigation items to the left - and lower down opacity - when secondary nav slides in */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}

@media only screen and (max-width: 1199px) {
  .nav-on-left .cd-primary-nav, .nav-on-left .cd-primary-nav ul {
    right: auto;
    left: 0;
  }
}
.cd-primary-nav .see-all a {
  /* different style for the See all button on mobile and tablet */
  color: #69aa6f;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item, .cd-primary-nav .cd-nav-icons .cd-nav-item {
  /* items with picture (or icon) and title */
  height: 80px;
  line-height: 80px;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item h3, .cd-primary-nav .cd-nav-icons .cd-nav-item h3 {
  overflow: hidden;
  text-overflow: ellipsis;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item {
  padding-left: 90px;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item img {
  position: absolute;
  display: block;
  height: 40px;
  width: auto;
  left: 20px;
  top: 50%;
  margin-top: -20px;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item {
  padding-left: 75px;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item p {
  color: #2e3233;
  font-size: 1.3rem;
  /* hide description on small devices */
  display: none;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item::before {
  /* item icon */
  content: '';
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-1::before {
  background-image: url("../img/line-icon-1.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-2::before {
  background-image: url("../img/line-icon-2.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-3::before {
  background-image: url("../img/line-icon-3.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-4::before {
  background-image: url("../img/line-icon-4.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-5::before {
  background-image: url("../img/line-icon-5.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-6::before {
  background-image: url("../img/line-icon-6.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-7::before {
  background-image: url("../img/line-icon-7.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-8::before {
  background-image: url("../img/line-icon-8.svg");
}
@media only screen and (max-width: 1199px) {
  .cd-primary-nav {
    /* by default .cd-primary-nav is hidden - trick for iOS devices where you can see the navigation if you pull down */
    visibility: hidden;
    -webkit-transition: visibility 0s 0.3s;
    -moz-transition: visibility 0s 0.3s;
    transition: visibility 0s 0.3s;
  }
  .cd-primary-nav.nav-is-visible {
    visibility: visible;
    -webkit-transition: visibility 0s 0s;
    -moz-transition: visibility 0s 0s;
    transition: visibility 0s 0s;
  }
}

@media only screen and (min-width: 1200px) {
  .cd-primary-nav {
    position: static;
    padding: 0 150px 0 0;
    height: auto;
    width: auto;
    float: right;
    overflow: visible;
    background: transparent;
  }
  .cd-primary-nav::after {
    clear: both;
    content: "";
    display: table;
  }
  .cd-primary-nav.moves-out > li > a {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .cd-primary-nav ul {
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    overflow: visible;
    z-index: 3;
  }
  .cd-primary-nav ul.is-hidden {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-primary-nav ul.moves-out > li > a {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .cd-primary-nav > li {
    float: left;
    margin-left: 3em;
  }
  .cd-primary-nav > li > a {
    /* main navigation buttons style */
    position: relative;
    display: inline-block;
    height: 80px;
    line-height: 80px;
    padding: 0 10px;
    color: #2e3233;
    overflow: visible;
    border-bottom: none;
    -webkit-transition: color 0.3s, box-shadow 0.3s;
    -moz-transition: color 0.3s, box-shadow 0.3s;
    transition: color 0.3s, box-shadow 0.3s;
  }
  .cd-primary-nav > li > a:hover {
    color: #69aa6f;
  }
  .cd-primary-nav > li > a.selected {
    color: #69aa6f;
    box-shadow: inset 0 -2px 0 #69aa6f;
  }
  .cd-primary-nav .go-back, .cd-primary-nav .see-all {
    display: none;
  }
  .cd-primary-nav .cd-secondary-nav, .cd-primary-nav .cd-nav-gallery, .cd-primary-nav .cd-nav-icons {
    /* dropdown menu style */
    position: absolute;
    top: 80px;
    width: 100vw;
    background: #ffffff;
    padding: 48px 64px 130px;
    box-shadow: inset 0 1px 0 #e2e3df, 0 3px 6px rgba(0, 0, 0, 0.05);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
  }
  .cd-primary-nav .cd-secondary-nav::after, .cd-primary-nav .cd-nav-gallery::after, .cd-primary-nav .cd-nav-icons::after {
    clear: both;
    content: "";
    display: table;
  }
  .cd-primary-nav .cd-secondary-nav.is-hidden, .cd-primary-nav .cd-nav-gallery.is-hidden, .cd-primary-nav .cd-nav-icons.is-hidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
  }
  .cd-primary-nav .cd-secondary-nav > .see-all, .cd-primary-nav .cd-nav-gallery > .see-all, .cd-primary-nav .cd-nav-icons > .see-all {
    /* this is the BIG See all button at the bottom of the dropdown menu */
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 80px;
    width: 100%;
    overflow: hidden;
    /* reset some inherited style */
    margin: 0;
    padding: 0;
  }
  .cd-primary-nav .cd-secondary-nav > .see-all a, .cd-primary-nav .cd-nav-gallery > .see-all a, .cd-primary-nav .cd-nav-icons > .see-all a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 80px;
    border-top: 1px solid #e2e3df;
    /* reset some inherited style */
    border-bottom: none;
    margin: 0;
    padding: 0;
    -webkit-transition: color 0.2s, background 0.2s, border 0.2s;
    -moz-transition: color 0.2s, background 0.2s, border 0.2s;
    transition: color 0.2s, background 0.2s, border 0.2s;
  }
  .cd-primary-nav .cd-secondary-nav > .see-all a:hover, .cd-primary-nav .cd-nav-gallery > .see-all a:hover, .cd-primary-nav .cd-nav-icons > .see-all a:hover {
    background: #2e3233;
    border-color: #2e3233;
    color: #ffffff;
  }
  .cd-primary-nav .cd-secondary-nav > li {
    /* change the height according to your needs - you can even set height: auto */
    height: 340px;
    /* here you set the number of columns - use width percentage */
    width: 23%;
    float: left;
    margin-right: 2.66%;
    border-right: 1px solid #e2e3df;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cd-primary-nav .cd-secondary-nav > li:nth-child(4n+2) {
    /* +2 because we have 2 list items with display:none */
    margin-right: 0;
    border-right: none;
  }
  .cd-primary-nav .cd-secondary-nav > li > a {
    /* secondary nav title */
    color: #69aa6f;
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: .6em;
  }
  .cd-primary-nav .cd-secondary-nav a {
    height: 30px;
    line-height: 30px;
    padding: 0 18% 0 0;
    color: #2e3233;
    border-bottom: none;
    font-size: 1.4rem;
  }
  .cd-primary-nav .cd-secondary-nav a:hover {
    color: #69aa6f;
  }
  .cd-primary-nav .cd-secondary-nav ul {
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  .cd-primary-nav .cd-secondary-nav ul ul {
    /* tertiary navigation */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .cd-primary-nav .cd-secondary-nav ul ul.is-hidden {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  .cd-primary-nav .cd-secondary-nav ul ul .go-back {
    display: block;
  }
  .cd-primary-nav .cd-secondary-nav ul ul .go-back a {
    color: transparent;
  }
  .cd-primary-nav .cd-secondary-nav ul ul .see-all {
    display: block;
  }
  .cd-primary-nav .cd-secondary-nav .moves-out > li > a {
    /* push the navigation items to the left - and lower down opacity - when tertiary nav slides in */
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .cd-primary-nav .cd-nav-gallery li {
    /* set here number of columns - use width percentage */
    width: 22%;
    float: left;
    margin: 0 4% 40px 0;
  }
  .cd-primary-nav .cd-nav-gallery li:nth-child(4n+2) {
    /* +2 because we have two additional list items with display:none */
    margin-right: 0;
  }
  .cd-primary-nav .cd-nav-gallery .cd-nav-item {
    border-bottom: none;
    padding: 0;
    height: auto;
    line-height: 1.2;
  }
  .cd-primary-nav .cd-nav-gallery .cd-nav-item img {
    position: static;
    margin-top: 0;
    height: auto;
    width: 100%;
    margin-bottom: .6em;
  }
  .cd-primary-nav .cd-nav-gallery .cd-nav-item h3 {
    color: #69aa6f;
    font-weight: bold;
    padding: 0 .4em;
  }
  .cd-primary-nav .cd-nav-icons li {
    /* set here number of columns - use width percentage */
    width: 32%;
    float: left;
    margin: 0 2% 20px 0;
  }
  .cd-primary-nav .cd-nav-icons li:nth-child(3n+2) {
    /* +2 because we have two additional list items with display:none */
    margin-right: 0;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item {
    border-bottom: none;
    height: 80px;
    line-height: 1.2;
    padding: 24px 0 0 85px;
    position: relative;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item:hover {
    background: #f6f6f5;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item h3 {
    color: #69aa6f;
    font-weight: bold;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item p {
    display: block;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item::before {
    left: 25px;
  }
}
.has-children > a, .go-back a {
  position: relative;
}
.has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
  /* arrow icon in CSS - for element with nested unordered lists */
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  display: inline-block;
  height: 2px;
  width: 10px;
  background: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.has-children > a::before, .go-back a::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.has-children > a::after, .go-back a::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 1200px) {
  .has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
    background: #c9cbc4;
  }
  .has-children > a:hover::before, .has-children > a:hover::after, .go-back a:hover::before, .go-back a:hover::after {
    background: #69aa6f;
  }
}

.has-children > a {
  padding-right: 40px;
}
.has-children > a::before, .has-children > a::after {
  /* arrow goes on the right side - children navigation */
  right: 20px;
  -webkit-transform-origin: 9px 50%;
  -moz-transform-origin: 9px 50%;
  -ms-transform-origin: 9px 50%;
  -o-transform-origin: 9px 50%;
  transform-origin: 9px 50%;
}

.cd-primary-nav .go-back a {
  padding-left: 40px;
}
.cd-primary-nav .go-back a::before, .cd-primary-nav .go-back a::after {
  /* arrow goes on the left side - go back button */
  left: 20px;
  -webkit-transform-origin: 1px 50%;
  -moz-transform-origin: 1px 50%;
  -ms-transform-origin: 1px 50%;
  -o-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}

@media only screen and (min-width: 1200px) {
  .has-children > a::before, .has-children > a::after {
    right: 15%;
  }

  .cd-primary-nav > .has-children > a {
    /* main navigation arrows on larger devices */
    padding-right: 30px !important;
  }
  .cd-primary-nav > .has-children > a::before, .cd-primary-nav > .has-children > a::after {
    width: 9px;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background: #c9cbc4;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: width 0.3s, -webkit-transform 0.3s;
    -moz-transition: width 0.3s, -moz-transform 0.3s;
    transition: width 0.3s, transform 0.3s;
  }
  .cd-primary-nav > .has-children > a::before {
    right: 12px;
  }
  .cd-primary-nav > .has-children > a::after {
    right: 7px;
  }
  .cd-primary-nav > .has-children > a.selected::before, .cd-primary-nav > .has-children > a.selected::after {
    width: 14px;
  }
  .cd-primary-nav > .has-children > a.selected::before {
    -webkit-transform: translateX(5px) rotate(-45deg);
    -moz-transform: translateX(5px) rotate(-45deg);
    -ms-transform: translateX(5px) rotate(-45deg);
    -o-transform: translateX(5px) rotate(-45deg);
    transform: translateX(5px) rotate(-45deg);
  }
  .cd-primary-nav > .has-children > a.selected::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .cd-secondary-nav > .has-children > a::before, .cd-secondary-nav > .has-children > a::after {
    /* remove arrows on secondary nav titles */
    display: none;
  }

  .cd-primary-nav .go-back a {
    padding-left: 20px;
  }
  .cd-primary-nav .go-back a::before, .cd-primary-nav .go-back a::after {
    left: 1px;
  }
}
.cd-search {
  position: absolute;
  height: 50px;
  width: 100%;
  top: 50px;
  left: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-search form {
  height: 100%;
  width: 100%;
}
.cd-search input {
  border-radius: 0;
  border: none;
  background: #ffffff;
  height: 100%;
  width: 100%;
  padding: 0 5%;
  box-shadow: inset 0 1px 0 #e2e3df, 0 3px 6px rgba(0, 0, 0, 0.05);
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-search input::-webkit-input-placeholder {
  color: #c9cbc4;
}
.cd-search input::-moz-placeholder {
  color: #c9cbc4;
}
.cd-search input:-moz-placeholder {
  color: #c9cbc4;
}
.cd-search input:-ms-input-placeholder {
  color: #c9cbc4;
}
.cd-search input:focus {
  outline: none;
}
.cd-search.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.nav-is-fixed .cd-search {
  position: fixed;
}
@media only screen and (min-width: 1200px) {
  .cd-search {
    height: 120px;
    top: 80px;
  }
  .cd-search input {
    padding: 0 2em;
    font-size: 3.2rem;
    font-weight: 300;
  }
}

.cd-overlay {
  /* shadow layer visible when navigation is active */
  position: fixed;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  background-color: rgba(105, 170, 111, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
}
.cd-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s;
}
@media only screen and (max-width: 1199px) {
  .cd-overlay.is-visible {
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    -o-transform: translateX(-260px);
    transform: translateX(-260px);
  }
  .nav-on-left .cd-overlay.is-visible {
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    -ms-transform: translateX(260px);
    -o-transform: translateX(260px);
    transform: translateX(260px);
  }
  .cd-overlay.is-visible.search-is-visible, .nav-on-left .cd-overlay.is-visible.search-is-visible {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

/* -------------------------------- 

support for no js 

-------------------------------- */
.no-js .cd-primary-nav {
  position: relative;
  height: auto;
  width: 100%;
  overflow: visible;
  visibility: visible;
  z-index: 2;
}

.no-js .cd-search {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 1200px) {
  .no-js .cd-primary-nav {
    position: absolute;
    z-index: 3;
    display: inline-block;
    width: auto;
    top: 0;
    right: 150px;
    padding: 0;
  }

  .no-js .nav-is-fixed .cd-primary-nav {
    position: fixed;
  }
}


.menu-m{ padding: 15px 20px; color: #fff; border-bottom: solid 1px rgba(255,255,255,0.1); }
.menu-m a{ padding: 0; }
.menu-m-sub { padding: 12px 0 0 30px; font-size: 14px; position: relative;}
.menu-m-sub i{ position: absolute; left: 15px; top: 17px; }
.red {
  color: #cd0000;
}
.link {
  color: #c10e15;
  font-weight: 500;
}
#fontmain {
  font-family: 'Kanit';
}
#fontlight {
  font-weight: 300;
}
#fontnormal {
  font-weight: 400;
}
#fontmedium {
  font-weight: 500;
}
#fontbold {
  font-weight: 600;
}
.colormain {
  color: #c10e15;
}
.colorsecond {
  color: #101010;
}
.colorspecial {
  color: #101010;
}
.fontbold {
  font-weight: 600;
}
#movement {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
#movement-01 {
  -webkit-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
}
#movement-02 {
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}
#movement-03 {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
#movement-04 {
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}
#movement-05 {
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
#movement-06 {
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}
#movement-07 {
  -webkit-transition: .7s ease-in-out;
  transition: .7s ease-in-out;
}
#movement-08 {
  -webkit-transition: .8s ease-in-out;
  transition: .8s ease-in-out;
}
#movement-09 {
  -webkit-transition: .9s ease-in-out;
  transition: .9s ease-in-out;
}
#movement-10 {
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
#movement-20 {
  -webkit-transition: 2s ease-in-out;
  transition: 2s ease-in-out;
}
#movement-30 {
  -webkit-transition: 3s ease-in-out;
  transition: 3s ease-in-out;
}
#movement-40 {
  -webkit-transition: 4s ease-in-out;
  transition: 4s ease-in-out;
}
#movement-50 {
  -webkit-transition: 5s ease-in-out;
  transition: 5s ease-in-out;
}
#fade {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#fade-01 {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
#fade-02 {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#fade-03 {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#fade-04 {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#fade-05 {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#fade-06 {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
#fade-07 {
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
#fade-08 {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
#fade-09 {
  -webkit-transition: all 0.9s ease;
  transition: all 0.9s ease;
}
#fade-10 {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
#fade-20 {
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}
#fade-30 {
  -webkit-transition: all 3s ease;
  transition: all 3s ease;
}
#con-center {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
}
#middle {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
#middle-left {
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1.5;
}
#middle-right {
  display: flex;
  align-items: center;
  justify-content: right;
  line-height: 1.5;
}
#rorate0 {
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
#rorate90 {
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#rorate45 {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#circle {
  -moz-border: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
#texthidden {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#texthidden-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#texthidden-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#texthidden-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#texthidden-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#texthidden-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#hidden {
  overflow: hidden;
}
#caplock {
  text-transform: uppercase;
}
#opacity-0 {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-1 {
  opacity: 0.1;
  filter: alpha(opacity=10);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-2 {
  opacity: 0.2;
  filter: alpha(opacity=20);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-3 {
  opacity: 0.3;
  filter: alpha(opacity=30);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-4 {
  opacity: 0.4;
  filter: alpha(opacity=40);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-5 {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-6 {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-7 {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-8 {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-9 {
  opacity: 0.9;
  filter: alpha(opacity=90);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#zoom {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
#zoom-in {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
#zoom-out {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
#zoom-5 {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
#zoom-5-in {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
#zoom-5-out {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
#img-fit {
  object-fit: cover;
  object-position: center;
}
#radius {
  -moz-border: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
#radius-2 {
  -moz-border: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
#radius-5 {
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
#radius-7 {
  -moz-border: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
}
#radius-10 {
  -moz-border: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}
#radius-12 {
  -moz-border: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}
#radius-13 {
  -moz-border: 13px;
  -webkit-border-radius: 13px;
  border-radius: 13px;
}
#radius-15 {
  -moz-border: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
}
#radius-17 {
  -moz-border: 17px;
  -webkit-border-radius: 17px;
  border-radius: 17px;
}
#radius-20 {
  -moz-border: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}
#radius-22 {
  -moz-border: 22px;
  -webkit-border-radius: 22px;
  border-radius: 22px;
}
#radius-25 {
  -moz-border: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
}
#radius-30 {
  -moz-border: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}
#radius-35 {
  -moz-border: 35px;
  -webkit-border-radius: 35px;
  border-radius: 35px;
}
#radius-40 {
  -moz-border: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
}
#radius-45 {
  -moz-border: 45px;
  -webkit-border-radius: 45px;
  border-radius: 45px;
}
#radius-50 {
  -moz-border: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
}
#radius-100 {
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
#radius-100 {
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.top {
  top: 0;
}
.bottom {
  bottom: 0;
}
.left {
  left: 0;
}
.right {
  right: 0;
}
a {
  color: #101010;
}
a:hover {
  color: #c10e15;
}
a {
  text-decoration: none;
  border: none;
}
a:link {
  text-decoration: none;
  border: none;
}
a:visited {
  text-decoration: none;
  border: none;
}
a:hover {
  text-decoration: none;
  border: none;
}
a:active {
  text-decoration: none;
  border: none;
}
body {
  background: #fff;
  color: #555;
  font-weight: 300;
  font-family: 'Kanit', 'Kanit';
  font-size: 16px;
  margin: 0px;
  padding: 0px;
  border: 0px;
  line-height: 1.5;
}
button,
input,
select,
textarea {
  padding: 0 5px;
  font-family: 'Kanit', 'Kanit';
  font-weight: 300;
}
button:focus,
select:focus,
textarea:focus,
input:focus {
  outline: 0;
}
p,
div {
  padding: 0px;
}
textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
  -webkit-appearance: none;
  border-radius: 0;
}
strong {
  font-weight: 600;
}
.back {
  margin: 50px 0 0 0;
  text-align: center;
  width: 100%;
}
.back a {
  color: #c10e15;
}
.back a:hover {
  color: #101010;
}
.back i {
  margin: 0 12px 0 0;
}
.backtop {
  background: #c10e15;
  width: 40px;
  height: 40px;
  padding-bottom: 5px;
  position: fixed;
  z-index: 4;
  bottom: 0;
  right: 0;
  margin: 0 15px 15px 0;
  color: #857239;
  border: 1px solid #857239;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.backtop:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.content-title {
  font-size: 30px;
  color: #555;
  font-weight: 600;
  margin: 0 0 15px 0;
}
.content-title-center {
  font-size: 30px;
  color: #555;
  font-weight: 600;
  margin: 0 0 30px 0;
  text-align: center;
}
.content-title-center span {
  border-bottom: solid 1px #c10e15;
  padding: 0 0 7px 0;
}
.content-title-other {
  font-size: 26px;
  color: #857239;
  font-weight: 600;
  border-top: solid 1px #ccc;
  margin: 50px 0 0 0;
  padding: 20px 0 0 0;
}
.content-inner {
  line-height: 1.8;
  margin: 15px 0 0 0;
}
.content-inner img {
  width: auto;
  max-width: 100%;
  height: auto !important;
}
.content-inner h1 {
  font-size: 24px;
  font-weight: 600;
  color: #555;
  margin: 0 0 15px 0;
  padding: 0;
  line-height: normal;
}
.content-inner h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: normal;
}
.content-inner-img {
  line-height: 0;
  margin: 0 0 30px 0;
}
.content-inner-img img {
  width: 100%;
  height: auto;
}
.content-inner-2 {
  padding: 15px;
  border: solid 1px #e7e7e7;
}
#bullet {
  width: 13px;
  height: 13px;
  margin: 0 5px;
  cursor: pointer;
  -moz-border: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.bulletset {
  margin: 20px 0 0 0;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
}
.bulletset .bullet-over {
  width: 13px;
  height: 13px;
  margin: 0 5px;
  cursor: pointer;
  -moz-border: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background: #c10e15;
}
.bulletset .bullet {
  width: 13px;
  height: 13px;
  margin: 0 5px;
  cursor: pointer;
  -moz-border: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: solid 2px #c10e15;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.bulletset .bullet:hover {
  width: 13px;
  height: 13px;
  margin: 0 5px;
  cursor: pointer;
  -moz-border: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background: #101010;
  border: solid 2px #101010;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pageroot {
  font-size: 14px;
  line-height: 1.5;
  color: #c10e15;
}
.pageroot a {
  color: #c10e15;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pageroot a:hover {
  color: #101010;
}
.pageroot i {
  padding: 0 7px;
}
#number {
  height: 30px;
  margin: 50px 5px 0 5px;
  font-size: 18px;
  float: left;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.number {
  color: #666;
  height: 30px;
  margin: 50px 5px 0 5px;
  font-size: 18px;
  float: left;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.number-over {
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: solid 1px #857239;
  height: 30px;
  margin: 50px 5px 0 5px;
  font-size: 18px;
  float: left;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.number:hover {
  height: 30px;
  margin: 50px 5px 0 5px;
  font-size: 18px;
  float: left;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  color: #857239;
  padding-bottom: 3px;
  border-bottom: solid 1px #857239;
}
.number-next {
  height: 30px;
  margin: 50px 5px 0 5px;
  font-size: 18px;
  float: left;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  color: #857239;
}
.filter-bottom {
  border-top: dotted 1px #ccc;
  padding: 15px 0;
  font-size: 14px;
  color: #555;
  margin: 30px 0 0 0;
  font-weight: 200;
}
.filter-view {
  font-weight: 400;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1.5;
}
#filter-list {
  width: 35px;
  height: 35px;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  margin: 0 0 0 5px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  cursor: pointer;
}
.filter-list-active {
  width: 35px;
  height: 35px;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  margin: 0 0 0 5px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  cursor: pointer;
  background: #c10e15;
  color: #fff;
}
.filter-list {
  width: 35px;
  height: 35px;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  margin: 0 0 0 5px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  cursor: pointer;
  background: #c10e15;
  color: #fff;
}
.filter-list:hover {
  background: #c10e15;
  color: #fff;
}
.filter-number-set {
  float: left;
}
.filter-number-1 {
  float: left;
  height: 35px;
  position: relative;
  padding: 0 60px 0 0;
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1.5;
  margin: 0 10px 0 10px;
}
.filter-number-1 input {
  width: 50px;
  height: 35px;
  border: solid 1px #ccc;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  font-size: 14px;
}
.filter-number-1 select {
  width: auto;
  height: 35px;
  border: solid 1px #ccc;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  font-size: 14px;
}
.filter-number-2 {
  float: left;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1.5;
  margin: 0 10px 0 0;
}
.filter-number-pre-next {
  width: 25px;
  height: 35px;
  background: #c10e15;
  color: #fff;
  border: solid 1px #c10e15;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  float: left;
  margin: 0 3px 0 0;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.filter-number-pre-next:hover {
  background: none;
  color: #c10e15;
}
.dropdown {
  color: #101010;
  font-family: 'Kanit', 'Kanit';
}
.dropdown span {
  font-family: 'Kanit', 'Kanit';
  font-size: 14px;
}
.dropdown ul.dropdown-menu li {
  font-size: 14px;
}
.dropdown ul.dropdown-menu li a {
  color: #555;
  font-family: 'Kanit', 'Kanit';
  padding: 5px 20px 5px 15px;
  font-weight: 300;
}
.dropdown ul.dropdown-menu li a i {
  font-size: 14px;
  padding-right: 10px;
}
.headmobile {
  background: #fff;
}
.colormain {
  color: #c10e15;
}
.bgmain {
  background: #c10e15;
}
.cd-nav-trigger span,
.cd-nav-trigger span::before,
.cd-nav-trigger span::after {
  background: #c10e15;
}
.cd-nav-trigger.nav-is-visible span::before,
.cd-nav-trigger.nav-is-visible span::after {
  background: #c10e15;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #c10e15;
  outline: none;
}
.btn-default {
  color: #c10e15;
}
.btn-default:focus,
.btn-default.focus {
  color: #c10e15;
}
.btn-default:hover {
  color: #c10e15;
}
.cd-primary-nav,
.cd-primary-nav ul {
  background: #c10e15;
  z-index: 99;
}
.cd-primary-nav a,
.cd-primary-nav ul a {
  color: #fff;
}
.cd-primary-nav a:hover {
  color: #fff;
}
.cd-primary-nav ul a:hover {
  color: #fff;
}
.cd-main-content {
  min-height: 60px;
}
.cd-main-header {
  height: 60px;
  background: #eaeaea;
}
.cd-logo {
  top: 5px;
  left: 15px;
}
.cd-logo img {
  display: block;
  height: 50px;
}
body {
  margin: 0;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: scrollbar;
}
#offcanvas-sidebar {
  width: 427px;
  height: 100vh;
  position: fixed;
  top: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 600ms ease;
  z-index: 99;
}
#page-wrap {
  transition: all 400ms ease;
}
#offcanvas-navicon {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 102;
  height: 70px;
  width: 70px;
  padding: 13px 15px 0px 15px;
  background: #c10e15;
  border-radius: 100px;
  transition: all 400ms ease;
  margin: 30px 20px 0 0;
}
#offcanvas-navicon:after,
#offcanvas-navicon:before,
#offcanvas-navicon span {
  display: block;
  content: '';
  height: 4px;
  margin: 8px 0px;
  border-radius: 2px;
  background: #fff;
  transition: all 400ms ease;
}
#offcanvas-navicon:hover {
  cursor: pointer;
}
.offcanvas-open #offcanvas-navicon:before {
  transform: translate3d(0,20px,0) rotate(135deg);
  margin: 0px 0 0 0;
}
.offcanvas-open #offcanvas-navicon:after {
  transform: translate3d(0,-4px,0) rotate(-135deg);
}
.offcanvas-open #offcanvas-navicon span {
  transform: scale(0);
}
.offcanvas-open #offcanvas-navicon {
  background: url(../images/template/menu-bg.png);
  background-size: 100%;
}
#offcanvas-sidebar {
  background: #c10e15;
  padding: 0 30px;
  border-radius: 50px 0 0 0;
  border-left: solid 10px #f8e153;
}
#offcanvas-sidebar {
  overflow-y: scroll;
  overflow-x: hidden;
}
#offcanvas-sidebar::-webkit-scrollbar {
  width: 5px;
}
#offcanvas-sidebar::-webkit-scrollbar-track {
  -webkit-border-radius: 10px;
  border-radius: 0px;
}
#offcanvas-sidebar::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #c10e15;
}
#offcanvas-sidebar::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0,0,0,0.2);
}
body #offcanvas-navicon {
  right: 8px;
}
body #offcanvas-sidebar {
  right: 0;
  z-index: 101;
  margin-right: -427px;
}
body.offcanvas-open #offcanvas-sidebar {
  margin-right: 0;
}
.menu-content {
  text-align: center;
  padding: 120px 0px 0 0px;
  position: relative;
}
.menu-content .menu-social {
  margin: 2vh 0 0 0;
  font-size: 30px;
}
.menu-content .menu-social a {
  color: #333;
  padding: 0 5px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.menu-content .menu-social a:hover {
  color: #c10e15 !important;
}
.menu-content ul.menu-fix {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-content ul.menu-fix li {
  font-size: 24px;
  padding: 12px 0;
  position: relative;
}
.menu-content ul.menu-fix li {
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.menu-content ul.menu-fix li i {
  position: absolute;
  right: 0;
  top: 19px;
  color: #857239;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-content ul.menu-fix li:hover {
  color: #fff;
  padding: 12px 12px 12px 12px;
}
.menu-content ul.menu-fix li:hover i {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.menu-content ul.menu-fix li.active {
  color: #fff;
  font-weight: 600;
  padding: 15px 15px 15px 0;
}
.menu-content ul.menu-fix li.active i {
  position: absolute;
  right: 0;
  top: 19px;
  color: #857239;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.menu-content ul.menu-fix li.menu-fix-sub {
  position: relative;
}
.menu-content ul.menu-fix li.menu-fix-sub .menu-fix-sub-content {
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #f8b2b8;
  width: 175px;
  z-index: 1;
  right: 0;
  padding: 0 15px;
  margin: 0 -1px 0 0;
}
.menu-content ul.menu-fix li.menu-fix-sub:hover .menu-fix-sub-content {
  height: 230px;
}
.menu-content ul.menu-fix li .menu-fix-sub-list {
  padding: 7px 15px 7px 0;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  color: #333;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-content ul.menu-fix li .menu-fix-sub-list i {
  position: absolute;
  right: 0;
  top: 12px;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-content ul.menu-fix li .menu-fix-sub-list:hover {
  color: #857239;
}
.menu-content ul.menu-fix li .menu-fix-sub-list:hover i {
  color: #857239;
}
.menu-content ul.menu-fix li .menu-fix-sub-list-active {
  padding: 7px 15px 7px 0;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  color: #857239;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-content ul.menu-fix li .menu-fix-sub-list-active i {
  position: absolute;
  right: 0;
  top: 12px;
  color: #857239;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-content-bottom-set {
  border-top: solid 1px rgba(0,0,0,0.2);
  margin: 30px 0 0 0;
  padding: 45px 0 0 0;
}
.menu-btn {
  padding: 0 15px;
  width: 165px;
  height: 40px;
  background: #101010;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menu-btn img {
  height: 25px;
}
.menu-icon {
  line-height: 0;
  margin: 30px 0 0 0;
}
.menu-icon img {
  height: 40px;
  margin: 0 5px;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.menu-icon img:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.menucondition-link {
  margin: 30px 0 0 0;
  text-align: center;
  font-size: 13px;
}
.menucondition-link a {
  color: #555;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menucondition-link a:hover {
  color: #101010;
}
.menucondition-link span {
  padding: 0 15px;
}
.menu-inslide {
  position: absolute;
  top: 0;
  right: 0;
  margin: 30px 0 0 0;
  padding: 15px 30px 0 0;
}
.dropdown-flag {
  position: relative;
  z-index: 5;
  float: left;
  padding: 0 20px;
  line-height: 0;
  border-right: solid 1px rgba(0,0,0,0.08);
  color: #555;
  margin: 10px 0 0 0;
  cursor: pointer;
  font-weight: 200;
}
.dropdown-flag img {
  width: 30px;
  height: 18px;
  border: solid 1px #666;
}
.dropdown-flag .dropdown-menu {
  padding: 5px 12px;
  width: 210px;
  margin: 25px 0 0 -90px;
  position: relative;
  border: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.dropdown-flag .dropdown-menu i {
  position: absolute;
  font-size: 40px;
  bottom: 100%;
  left: 50%;
  margin: 0 0 5px -12px;
  color: #fff;
  line-height: 0;
  text-shadow: -2px -2px 2px rgba(0,0,0,0.1);
}
.dropdown-flag .dropdown-menu .dropdown-menu-flag {
  text-transform: capitalize;
  padding: 5px 0 5px 40px;
  font-size: 14px;
  min-height: 35px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1.5;
  border-bottom: solid 1px #e7e7e7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #2f2f2f;
}
.dropdown-flag .dropdown-menu .dropdown-menu-flag:hover {
  color: #c10e15;
}
.dropdown-flag .dropdown-menu .dropdown-menu-flag img {
  position: absolute;
  left: 0;
  top: 8px;
  width: 30px;
  height: 18px;
  border: solid 1px #e7e7e7;
  object-fit: cover;
  object-position: center;
}
.dropdown-flag .dropdown-menu .dropdown-menu-flag i {
  position: absolute;
  left: 18px;
  top: 16px;
  font-size: 18px;
  color: #2f2f2f;
}
.dropdown-flag .dropdown-menu .dropdown-menu-flag-active {
  text-transform: capitalize;
  padding: 5px 0 5px 40px;
  font-size: 14px;
  min-height: 35px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1.5;
  border-bottom: solid 1px #e7e7e7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #c10e15;
}
.dropdown-flag .dropdown-menu .dropdown-menu-flag-active img {
  position: absolute;
  left: 0;
  top: 8px;
  width: 30px;
  height: 18px;
  border: solid 1px #e7e7e7;
  object-fit: cover;
  object-position: center;
}
.dropdown-flag .dropdown-menu .dropdown-menu-flag-active i {
  position: absolute;
  left: 18px;
  top: 16px;
  font-size: 18px;
  color: #c10e15;
}
.dropdown-lang {
  position: relative;
  z-index: 5;
  float: left;
  padding: 0 20px;
  line-height: 0;
  color: #555;
  margin: 10px 80px 0 0;
  cursor: pointer;
  font-weight: 200;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.dropdown-lang span {
  line-height: 1;
}
.dropdown-lang:hover {
  color: #fff;
}
.dropdown-lang .dropdown-menu {
  padding: 5px 12px;
  width: 200px;
  margin: 27px 0 0 0;
  position: relative;
  border: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.dropdown-lang .dropdown-menu i {
  position: absolute;
  font-size: 40px;
  bottom: 100%;
  right: 30px;
  margin: 0 0 5px -12px;
  color: #fff;
  line-height: 0;
  text-shadow: -2px -2px 2px rgba(0,0,0,0.1);
}
.dropdown-lang .dropdown-menu .dropdown-menu-lang {
  text-transform: capitalize;
  padding: 7px 0 7px 15px;
  font-size: 14px;
  min-height: 35px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1.5;
  border-bottom: solid 1px #e7e7e7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.dropdown-lang .dropdown-menu .dropdown-menu-lang:hover {
  color: #c10e15;
}
.dropdown-lang .dropdown-menu .dropdown-menu-lang i {
  position: absolute;
  left: 15px;
  top: 17px;
  color: #c10e15;
  font-size: 14px;
}
@media (max-width: 575px) {
  #offcanvas-sidebar {
    width: 100%;
  }
  .menu-content {
    padding: 70px 0px 0 0px;
  }
  .menu-content ul.menu-fix {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .menu-content ul.menu-fix li {
    font-size: 18px;
    padding: 7px 0;
    position: relative;
  }
  .menu-content ul.menu-fix li {
    color: #333;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .menu-content ul.menu-fix li i {
    position: absolute;
    right: 0;
    top: 19px;
    color: #857239;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .menu-content ul.menu-fix li:hover {
    color: #fff;
    padding: 7px 12px;
  }
  .menu-content ul.menu-fix li:hover i {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
  }
  .menu-content ul.menu-fix li.active {
    color: #fff;
    font-weight: 600;
    padding: 7px 12px;
  }
  .menu-content ul.menu-fix li.active i {
    position: absolute;
    right: 0;
    top: 19px;
    color: #857239;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, transform 0.5s;
  }
}
@media (max-width: 1199px) {
  .menu-inslide {
    margin: 10px 0px 0 0;
    padding: 0;
    z-index: 99999999999999;
  }
  #offcanvas-navicon {
    height: 50px;
    width: 50px;
    padding: 13px 12px 0px 12px;
    margin: 5px 7px 0 0;
  }
  #offcanvas-navicon:after,
  #offcanvas-navicon:before,
  #offcanvas-navicon span {
    height: 3px;
    margin: 4px 0px;
    border-radius: 20px;
  }
  .offcanvas-open #offcanvas-navicon:before {
    transform: translate3d(0,10px,0) rotate(135deg);
    margin: 0px 0 0 0;
  }
  .offcanvas-open #offcanvas-navicon:after {
    transform: translate3d(0,-4px,0) rotate(-135deg);
  }
}
header.pc {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 170px;
  background: #fff;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
header.pc .logo {
  text-align: center;
  padding: 10px 0;
  line-height: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
header.pc .logo img {
  height: 100px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
header.pc .menutop-contact-set {
  color: #ed1b24;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1.5;
}
header.pc .menutop-contact {
  padding: 0 0 0 20px;
  position: relative;
  margin: 0 20px 0 0;
  font-size: 13px;
}
header.pc .menutop-contact i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 12px;
}
header.pc .menutop-contact a {
  color: #c10e15;
}
header.pc .menutop-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  float: right;
  height: 100%;
}
header.pc .menutop-icon i {
  width: 45px;
  padding: 12px 0;
  color: #ed1b24;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
header.pc .menutop-icon i:hover {
  color: #101010;
}
header.pc .menutop-icon i.less-drop {
  width: 45px;
  padding: 12px 0;
  color: #ed1b24;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
header.pc .menutop-icon i.less-drop .menuless-dropdown {
  display: none;
}
header.pc .menutop-icon i.less-drop:hover {
  color: #101010;
}
header.pc .menutop-icon i.less-drop:hover .menuless-dropdown span.fa-caret-up {
  position: absolute;
  top: 0px;
  right: 0;
  color: #101010;
  z-index: 1;
  font-size: 30px;
  padding: 0px 72px 0 0;
  width: 100%;
  background: #ffffff;
  line-height: 0.3;
}
header.pc .menutop-icon i.less-drop:hover .menuless-dropdown {
  display: block;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 80px;
  overflow: hidden;
  width: 230px;
  border: solid 1px #fff;
  background: #000;
  font-family: 'Kanit';
  font-weight: 300;
  text-align: right;
  padding: 12px 0 0 0;
}
header.pc .menutop-icon i.less-drop:hover .menuless-dropdown .menuless-drop-sub {
  padding: 15px 40px 15px 15px;
  color: #fff;
  position: relative;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
}
header.pc .menutop-icon i.less-drop:hover .menuless-dropdown .menuless-drop-sub span.fas {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
header.pc .menutop-icon i.less-drop:hover .menuless-dropdown .menuless-drop-sub:hover {
  color: #fff;
  background: #c10e15;
}
header.pc .menutop-icon i.less-drop-2 {
  width: 45px;
  padding: 12px 0;
  color: #ed1b24;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
header.pc .menutop-icon i.less-drop-2 .menuless-dropdown {
  display: none;
}
header.pc .menutop-icon i.less-drop-2:hover {
  color: #101010;
}
header.pc .menutop-icon i.less-drop-2:hover .menuless-dropdown span.fa-caret-up {
  position: absolute;
  top: 0px;
  right: 0;
  color: #101010;
  z-index: 1;
  font-size: 30px;
  padding: 0px 72px 0 0;
  width: 100%;
  background: #ffffff;
  line-height: 0.3;
}
header.pc .menutop-icon i.less-drop-2:hover .menuless-dropdown {
  display: block;
  position: absolute;
  z-index: 1;
  right: 90px;
  top: 80px;
  overflow: hidden;
  width: 230px;
  border: solid 1px #fff;
  background: #000;
  font-family: 'Kanit';
  font-weight: 300;
  text-align: right;
  padding: 12px 0 0 0;
}
header.pc .menutop-icon i.less-drop-2:hover .menuless-dropdown .menuless-drop-sub {
  padding: 15px 15px 15px 50px;
  color: #fff;
  position: relative;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  text-align: left;
}
header.pc .menutop-icon i.less-drop-2:hover .menuless-dropdown .menuless-drop-sub span.fas {
  position: absolute;
  left: 15px;
  top: 15px;
  color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
header.pc .menutop-icon i.less-drop-2:hover .menuless-dropdown .menuless-drop-sub:hover {
  color: #fff;
  background: #c10e15;
}
.member-icon-drop {
  position: relative;
  padding: 7px 0 7px 30px;
  font-weight: 300;
}
header.pc .menutop-icon .menuflag {
  float: left;
  width: 45px;
  padding: 12px 0;
  color: #ed1b24;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
header.pc .menutop-icon .menuflag .menuless-dropdown {
  display: none;
}
header.pc .menutop-icon .menuflag:hover {
  color: #101010;
}
header.pc .menutop-icon .menuflag:hover .menuless-dropdown span.fa-caret-up {
  position: absolute;
  top: 0px;
  right: 0;
  color: #101010;
  z-index: 1;
  font-size: 30px;
  padding: 0px 25px 0 0;
  width: 100%;
  background: #ffffff;
  line-height: 0.3;
}
header.pc .menutop-icon .menuflag:hover .menuless-dropdown {
  display: block;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 80px;
  overflow: hidden;
  width: 90px;
  border: solid 1px #fff;
  background: #000;
  font-family: 'Kanit';
  font-weight: 300;
  text-align: right;
  padding: 12px 0 0 0;
}
header.pc .menutop-icon .menuflag:hover .menuless-dropdown .menuless-drop-sub {
  padding: 15px 40px 15px 15px;
  color: #fff;
  position: relative;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
}
header.pc .menutop-icon .menuflag:hover .menuless-dropdown .menuless-drop-sub span.fas {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
header.pc .menutop-icon .menuflag:hover .menuless-dropdown .menuless-drop-sub:hover {
  color: #fff;
  background: #c10e15;
}
header.pc nav.navmenu {
  background: #101010;
  color: #fff;
}
header.pc nav.navmenu ul.menufix {
  list-style: none;
  padding: 0;
  font-size: 16px;
}
header.pc nav.navmenu ul.menufix li {
  padding: 0;
  float: left;
  position: relative;
  color: #fff;
  padding: 0 30px;
  height: 50px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  cursor: pointer;
}
header.pc nav.navmenu ul.menufix a li {
  color: #fff;
}
header.pc nav.navmenu ul.menufix a li:hover {
  background: #c10e15;
}
header.pc nav.navmenu ul.menufix li.active {
  background: #c10e15;
  color: #fff;
}
header.pc nav.navmenu ul.menufix a li.active {
  background: #c10e15;
  color: #fff;
}
header.pc nav.navmenu ul.menufix li a {
  color: #fff;
}
header.pc nav.navmenu ul.menufix li .menufix-dropdown {
  display: none;
}
header.pc nav.navmenu ul.menufix li:hover {
  background: #c10e15;
}
header.pc nav.navmenu ul.menufix li:hover .menufix-dropdown {
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50px;
  overflow: hidden;
  background: #c10e15;
  width: 100%;
  min-width: 250px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
}
header.pc nav.navmenu ul.menufix li .menufix-dropdown .menufix-dropdown-sub {
  padding: 15px 15px 15px 40px;
  color: #fff;
  position: relative;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
}
header.pc nav.navmenu ul.menufix li .menufix-dropdown .menufix-dropdown-sub i {
  position: absolute;
  left: 20px;
  top: 15px;
  color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
header.pc nav.navmenu ul.menufix li .menufix-dropdown .menufix-dropdown-sub:hover {
  color: #fff;
  background: #000000;
}
header.pc nav.navmenu ul.menufix li.active .menufix-dropdown {
  display: none;
}
header.pc nav.navmenu ul.menufix li.active:hover {
  background: #c10e15;
}
header.pc nav.navmenu ul.menufix li.active:hover .menufix-dropdown {
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 50px;
  overflow: hidden;
  background: #c10e15;
  width: 100%;
  min-width: 250px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
}
header.pc nav.navmenu ul.menufix li.active .menufix-dropdown .menufix-dropdown-sub {
  padding: 15px 15px 15px 40px;
  color: #fff;
  position: relative;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
}
header.pc nav.navmenu ul.menufix li.active .menufix-dropdown .menufix-dropdown-sub i {
  position: absolute;
  left: 20px;
  top: 15px;
  color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
header.pc nav.navmenu ul.menufix li.active .menufix-dropdown .menufix-dropdown-sub:hover {
  color: #fff;
  background: #000000;
}
header.pc nav.navmenu ul.menufix li.product-active {
  float: right;
  background: #c10e15;
  color: #fff;
  font-weight: 500;
  width: 160px;
  padding: 0 15px;
}
header.pc nav.navmenu ul.menufix a li.product-active {
  background: #c10e15;
  color: #fff;
  font-weight: 500;
}
header.pc nav.navmenu ul.menufix li.product-active .menufix-dropdown {
  display: none;
}
header.pc nav.navmenu ul.menufix li.product-active:hover {
  background: #c10e15;
}
header.pc nav.navmenu ul.menufix li.product-active:hover .menufix-dropdown {
  display: block;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50px;
  overflow: hidden;
  background: #c10e15;
  width: 100%;
  min-width: 250px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
  margin: 0 0 0 -90px;
}
header.pc nav.navmenu ul.menufix li.product-active .menufix-dropdown .menufix-dropdown-sub {
  padding: 15px 15px 15px 40px;
  color: #fff;
  position: relative;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  font-weight: 300;
}
header.pc nav.navmenu ul.menufix li.product-active .menufix-dropdown .menufix-dropdown-sub i {
  position: absolute;
  left: 20px;
  top: 15px;
  color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
header.pc nav.navmenu ul.menufix li.product-active .menufix-dropdown .menufix-dropdown-sub:hover {
  color: #fff;
  background: #000000;
}
.dropdown-search {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.dropdown-search-icon {
  position: relative;
}
.dropdown-search .dropdown-menu span.fas {
  font-size: 30px;
  position: absolute;
  top: 0;
  left: 50%;
  color: #000;
  margin: -19px 0 0 -5px;
}
.dropdown-search .dropdown-menu {
  background: #000;
  border: solid 1px #fff;
  -moz-border: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  margin: 9px -120px 0 0;
  position: relative;
}
.dropdown-search-input {
  position: relative;
  padding: 15px;
  width: 280px;
}
.dropdown-search-input input {
  width: 100%;
  border: none;
  height: 40px;
  padding: 0 15px;
  font-size: 14px;
}
.dropdown-search-btn {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 18px;
}
header.pc i.fa-shopping-cart {
  text-align: center;
  position: relative;
}
header.pc i.fa-shopping-cart div.span {
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  font-family: 'Kanit';
  font-weight: 300;
  font-size: 8px;
  padding: 0 0 2px 1px;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background: #ed1b24;
}
header.cd-main-header i.fa-shopping-cart {
  text-align: center;
  position: relative;
}
header.cd-main-header i.fa-shopping-cart div.span {
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  font-family: 'Kanit';
  font-weight: 300;
  font-size: 8px;
  padding: 0 0 2px 1px;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background: #ed1b24;
}
header.pc.sticky {
  height: 100px;
}
header.pc.sticky .logo {
  padding: 5px 0;
}
header.pc.sticky .logo img {
  height: 60px;
}
header.pc.sticky  .menutop-icon i.less-drop:hover .menuless-dropdown {
  top: 55px;
}
header.pc.sticky .menutop-icon .menuflag:hover .menuless-dropdown {
  top: 55px;
}
header.pc.sticky  .menutop-icon i.less-drop-2:hover .menuless-dropdown {
  top: 55px;
}
div.menu-blank {
  height: 170px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sticky div.menu-blank {
  height: 110px;
}
header.cd-main-header .menutop-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  float: none;
  height: 60px;
  position: fixed;
  top: 0;
  right: 65px;
}
header.cd-main-header .menutop-icon i {
  width: 40px;
  padding: 12px 0;
  color: #ed1b24;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
header.cd-main-header .menutop-icon i:hover {
  color: #101010;
}
header.cd-main-header .menutop-icon i.less-drop {
  width: 40px;
  padding: 12px 0;
  color: #ed1b24;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
header.cd-main-header .menutop-icon i.less-drop .menuless-dropdown {
  display: none;
}
header.cd-main-header .menutop-icon i.less-drop:hover {
  color: #101010;
}
header.cd-main-header .menutop-icon i.less-drop:hover .menuless-dropdown span.fa-caret-up {
  position: absolute;
  top: 0px;
  right: 0;
  color: #101010;
  z-index: 1;
  font-size: 30px;
  padding: 0px 25px 0 0;
  width: 100%;
  background: #ffffff;
  line-height: 0.3;
}
header.cd-main-header .menutop-icon i.less-drop:hover .menuless-dropdown {
  display: block;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50px;
  overflow: hidden;
  width: 230px;
  border: solid 1px #fff;
  background: #000;
  font-family: 'Kanit';
  font-weight: 300;
  text-align: right;
  padding: 12px 0 0 0;
}
header.cd-main-header .menutop-icon i.less-drop:hover .menuless-dropdown .menuless-drop-sub {
  padding: 15px 40px 15px 15px;
  color: #fff;
  position: relative;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
}
header.cd-main-header .menutop-icon i.less-drop:hover .menuless-dropdown .menuless-drop-sub span.fas {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
header.cd-main-header .menutop-icon i.less-drop:hover .menuless-dropdown .menuless-drop-sub:hover {
  color: #fff;
  background: #c10e15;
}
header.cd-main-header .menutop-icon i.less-drop-2 {
  width: 40px;
  padding: 12px 0;
  color: #ed1b24;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
header.cd-main-header .menutop-icon i.less-drop-2 .menuless-dropdown {
  display: none;
}
header.cd-main-header .menutop-icon i.less-drop-2:hover {
  color: #101010;
}
header.cd-main-header .menutop-icon i.less-drop-2:hover .menuless-dropdown span.fa-caret-up {
  position: absolute;
  top: 0px;
  right: 0;
  color: #101010;
  z-index: 1;
  font-size: 30px;
  padding: 0px 90px 0 0;
  width: 100%;
  background: #eaeaea;
  line-height: 0.3;
}
header.cd-main-header .menutop-icon i.less-drop-2:hover .menuless-dropdown {
  display: block;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50px;
  overflow: hidden;
  width: 230px;
  background: #000;
  font-family: 'Kanit';
  font-weight: 300;
  text-align: right;
  padding: 12px 0 0 0;
}
header.cd-main-header .menutop-icon i.less-drop-2:hover .menuless-dropdown .menuless-drop-sub {
  padding: 15px 15px 15px 50px;
  color: #fff;
  position: relative;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  text-align: left;
}
header.cd-main-header .menutop-icon i.less-drop-2:hover .menuless-dropdown .menuless-drop-sub span.fas {
  position: absolute;
  left: 20px;
  top: 15px;
  color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
header.cd-main-header .menutop-icon i.less-drop-2:hover .menuless-dropdown .menuless-drop-sub:hover {
  color: #fff;
  background: #c10e15;
}
header.cd-main-header .menutop-icon .menuflag {
  float: left;
  width: 40px;
  padding: 12px 0;
  color: #ed1b24;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}
header.cd-main-header .menutop-icon .menuflag .menuless-dropdown {
  display: none;
}
header.cd-main-header .menutop-icon .menuflag:hover {
  color: #101010;
}
header.cd-main-header .menutop-icon .menuflag:hover .menuless-dropdown span.fa-caret-up {
  position: absolute;
  top: 0px;
  right: 0;
  color: #101010;
  z-index: 1;
  font-size: 30px;
  padding: 0px 8px 0 0;
  width: 100%;
  background: #eaeaea;
  line-height: 0.3;
}
header.cd-main-header .menutop-icon .menuflag:hover .menuless-dropdown {
  display: block;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50px;
  overflow: hidden;
  width: 90px;
  background: #000;
  font-family: 'Kanit';
  font-weight: 300;
  text-align: right;
  padding: 12px 0 0 0;
}
header.cd-main-header .menutop-icon .menuflag:hover .menuless-dropdown .menuless-drop-sub {
  padding: 15px 40px 15px 15px;
  color: #fff;
  position: relative;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
}
header.cd-main-header .menutop-icon .menuflag:hover .menuless-dropdown .menuless-drop-sub span.fas {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #fff;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
header.cd-main-header .menutop-icon .menuflag:hover .menuless-dropdown .menuless-drop-sub:hover {
  color: #fff;
  background: #c10e15;
}
footer {
  background: #101010;
  color: #fff;
}
footer .footer-link-social-section {
  background: #c10e15;
  padding: 20px 0;
}
footer .footer-link-social {
  padding: 0px 0 0px 85px;
  position: relative;
  line-height: 1.3;
}
footer .footer-link-social-icon {
  position: absolute;
  left: 15px;
  top: 0;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  color: #c10e15;
  background: #fff;
  border: solid 2px #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer-link-social-h {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
footer .footer-link-social-d {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
}
footer .footer-link-social-d a {
  color: #fff;
}
footer .footer-link-social:hover  .footer-link-social-icon {
  background: #c10e15;
  color: #fff;
}
div.footer-link-social-bd {
  border-right: solid 1px #fff;
}
div.footer-link-social-bd + div.footer-link-social-bd {
  border-right: solid 1px #fff;
}
div.footer-link-social-bd + div.footer-link-social-bd + div.footer-link-social-bd {
  border-right: solid 1px #fff;
}
div.footer-link-social-bd + div.footer-link-social-bd + div.footer-link-social-bd + div.footer-link-social-bd {
  border-right: none;
}
footer .footer-contact-company {
  font-size: 30px;
  font-weight: 500;
  margin: 30px 0 0 0;
}
footer .footer-contact-adeeress {
  font-size: 16px;
  margin: 12px 0 20px 0;
}
footer .footer-contact-contact {
  padding: 0 0 0 30px;
  position: relative;
  margin: 0 0 12px 0;
}
footer .footer-contact-contact i {
  position: absolute;
  left: 0;
  top: 5px;
  color: #c10e15;
}
footer .footer-contact-contact a {
  color: #fff;
}
footer ul.footerfix {
  margin: 50px 0 0 0;
  list-style: none;
  padding: 0;
}
footer ul.footerfix li {
  margin: 12px 0 0 0;
}
footer ul.footerfix li a {
  color: #fff;
}
footer ul.footerfix li a:hover {
  color: rgba(255,255,255,0.7);
}
footer .copy {
  padding: 12px 0;
  border-top: solid 1px rgba(255,255,255,0.3);
  color: #fff;
  text-align: center;
  margin: 30px 0 0 0;
}
footer .copy a {
  color: rgba(255,255,255,0.8);
}
.footer-chat-icon {
  margin: 7px 0 0 0;
  cursor: pointer;
}
section.home {
  padding: 0;
}
section.sectionfaq {
  padding: 20px 0;
}
section {
  padding: 35px 0;
}
.home-about-section {
  padding: 70px 0 100px 0;
  background: url(../images/template/home-bg-01.jpg) no-repeat center;
  background-size: cover;
}
.home-product-section {
  padding: 70px 40px;
  background: url(../images/template/home-bg-02.jpg) no-repeat center;
  background-size: cover;
}
.home-news-section {
  padding: 90px 0 70px 0;
}
.home-about-img-set {
  position: relative;
}
.home-about-img {
  position: relative;
  z-index: 2;
  line-height: 0;
  text-align: center;
}
.home-about-img-icon {
  position: absolute;
  z-index: 0;
  bottom: 0;
  margin: 0 0 -95px -85px;
}
.home-about-img-icon img {
  width: 130px;
}
.home-about-vdo {
  position: relative;
  margin: -160px 0 0 70px;
  z-index: 3;
  line-height: 0;
  border: solid 5px #fff;
  cursor: pointer;
}
.home-about-vdo iframe {
  width: 100%;
  height: 265px;
  position: relative;
  z-index: 3;
}
.home-about-vdo-icon {
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 0;
  margin: 0 -100px -30px 0;
}
.home-about-vdo-icon img {
  width: 130px;
}
.home-about-content {
  padding: 0px 0 190px;
  font-size: 18px;
  line-height: 1.8;
}
.home-about-content-center {
  padding: 0 15px 160px 15px;
  text-align: center;
}
.home-about-content-center-2 {
  padding: 0 15px;
  text-align: center;
}
.logo-qualitat-rorate {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -5.5% 0 0 -40px;
  padding: 5% 0 0 0;
  z-index: 3;
}
.logo-qualitat-rorate img {
  height: 80px;
}
.home-product-content-title {
  font-size: 36px;
  font-weight: 500;
  display: inline-block;
  padding-right: 15px;
}
.home-product-content-title span {
  color: #c10e15;
}
.home-product-content {
  font-size: 18px;
  padding: 0 15px 0 45px;
  line-height: 1.8;
  color: #555;
}
.home-product-topic {
  margin: 10px 0 20px 0;
  background: #eee;
  position: relative;
}
.home-product-topic .home-product-img {
  line-height: 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.home-product-topic .home-product-img img {
  width: 100%;
  height: 612px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-product-topic .home-product-detail {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top,rgba(67,0,3,0.9) 0%,#c10e15 90%);
  background: -webkit-linear-gradient(top,rgba(67,0,3,0.9) 0%,#c10e15 90%);
  background: linear-gradient(to bottom,rgba(67,0,3,0.9) 0%,#c10e15 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e6430003',endColorstr='#e6c10e15',GradientType=1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  color: #fff;
  padding: 30px;
}
.home-product-topic .home-product-detail-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.home-product-topic .home-product-detail-inner .home-product-detail-center {
  text-align: center;
}
.home-product-topic .home-product-detail-inner .home-product-detail-center h2 {
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
}
.home-product-topic .home-product-detail-inner .home-product-detail-center h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 200;
}
#home-product-bgover {
  background: -moz-linear-gradient(top,rgba(67,0,3,0.9) 0%,#c10e15 90%);
  background: -webkit-linear-gradient(top,rgba(67,0,3,0.9) 0%,#c10e15 90%);
  background: linear-gradient(to bottom,rgba(67,0,3,0.9) 0%,#c10e15 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e6430003',endColorstr='#e6c10e15',GradientType=1);
}
.home-product-topic:hover .home-product-detail {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.home-product-detail-original {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  text-align: center;
  background: #c10e15;
  color: #fff;
  padding: 5px 12px 0 12px;
  font-weight: 500;
}
.home-product-detail-original h2 {
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.home-product {
  margin: 10px 0 20px 0;
  background: #eee;
  position: relative;
}
.home-product .home-product-img {
  line-height: 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.home-product .home-product-img img {
  width: 100%;
  height: 267px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-product .home-product-detail {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top,rgba(67,0,3,0.9) 0%,#c10e15 90%);
  background: -webkit-linear-gradient(top,rgba(67,0,3,0.9) 0%,#c10e15 90%);
  background: linear-gradient(to bottom,rgba(67,0,3,0.9) 0%,#c10e15 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e6430003',endColorstr='#e6c10e15',GradientType=1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  color: #fff;
  padding: 30px;
}
.home-product .home-product-detail-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.home-product .home-product-detail-inner .home-product-detail-center {
  text-align: center;
}
.home-product .home-product-detail-inner .home-product-detail-center h2 {
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
}
.home-product .home-product-detail-inner .home-product-detail-center h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 200;
}
#home-product-bgover {
  background: -moz-linear-gradient(top,rgba(67,0,3,0.9) 0%,#c10e15 90%);
  background: -webkit-linear-gradient(top,rgba(67,0,3,0.9) 0%,#c10e15 90%);
  background: linear-gradient(to bottom,rgba(67,0,3,0.9) 0%,#c10e15 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e6430003',endColorstr='#e6c10e15',GradientType=1);
}
.home-product:hover .home-product-detail {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.home-product-content-contact {
  background: #c10e15;
  position: relative;
  margin: 80px 0 0 -55px;
  padding: 30px 30px 30px 100px;
  color: #fff;
  font-size: 18px;
}
.home-contact-title {
  font-size: 20px;
  font-style: italic;
  margin: 0 0 15px 0;
}
.home-contact {
  position: relative;
  padding: 0 0 0 150px;
  margin: 7px 0 0 0;
}
.home-contact-h {
  position: absolute;
  left: 0;
  top: 0;
}
.home-contact-h i {
  width: 35px;
}
.home-product-bestsale-title-set {
  padding: 0 90px 0 0;
}
.home-product-bestsale-set {
  position: relative;
  padding: 50px 0 0 0;
}
.home-product-bestsale {
  margin: 15px 0;
  border: solid 1px #e7e7e7;
  -moz-border: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.home-product-bestsale-img {
  line-height: 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.home-product-bestsale-img img {
  width: 100%;
  height: 267px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-product-bestsale-deatil {
  height: 60px;
}
.home-product-bestsale-deatil h2 {
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  padding: 0 15px;
  line-height: 1.5;
}
.home-product-bestsale-deatil h3 {
  font-weight: 300;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  padding: 0 15px;
}
.home-product-bestsale-price-set {
  padding: 0 60px 0 15px;
  height: 55px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1.5;
}
.home-product-bestsale-price-sale {
  font-weight: 600;
  font-size: 20px;
  color: #c10e15;
  line-height: 1.5;
}
.home-product-bestsale-price-normal {
  font-weight: 300;
  line-height: 1;
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}
.home-product-bestsale-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  margin: 5px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  background: #c10e15;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home-product-bestsale:hover .home-product-bestsale-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-product-bestsale-btn:hover {
  background: #101010;
}
.home-product-bestsale-arrow-left {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #555;
  margin: 0px 45px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background: #e7e7e7;
  cursor: pointer;
}
.home-product-bestsale-arrow-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #555;
  margin: 0px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background: #e7e7e7;
  cursor: pointer;
}
.home-product-bestsale-title {
  font-weight: 500;
  font-size: 36px;
  background: #fff;
  display: inline-block;
  padding-right: 15px;
}
.home-product-bestsale-title span {
  color: #c10e15;
}
.product-sold-out {
  position: absolute;
  left: 25%;
  top: 25%;
  z-index: 2;
  color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  width: 50%;
  height: 50%;
  font-size: 22px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -moz-border: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  letter-spacing: 0.7px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: rgba(0,0,0,0.7);
}
.home-customer-zone {
  padding: 15px 50px 50px 50px;
  position: relative;
}
.home-customer-zone img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-customer-zone img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-customer-title {
  font-weight: 500;
  font-size: 36px;
  padding-right: 15px;
  display: inline-block;
}
.home-customer-title span {
  color: #c10e15;
}
.home-customer-arrow-left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  height: 100%;
  font-size: 36px;
  cursor: pointer;
}
.home-customer-arrow-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  height: 100%;
  font-size: 36px;
  cursor: pointer;
}
.home-vdo-zone {
  position: relative;
}
.home-vdo {
  position: relative;
  z-index: 2;
  line-height: 0;
  margin: 0;
  padding: 0;
}
.home-vdo video {
  width: 100%;
  border: none;
}
.home-vdo-content-set {
  padding: 0 50% 0 0;
  position: relative;
}
.home-vdo-content-set-2 {
  margin: -12.5% 0 0 0;
  padding: 0 0 0 50%;
  position: relative;
}
#home-vdo-content {
  text-align: center;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
}
.home-vdo-content {
  padding: 5% 0px 0% 0px;
  font-size: 20px;
  right: 0;
  text-align: center;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}
.home-vdo-content-2 {
  padding: 17% 0px 0% 0px;
  font-size: 20px;
  left: 0;
  text-align: center;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}
.home-vdo-content-wm {
  padding: 0 0px 0% 0px;
  font-size: 250px;
  right: 0;
  text-align: center;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  color: #f5f5f5;
  font-weight: 600;
  line-height: 1;
}
.home-vdo-content-wm-2 {
  padding: 7% 0px 0% 0px;
  font-size: 250px;
  left: 0;
  text-align: center;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  color: #f5f5f5;
  font-weight: 600;
}
.home-vdo-content-h {
  font-size: 40px;
  margin: 0 0 7px 0;
  color: #c10e15;
  font-weight: 600;
}
.home-vdo-content-d {
  font-size: 16px;
  margin: 15px 0 0 0;
  font-weight: 300;
}
.home-news-zone {
  padding: 50px 20px 30px 20px;
  -moz-border: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  border: solid 1px #e3e3e3;
  position: relative;
}
.home-news-title {
  position: absolute;
  left: 0;
  top: 0;
  margin: -45px 0 0 20px;
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  background: #fff;
}
.home-news-title span {
  font-size: 48px;
  color: #c10e15;
}
.home-news-btn-more {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0 20px -20px 0;
  width: 140px;
  height: 40px;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  color: #fff;
  background: #c10e15;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home-news-btn-more:hover {
  background: #101010;
}
.home-news {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home-news-img {
  line-height: 0;
  overflow: hidden;
}
.home-news-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-news-detail {
  padding: 20px 0;
  height: 150px;
}
.home-news-detail h2 {
  font-size: 18px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.home-news-detail h3 {
  font-size: 14px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #666;
  line-height: 1.5;
  margin: 12px 0 0 0;
}
.home-news-detail .home-news-date {
  font-size: 14px;
  color: #7e7e7e;
  margin: 12px 0 0 0;
}
.home-news:hover .home-news-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-knowledge-zone {
  padding: 50px 0px 30px 0px;
  -moz-border: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  border: solid 1px #e3e3e3;
  position: relative;
}
.home-knowledge-title {
  position: absolute;
  left: 0;
  top: 0;
  margin: -45px 0 0 20px;
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  background: #fff;
}
.home-knowledge-title span {
  font-size: 48px;
  color: #c10e15;
}
.home-knowledge-btn-more {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0 20px -20px 0;
  width: 140px;
  height: 40px;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  color: #fff;
  background: #c10e15;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.home-knowledge-btn-more:hover {
  background: #101010;
}
.home-knowledge {
  padding: 15px 20px 15px 145px;
  min-height: 100px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home-knowledge-img {
  line-height: 0;
  width: 105px;
  position: absolute;
  left: 20px;
  top: 15px;
}
.home-knowledge-img img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  object-position: center;
}
.home-knowledge-detail h2 {
  font-size: 15px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}
.home-knowledge-detail h3 {
  font-size: 13px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #7e7e7e;
  line-height: 1.3;
}
.home-knowledge:hover {
  background: #e7e7e7;
}
.home-knowledge-arrow-left {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  margin: -70px 45px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background: #e7e7e7;
  cursor: pointer;
}
.home-knowledge-arrow-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  margin: -70px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background: #e7e7e7;
  cursor: pointer;
}
.home-title {
  position: relative;
  font-size: 80px;
  color: #f5f5f5;
  font-weight: 600;
  line-height: 0;
  margin: 15px 0 50px 0;
}
.home-title-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1.5;
  padding: 0 0 0 15px;
  font-weight: 500;
}
.home-title-inner span {
  font-size: 30px;
  color: #c10e15;
}
.title-other {
  margin: 50px 0 0 0;
  padding: 15px 0 0 0;
  border-top: solid 1px #ccc;
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  background: #fff;
}
.title-other span {
  font-size: 36px;
  color: #c10e15;
}
.news-topic {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 15px 0;
}
.news-topic-img {
  line-height: 0;
  overflow: hidden;
}
.news-topic-img img {
  width: 100%;
  height: 578px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.news-topic-detail {
  padding: 20px 0;
  height: 150px;
}
.news-topic-detail h2 {
  font-size: 20px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.news-topic-detail h3 {
  font-size: 14px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #666;
  line-height: 1.5;
  margin: 12px 0 0 0;
}
.news-topic-detail .news-topic-date {
  font-size: 14px;
  color: #7e7e7e;
  margin: 12px 0 0 0;
}
.news-topic:hover .news-topic-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.news-second {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 15px 0;
}
.news-second-img {
  line-height: 0;
  overflow: hidden;
}
.news-second-img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center;
  object-position: top;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.news-second-detail {
  padding: 15px 0;
  height: 75px;
}
.news-second-detail h2 {
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.news-second-detail h3 {
  font-size: 14px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #666;
  line-height: 1.5;
  margin: 12px 0 0 0;
  display: none;
}
.news-second-detail .news-second-date {
  font-size: 14px;
  color: #7e7e7e;
  margin: 12px 0 0 0;
}
.news-second:hover .news-second-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.news {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 15px 0;
}
.news-img {
  line-height: 0;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 278px;
  object-fit: cover;
  object-position: center;
  object-position: top;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.news-detail {
  padding: 20px 0;
  height: 150px;
}
.news-detail h2 {
  font-size: 18px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.news-detail h3 {
  font-size: 14px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #666;
  line-height: 1.5;
  margin: 12px 0 0 0;
}
.news-detail .news-date {
  font-size: 14px;
  color: #7e7e7e;
  margin: 12px 0 0 0;
}
.news:hover .news-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.promotion-topic {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 15px 0;
  background: #c10e15;
}
.promotion-topic-img {
  line-height: 0;
  overflow: hidden;
}
.promotion-topic-img img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.promotion-topic-detail {
  padding: 25px 15px;
  height: 140px;
  color: #fff;
}
.promotion-topic-detail h2 {
  font-size: 20px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.promotion-topic-detail h3 {
  font-size: 14px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #666;
  line-height: 1.5;
  margin: 12px 0 0 0;
}
.promotion-topic-detail .promotion-topic-date {
  font-size: 14px;
  color: #fff;
  margin: 12px 0 0 0;
}
.promotion-topic:hover .promotion-topic-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.promotion-second {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 15px 0;
  background: #c10e15;
}
.promotion-second-img {
  line-height: 0;
  overflow: hidden;
}
.promotion-second-img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center;
  object-position: top;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.promotion-second-detail {
  padding: 7px 15px;
  height: 70px;
  color: #fff;
}
.promotion-second-detail h2 {
  font-size: 18px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.promotion-second-detail h3 {
  font-size: 14px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #666;
  line-height: 1.5;
  margin: 12px 0 0 0;
}
.promotion-second-detail .promotion-second-date {
  font-size: 14px;
  color: #fff;
  margin: 0px 0 0 0;
}
.promotion-second:hover .promotion-second-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.promotion {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 15px 0;
  background: #c10e15;
}
.promotion-img {
  line-height: 0;
  overflow: hidden;
}
.promotion-img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center;
  object-position: top;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.promotion-detail {
  padding: 7px 15px;
  height: 70px;
  color: #fff;
}
.promotion-detail h2 {
  font-size: 18px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.promotion-detail h3 {
  font-size: 14px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #666;
  line-height: 1.5;
  margin: 12px 0 0 0;
}
.promotion-detail .promotion-date {
  font-size: 14px;
  color: #fff;
  margin: 0px 0 0 0;
}
.promotion:hover .promotion-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.promotion-btn-loadmore {
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  width: 200px;
  height: 50px;
  color: #c10e15;
  border: solid 2px #c10e15;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  margin: 30px 0 0 0;
  cursor: pointer;
}
.promotion-btn-loadmore:hover {
  color: #fff;
  background: #c10e15;
}
.promotion-content-bg {
  background: #fff;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 30px 100px;
  margin: 30px 0 0 0;
}
.promotion-content-bg-2 {
  background: #fff;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  padding: 30px 30px;
  margin: 30px 0 0 0;
}
.promotion-content-title {
  background: #e7e7e7;
  color: #c10e15;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 15px;
}
.promotion-content-detail {
  padding: 15px 0 30px 45px;
}
.promotion-btn-allpromotion {
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  width: 200px;
  height: 50px;
  color: #fff;
  background: #c10e15;
  border: solid 2px #c10e15;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  margin: 30px 0 0 0;
  cursor: pointer;
}
.promotion-btn-allpromotion:hover {
  color: #c10e15;
  background: none;
}
.knowledge {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 15px 0;
}
.knowledge-img {
  line-height: 0;
  overflow: hidden;
}
.knowledge-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  object-position: top;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.knowledge-detail {
  padding: 20px 0;
  height: 100px;
}
.knowledge-detail h2 {
  font-size: 18px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.knowledge-detail h3 {
  font-size: 14px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #666;
  line-height: 1.5;
  margin: 12px 0 0 0;
}
.knowledge-detail .knowledge-date {
  font-size: 14px;
  color: #7e7e7e;
  margin: 12px 0 0 0;
}
.knowledge:hover .knowledge-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.faq {
  padding: 30px 0 30px 100px;
  position: relative;
  border-top: dotted 1px #ccc;
}
.faq:first-child {
  border-top: none;
}
.faq-icon {
  font-size: 70px;
  color: #c10e15;
  position: absolute;
  left: 0;
  top: 20px;
}
.faq-q {
  font-size: 18px;
  font-weight: 500;
  color: #555;
}
.faq-a {
  color: #666;
  margin: 12px 0 0 0;
}
.contact-company {
  font-size: 30px;
  font-weight: 600;
  color: #101010;
}
.contact-address {
  font-size: 20px;
  margin: 15px 0 30px 0;
}
.contact-contact {
  position: relative;
  padding: 0 0 0 100px;
  margin: 7px 0 0 0;
}
.contact-contact a {
  color: #555;
}
.contact-contact .contact-contact-txt {
  position: absolute;
  left: 0;
  top: 0;
}
.contact-contact .contact-contact-txt i {
  color: #c10e15;
  margin: 0 12px 0 0;
  width: 15px;
  text-align: center;
}
.contact-map-btn-set {
  overflow: hidden;
  margin: 30px 0 0 5px;
  float: left;
  border-radius: 5px 5px 0 0;
}
#contact-map-btn {
  padding: 7px 15px;
  width: 150px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  float: left;
  text-align: center;
  cursor: pointer;
}
.contact-map-btn {
  padding: 7px 15px;
  width: 150px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  float: left;
  text-align: center;
  cursor: pointer;
  background: #e7e7e7;
  color: #666;
}
.contact-map-btn-active {
  padding: 7px 15px;
  width: 150px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  float: left;
  text-align: center;
  cursor: pointer;
  background: #c10e15;
  color: #fff;
}
.contact-map {
  line-height: 0;
  border: solid 1px #c10e15;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 250px;
}
.contact-map-btn:hover {
  color: #fff;
  background: #101010;
}
.contact-form-title {
  margin: 17px 0 0 0;
  font-size: 20px;
  font-weight: 500;
}
.contact-form {
  position: relative;
  padding: 0 0 0 120px;
  margin: 30px 0 0 0;
}
.contact-form input {
  width: 100%;
  padding: 0 15px;
  height: 45px;
  border: solid 1px #ddd;
  font-size: 18px;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.contact-form select {
  width: 100%;
  padding: 0 15px;
  height: 45px;
  border: solid 1px #ddd;
  font-size: 18px;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.contact-form i {
  font-size: 20px;
}
.contact-form textarea {
  width: 100%;
  padding: 15px 15px;
  height: 140px;
  border: solid 1px #ddd;
  font-size: 18px;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.contact-form-txt {
  position: absolute;
  top: 11px;
  left: 0;
  font-size: 18px;
}
.contact-form-btn {
  float: right;
  width: 120px;
}
.contact-form-btn input {
  width: 100%;
  height: 76px;
  border: none;
  background: #c10e15;
  color: #fff;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 18px;
}
.contact-form-btn input:hover {
  background: #101010;
  color: #fff;
}
.contact-form-captcha {
  float: left;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
}
.about-vdo {
  line-height: 0;
  margin: 15px 0;
}
.about-vdo iframe {
  width: 100%;
  height: 265px;
}
.about-content {
  line-height: 1.8;
  font-size: 18px;
}
.about-title {
  position: relative;
  font-size: 80px;
  color: #f5f5f5;
  font-weight: 600;
  margin: 15px 0 0 0;
}
.about-title-inner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 0 0 15px;
}
.about-title-inner span {
  font-size: 26px;
  color: #c10e15;
}
.about-title-2 {
  position: relative;
  font-size: 80px;
  color: #f5f5f5;
  font-weight: 600;
  margin: 15px 0 0 0;
  text-align: center;
}
.about-title-2-inner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.about-title-2-inner span {
  font-size: 26px;
  color: #c10e15;
}
.about-title-3 {
  position: relative;
  font-size: 80px;
  color: #f5f5f5;
  font-weight: 600;
  margin: 15px 0 0 0;
}
.about-title-3-inner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0 0 0 15px;
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1.5;
}
.about-title-3-inner span {
  font-size: 26px;
  color: #c10e15;
}
#about-category {
  width: 33.33%;
  float: left;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  color: #c10e15;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: solid 1px #ddd;
  border-bottom: none;
}
.about-category-active {
  width: 33.33%;
  float: left;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  color: #c10e15;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: solid 1px #ddd;
  border-bottom: none;
  background: #c10e15;
  color: #fff;
}
.about-category {
  width: 33.33%;
  float: left;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  color: #c10e15;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: solid 1px #ddd;
  border-bottom: none;
  background: #e7e7e7;
}
.about-category:hover {
  background: #c10e15;
  color: #fff;
}
.about-content-box {
  padding: 30px;
  border: solid 1px #e7e7e7;
  border-radius: 0 0 5px 5px;
  line-height: 1.8;
}
#about-service-tab {
  width: 25%;
  height: 130px;
  padding: 15px;
  float: left;
  text-align: center;
  font-size: 14px;
  border: solid 1px #ddd;
  border-bottom: none;
}
.about-service-tab-active {
  width: 25%;
  height: 130px;
  padding: 15px;
  float: left;
  text-align: center;
  font-size: 14px;
  border: solid 1px #ddd;
  border-bottom: none;
  background: #c10e15;
  color: #fff;
  border: solid 1px #c10e15;
}
.about-service-tab-active img {
  height: 60px;
  margin: 0 0 5px 0;
}
.about-service-tab {
  width: 25%;
  height: 130px;
  padding: 15px;
  float: left;
  text-align: center;
  font-size: 14px;
  border: solid 1px #ddd;
  border-bottom: none;
  background: #e7e7e7;
  color: #555;
}
.about-service-tab img {
  height: 60px;
  margin: 0 0 5px 0;
}
.about-service-tab:hover {
  background: #ddd;
}
.about-service-icon {
  text-align: center;
  margin: 15px 0;
}
.about-service-icon img {
  height: 80px;
}
.page-title {
  position: relative;
  font-size: 70px;
  color: #f5f5f5;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}
.page-title-inner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  font-size: 36px;
  color: #101010;
}
.page-title-inner span {
  color: #c10e15;
}
.page-title-2 {
  position: relative;
  font-size: 80px;
  color: #f5f5f5;
  font-weight: 600;
  line-height: 1;
}
.page-title-2-inner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1.5;
  font-size: 40px;
  color: #101010;
}
.page-title-2-inner span {
  color: #c10e15;
}
.cartshow-content-box {
  padding: 0px 0px;
  border: solid 1px #e7e7e7;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin: 15px -15px 0 -15px;
}
.cartshow-content-box-border {
  border-left: solid 1px #e7e7e7;
  border-right: solid 1px #e7e7e7;
}
.cartshow-content-box-inner {
  padding: 15px 15px 30px 15px;
}
.cartshow-title {
  font-size: 20px;
  color: #c10e15;
  font-weight: 500;
}
.cartshow-txt {
  font-weight: 400;
  color: #101010;
  margin: 0 0 2px 0;
}
.cartshow-txt span {
  color: #c10e15;
  padding: 0 0 0 5px;
}
.cartshow-input {
  margin: 15px 0 0 0;
}
#cartshow-input {
  width: 100%;
  height: 30px;
  border: solid 1px #101010;
  -moz-border: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  font-size: 14px;
  padding: 0 12px;
  color: #555;
}
.cartshow-input input {
  width: 100%;
  height: 30px;
  border: solid 1px #101010;
  -moz-border: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  font-size: 14px;
  padding: 0 12px;
  color: #555;
}
.cartshow-input select {
  width: 100%;
  height: 30px;
  border: solid 1px #101010;
  -moz-border: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  font-size: 14px;
  padding: 0 12px;
  color: #555;
  max-height: 220px;
}
.cartshow-input select option {
  color: #101010;
  padding: 7px 12px;
}
.cartshow-input textarea {
  width: 100%;
  height: 30px;
  border: solid 1px #101010;
  -moz-border: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  font-size: 14px;
  padding: 0 12px;
  color: #555;
  height: 60px;
  padding: 12px;
}
.cartshow-radio {
  margin: 15px 0 0 0;
}
.cartshow-radio label {
  position: relative;
  padding: 0 0 0 30px;
  color: #101010;
}
.cartshow-radio label input[type=radio] {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0px;
  top: 3px;
}
.cartshow-rdo {
  position: relative;
  padding: 0 0 0 30px;
  float: left;
}
.cartshow-rdo label {
  color: #101010;
  font-size: 14px;
}
.cartshow-rdo input[type=radio] {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0px;
  top: 3px;
}
.cartshow-check {
  margin: 30px 0 0 0;
  padding: 20px 0 0 0;
  border-top: solid 2px #e7e7e7;
}
.cartshow-check label {
  position: relative;
  padding: 0 0 0 30px;
  font-size: 11px;
  color: #101010;
}
.cartshow-check label input[type=checkbox] {
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0px;
  top: 3px;
}
.labelcheck {
  display: block;
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 20px;
}
.labelcheck input[type=checkbox] {
  visibility: hidden;
}
.aftercheck {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  -moz-border: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #fff;
  border: solid 1px #ccc;
}
.labelcheck input:checked ~ .aftercheck {
  background-color: #c10e15;
}
.aftercheck:after {
  content: "";
  position: absolute;
  display: none;
}
.labelcheck input:checked ~ .aftercheck:after {
  display: block;
}
.labelcheck .aftercheck:after {
  left: 5px;
  bottom: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cartshow-bank {
  padding: 0 0 0 75px;
  position: relative;
  margin: 7px 0 0 0;
  font-size: 14px;
}
.cartshow-bank img {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 30px;
  top: 0;
}
.cartshow-bank-h {
  font-weight: 600;
  font-size: 16px;
}
.cartshow-cart-topic {
  padding: 0 0 7px 0;
  border-bottom: solid 2px #e7e7e7;
  font-weight: 600;
  font-size: 14px;
  margin: 15px 0 0 0;
}
.cartshow-cart-product-set {
  padding: 12px 0;
  border-bottom: dotted 1px #e7e7e7;
  font-size: 14px;
  min-height: 74px;
}
.cartshow-cart-product {
  position: relative;
  padding: 0 0 0 0px;
}
.cartshow-cart-product-img {
  line-height: 0;
  text-align: center;
  border: solid 1px #e7e7e7;
}
.cartshow-cart-product-img img {
  width: 50px;
}
.cartshow-cart-product-detail {
  color: #555;
}
.cartshow-cart-product-detail h2 {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1;
  margin: 0;
  line-height: 1.5;
}
.cartshow-cart-product-detail h3 {
  font-size: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1;
  margin: 5px 0 0 0;
  line-height: 1.5;
  color: #999;
}
#cartshow-cart-number {
  width: 100%;
  height: 30px;
  border: none;
  font-size: 14px;
  padding: 0 0 0 7px;
  text-align: center;
  color: #555;
}
.cartshow-cart-number input {
  width: 100%;
  height: 30px;
  border: none;
  font-size: 14px;
  padding: 0 0 0 7px;
  text-align: center;
  color: #555;
}
.cartshow-cart-price {
  padding: 6px 0 30px 0;
  font-size: 14px;
  position: relative;
  height: 100%;
}
.cartshow-cart-price i {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 13px;
}
.cartshow-input-code {
  margin: 15px 0 0 0;
  padding: 0 100px 0 0;
  position: relative;
}
.cartshow-input-code input {
  width: 100%;
  height: 30px;
  border: solid 1px #101010;
  -moz-border: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  font-size: 14px;
  padding: 0 12px;
  color: #555;
}
.cartshow-input-code-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 90px;
}
.cartshow-input-code-btn input {
  width: 100%;
  height: 30px;
  border: solid 1px #101010;
  -moz-border: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  font-size: 14px;
  padding: 0 12px;
  color: #555;
  background: #c10e15;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.cartshow-input-code-btn input:hover {
  background: #101010;
}
.cartshow-price {
  font-weight: 500;
  margin: 7px 0 0 0;
  color: #101010;
}
.cartshow-price-delivery {
  font-weight: 500;
  margin: 7px 0 0 0;
}
.cartshow-price-promotion {
  color: #999;
  margin: 7px 0 0 0;
}
.cartshow-price-total-all {
  border-top: dotted 1px #e7e7e7;
  margin: 12px 0 0 0;
  padding: 12px 0 0 0;
}
.cartshow-price-total {
  font-weight: 600;
  color: #c10e15;
  font-size: 18px;
}
.cartshow-btn-confirm {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
}
.cartshow-btn-confirm input {
  width: 100%;
  height: 40px;
  background: #c10e15;
  color: #fff;
  font-size: 18px;
  border: none;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin: 30px 0 0 0;
}
.cartshow-shoping-continue {
  margin: 15px 0 0 0;
}
.cartshow-shoping-continue a {
  color: #c10e15;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cartshow-shoping-continue i {
  margin: 0 7px 0 0;
}
.cartshow-shoping-continue a:hover {
  color: #101010;
}
.product-banner-category {
  margin: 50px 0 0 0;
  text-align: center;
}
.product-banner-category img {
  width: 100% !important;
  max-width: inherit !important;
}
.produc-left-zone {
  float: left;
  width: 22%;
  margin: 30px 0 0 0;
}
.produc-right-zone {
  float: left;
  width: 78%;
  margin: 30px 0 0 0;
}
.product-category-shopnow {
  text-align: center;
}
.product-category-shopnow img {
  height: 342px;
  object-fit: cover;
  object-position: center;
}
.product {
  border: solid 1px #e7e7e7;
  overflow: hidden;
}
.product-img {
  line-height: 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.product-deatil {
  height: 60px;
}
.product-deatil h2 {
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  padding: 0 15px;
  line-height: 1.5;
}
.product-deatil h3 {
  font-weight: 300;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  padding: 0 15px;
}
.product-price-set {
  padding: 0 60px 0 15px;
  height: 55px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1.5;
}
.product-price-sale {
  font-weight: 600;
  font-size: 20px;
  color: #c10e15;
  line-height: 1.5;
}
.product-price-normal {
  font-weight: 300;
  line-height: 1;
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}
.product-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  margin: 5px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  background: #c10e15;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product:hover .product-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.product-btn:hover {
  background: #101010;
}
.product-arrow-left {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #555;
  margin: 0px 45px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background: #e7e7e7;
  cursor: pointer;
}
.product-arrow-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #555;
  margin: 0px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background: #e7e7e7;
  cursor: pointer;
}
.product-list {
  margin: 15px 0;
  border: solid 1px #e7e7e7;
  overflow: hidden;
  position: relative;
}
.product-list-img {
  line-height: 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.product-list-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.product-list-deatil {
  height: 60px;
}
.product-list-deatil h2 {
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  padding: 0 15px;
  line-height: 1.5;
}
.product-list-deatil h3 {
  font-weight: 300;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  padding: 0 15px;
}
.product-list-price-set {
  padding: 0 60px 0 15px;
  height: 55px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1.5;
}
.product-list-price-sale {
  font-weight: 600;
  font-size: 20px;
  color: #c10e15;
  line-height: 1.5;
}
.product-list-price-normal {
  font-weight: 300;
  line-height: 1;
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}
.product-list-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  margin: 5px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  background: #c10e15;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-list:hover .product-list-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.product-list-btn:hover {
  background: #101010;
}
.product-list-arrow-left {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #555;
  margin: 0px 45px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background: #e7e7e7;
  cursor: pointer;
}
.product-list-arrow-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #555;
  margin: 0px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background: #e7e7e7;
  cursor: pointer;
}
.productdetail-img {
  line-height: 0;
  border: solid 1px #e7e7e7;
  margin: 30px 0 0 0;
  text-align: center;
  position: relative;
}
.productdetail-name {
  border-bottom: solid 1px #e7e7e7;
  margin: 30px 0 0 0;
}
.productdetail-name h1 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.8;
}
.productdetail-topic {
  margin: 30px 0 30px 0;
}
.productdetail-class {
  margin: 5px 0 0 0;
}
.productdetail-class span {
  color: #c10e15;
}
.productdetail-class img {
  height: 30px;
}
.productdetail-detail-set {
  margin: 50px 0 0 0;
  line-height: 1.8;
}
.productdetail-detail {
  margin: 0 0 15px 0;
  font-size: 24px;
  font-weight: 600;
  padding: 0 0 12px 0;
  border-bottom: solid 2px #e7e7e7;
}
.productdetail-zone {
  margin: 15px 0 0 0;
  padding: 0 30px;
  position: relative;
}
#product-mini-loop-arrow {
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  cursor: pointer;
}
.product-mini-loop-arrow-left {
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  cursor: pointer;
  left: 0;
}
.product-mini-loop-arrow-right {
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  cursor: pointer;
  right: 0;
}
.productdetail-set {
  padding: 0 0 0 50px;
}
.productdetailimg-active {
  border: solid 1px #c10e15;
}
.productdetailimg {
  border: solid 1px #e7e7e7;
  text-align: center;
}
.productdetailimg img {
  height: auto;
  object-fit: cover;
  object-position: center;
}
.productdetailimg-active img {
  height: auto;
  object-fit: cover;
  object-position: center;
}
.productdetail-addtocart-input {
  position: relative;
  padding: 0 50px;
  width: 100%;
  margin: 30px 0 0 0;
}
.productdetail-addtocart-input input {
  width: 100%;
  height: 45px;
  border: solid 1px #e7e7e7;
  font-size: 16px;
  text-align: center;
}
#productdetail-addtocart {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  border: solid 1px #e7e7e7;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.productdetail-addtocart-add {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  border: solid 1px #e7e7e7;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  right: 0;
}
.productdetail-addtocart-del {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  border: solid 1px #e7e7e7;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  left: 0;
}
.productdetail-addtocart-add:hover {
  border: solid 1px #c10e15;
}
.productdetail-addtocart-del:hover {
  border: solid 1px #c10e15;
}
.productdetail-addtocart-btn {
  margin: 15px 0 0 0;
  width: 100%;
}
.productdetail-addtocart-btn input {
  width: 100%;
  height: 45px;
  padding: 0 0 0 7px;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #c10e15;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.productdetail-addtocart-btn input:hover {
  background: #101010;
}
.productdetail-price-set {
  margin: 30px 0 0 0;
}
.productdetail-price-sale {
  font-weight: 500;
  font-size: 22px;
  color: #c10e15;
  line-height: 1.8;
}
.productdetail-price-sale span {
  font-weight: 600;
  font-size: 36px;
}
.productdetail-price-normal {
  font-weight: 300;
  line-height: 1;
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
}
.productdetail-bottom {
  margin: 30px 0 0 0;
  border-top: solid 1px #e7e7e7;
  padding: 15px 0 0 0;
}
.productdetail-fav {
  float: left;
}
.productdetail-fav i {
  font-size: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #666;
  cursor: pointer;
}
.productdetail-fav i:hover {
  color: #c10e15;
}
.productdetail-fav-active {
  float: left;
}
.productdetail-fav-active i {
  font-size: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #e7e7e7;
  cursor: pointer;
  color: #c10e15;
}
.productdetail-download {
  padding: 7px 12px;
  margin: 3px 5px 0 0;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 14px;
  color: #c10e15;
  border: solid 1px #c10e15;
  width: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}
.productdetail-download i {
  padding: 0 0 0 12px;
}
.productdetail-download:hover {
  border: solid 1px #101010;
  color: #101010;
}
.productdetail-fav-2 {
  padding: 7px 12px;
  margin: 3px 0 0 0px;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 14px;
  color: #999;
  border: solid 1px #ddd;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}
.productdetail-fav-2 i {
  padding: 0 0 0 12px;
  font-size: 14px;
}
.productdetail-fav-2:hover {
  border: solid 1px #c10e15;
  color: #c10e15;
  background: #ffeded;
}
.productdetail-fav-2-active {
  padding: 7px 12px;
  margin: 3px 0 0 0px;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 14px;
  background: #ffeded;
  color: #c10e15;
  border: solid 1px #c10e15;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}
.productdetail-fav-2-active i {
  padding: 0 0 0 12px;
  font-size: 14px;
}
.share-product {
  float: right;
}
.product-left-title {
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background: #c10e15;
  color: #fff;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  margin: 15px 0 0 0;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-left-title:hover {
  background: #101010;
}
.product-left {
  position: relative;
  padding: 12px 0 12px 30px;
  color: #555;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: dotted 1px #e7e7e7;
}
.product-left i {
  position: absolute;
  left: 12px;
  top: 15px;
  color: #c10e15;
}
.product-left-active {
  position: relative;
  padding: 12px 0 12px 30px;
  color: #c10e15;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: dotted 1px #e7e7e7;
}
.product-left-active i {
  position: absolute;
  left: 12px;
  top: 15px;
  color: #c10e15;
}
.product-left:hover {
  color: #c10e15;
}
.cartshow_member-set {
  border-top: solid 2px #e7e7e7;
  margin: 60px 0 0 0;
  padding: 30px 0 0px 0;
}
.member-box {
  border: solid 1px #e7e7e7;
  -moz-border: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 30px 0 0 0;
  padding: 30px 60px 80px 60px;
  position: relative;
}
.member-box-fb {
  border: solid 1px #e7e7e7;
  -moz-border: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 30px 0 0 0;
  padding: 30px 30px 80px 30px;
  position: relative;
}
.member-box-txt {
  background: #e7e7e7;
  padding: 40px 30px;
  -moz-border: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 30px 0 0 0;
  min-height: 280px;
  text-align: center;
}
.member-login-btn-set {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.member-login-btn {
  width: 230px;
  margin: 0 0 -20px 0;
}
.member-login-btn input {
  width: 100%;
  height: 45px;
  background: #c10e15;
  color: #fff;
  font-size: 16px;
  border: none;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.member-login-btn input:hover {
  background: #101010;
}
.member-forgot-txt {
  font-size: 14px;
  text-align: right;
  margin: 15px 0 0 0;
}
.member-forgot-txt i {
  padding: 0 7px;
}
.member-forgot-txt a {
  color: #c10e15;
}
.member-forgot-txt a:hover {
  color: #101010;
}
.member-password-txt {
  font-size: 16px;
  color: #666;
  margin: 7px 0 0 0;
  text-align: center;
}
.member-captcha {
  margin: 15px 0 0 0;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
}
.member-fb-btn-set {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.member-fb-btn {
  width: 230px;
  margin: 0 0 -20px 0;
  height: 45px;
  background: #3e5a9b;
  color: #fff;
  font-size: 16px;
  border: none;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.member-fb-btn:hover {
  background: #101010;
}
.member-check {
  margin: 15px 0;
}
.member-check label {
  position: relative;
  padding: 0 0 0 30px;
  font-size: 14px;
  color: #101010;
}
.member-check label input[type=checkbox] {
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0px;
  top: 3px;
}
.memberlabelcheck {
  display: block;
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 20px;
}
.memberlabelcheck input[type=checkbox] {
  visibility: hidden;
}
.memberaftercheck {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  -moz-border: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #fff;
  border: solid 1px #ccc;
}
.memberlabelcheck input:checked ~ .memberaftercheck {
  background-color: #c10e15;
}
.memberaftercheck:after {
  content: "";
  position: absolute;
  display: none;
}
.memberlabelcheck input:checked ~ .memberaftercheck:after {
  display: block;
}
.memberlabelcheck .memberaftercheck:after {
  left: 7px;
  bottom: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.member-input {
  margin: 15px 0 0 0;
}
#member-input {
  width: 100%;
  height: 30px;
  border: solid 1px #101010;
  -moz-border: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  font-size: 14px;
  padding: 0 12px;
  color: #555;
}
.member-input input {
  width: 100%;
  height: 30px;
  border: solid 1px #101010;
  -moz-border: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  font-size: 14px;
  padding: 0 12px;
  color: #555;
}
.member-txt {
  font-weight: 400;
  color: #fff;
  margin: 0 0 2px 0;
  font-size: 14px;
  text-align: left;
}
.member-txt span {
  color: #c10e15;
  padding: 0 0 0 5px;
}
.memberleft-box {
  padding: 0 50px 0 0;
  min-height: 350px;
}
.memberleft-title {
  font-size: 24px;
  font-weight: 600;
  color: #c10e15;
}
#member-menuleft {
  padding: 15px 0 15px 30px;
  border-top: dotted 1px #e7e7e7;
  position: relative;
}
.member-menuleft {
  padding: 15px 0 15px 30px;
  border-top: dotted 1px #e7e7e7;
  position: relative;
}
.member-menuleft i {
  position: absolute;
  left: 0;
  top: 18px;
}
.member-menuleft-active {
  padding: 15px 0 15px 30px;
  border-top: dotted 1px #e7e7e7;
  position: relative;
  color: #c10e15;
  font-weight: 600;
}
.member-menuleft-active i {
  position: absolute;
  left: 0;
  top: 18px;
}
.member-profile-txt {
  position: relative;
  padding: 0 0 0 15px;
  color: #999;
  padding-bottom: 5px;
  font-size: 14px;
  margin: 7px 0 0 0;
}
.member-profile-txt i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #c10e15;
}
.member-changpassword-txt {
  margin: 30px 0 0 0;
  padding: 15px 0 0 0;
  border-top: solid 2px #e7e7e7;
}
.member-changpassword-txt a {
  color: #999;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.member-changpassword-txt a:hover {
  color: #c10e15;
}
.member-address-edit-txt {
  color: #999;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  float: right;
}
.member-address-edit-txt:hover {
  color: #c10e15;
}
.member-address-tab-set {
  margin: 15px 0 0 0;
}
#member-address-tab {
  padding: 12px 30px;
  font-size: 14px;
  float: left;
  border-bottom: none;
}
.member-address-tab-active {
  border: solid 1px #c10e15;
  background: #c10e15;
  color: #fff;
  padding: 12px 30px;
  font-size: 14px;
  float: left;
  border-bottom: none;
}
.member-address-tab {
  border: solid 1px #e7e7e7;
  padding: 12px 30px;
  font-size: 14px;
  float: left;
  border-bottom: none;
}
.member-address-box {
  border: solid 1px #e7e7e7;
  padding: 30px 30px 0 30px;
  font-size: 14px;
}
.member-address-title {
  font-weight: 500;
  color: #101010;
  padding: 0 0 7px 0;
}
.member-address-border {
  border-right: solid 1px #e7e7e7;
}
.member-address-border-bottom {
  border-bottom: solid 1px #e7e7e7;
}
.member-address-btn-add {
  margin: 15px 0 0 0;
  width: 180px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  background: #c10e15;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  float: right;
}
.member-address-btn-add:hover {
  background: #101010;
}
.member-address-detail-set {
  padding: 15px 0;
  border-top: dotted 1px #e7e7e7;
}
.member-address-main-active {
  color: #000;
  font-weight: 500;
}
.member-address-main-active i {
  margin: 0 7px 0 0;
}
.member-address-main-active a {
  color: #000;
}
.member-address-main {
  font-size: 12px;
  color: #999;
}
.member-address-main i {
  margin: 0 7px 0 0;
}
.member-address-main a {
  color: #999;
}
.member-address-edit {
  font-size: 12px;
  color: #188f00;
  margin: 5px 0 0 0;
}
.member-address-edit i {
  margin: 0 7px 0 0;
}
.member-address-edit a {
  color: #188f00;
}
.member-address-del {
  font-size: 12px;
  color: #c10e15;
  margin: 5px 0 0 0;
}
.member-address-del i {
  margin: 0 7px 0 0;
}
.member-address-del a {
  color: #c10e15;
}
.member-status-paid {
  color: #101010;
  font-weight: 600;
}
.member-status-notpaid {
  color: #c10e15;
}
.member-status-cancel {
  color: #999;
}
.member-status-complete {
  color: #188f00;
  font-weight: 600;
}
.member-status-delivery {
  color: #188f00;
}
.member-center {
  text-align: center;
}
.member-history-icondetail {
  font-size: 16px;
}
.member-history-icondetail a {
  color: #c10e15;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.member-history-icondetail a:hover {
  color: #101010;
}
.member-historyview {
  position: relative;
  padding: 15px 0 15px 100px;
  min-height: 110px;
  border-bottom: dotted 1px #e7e7e7;
}
.member-historyview-img {
  position: absolute;
  left: 0;
  top: 15px;
  line-height: 0;
  width: 80px;
  overflow: hidden;
}
.member-historyview-img img {
  width: 100%;
  height: auto;
  border: solid 1px #e7e7e7;
}
.member-historyview-detail h2 {
  font-size: 16px;
  color: #101010;
  font-weight: 500;
}
.member-historyview-detail h3 {
  font-size: 14px;
}
.member-historyview-detail h4 {
  font-size: 13px;
  color: #999;
}
.member-historyview-btn-set {
  margin: 50px 0 0 0;
}
#member-historyview-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  height: 45px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.member-historyview-btn-print {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  height: 45px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: solid 2px #101010;
  background: #101010;
  color: #101010;
  color: #fff;
}
.member-historyview-btn-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  height: 45px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: solid 2px #c10e15;
  background: #c10e15;
  color: #fff;
}
.member-historyview-btn-print:hover {
  background: none;
  color: #101010;
}
.member-historyview-btn-payment:hover {
  background: none;
  color: #c10e15;
}
.filter-share-set {
  border-top: solid 1px #e7e7e7;
  border-bottom: solid 1px #e7e7e7;
  margin: 0 0 15px 0;
  padding: 5px 0;
}
.filter-share-date {
  font-size: 14px;
  padding: 6px 0 0 0;
}
.filter-share-date i {
  margin: 0 7px 0 0;
}
.filter-share-icon {
  float: right;
  font-size: 20px;
  position: relative;
  padding: 0 0 0 70px;
}
.filter-share-icon-main {
  display: inline-block;
  margin: 0px 5px 0 0;
  font-size: 14px;
  position: absolute;
  left: 0;
  top: 5px;
}
.filter-share-icon-main span {
  font-size: 14px;
  margin: 0 0 0 7px;
}
.filter-share-icon-share {
  display: inline-block;
  cursor: pointer;
}
.filter-share-icon-share .fa-facebook-square {
  color: #3b5999;
}
.filter-share-icon-share .fa-line {
  color: #00b900;
}
.filter-share-icon-share .fa-instagram-square {
  color: #ff0096;
}
.filter-share-icon-share .fa-twitter-square {
  color: #00acee;
}
.search-list {
  padding: 15px 0 15px 150px;
  border-bottom: dotted 1px #e7e7e7;
  position: relative;
  min-height: 115px;
}
.search-list-img {
  line-height: 0;
  border: solid 1px #e7e7e7;
  position: absolute;
  left: 0;
  top: 15px;
  width: 120px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.search-list-img img {
  width: auto !important;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.search-list-detail h2 {
  font-size: 16px;
  font-weight: 500;
  color: #555;
}
.search-list-detail h3 {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  margin: 12px 0 0 0;
}
@media (max-width: 992px) {
  .product-sold-out {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  section {
    padding: 15px 0;
  }
  section.sectionfaq {
    padding: 0;
  }
  footer .footer-link-social-section {
    padding: 10px 0;
  }
  footer .footer-link-social {
    padding: 0px 0 0px 70px;
  }
  footer .footer-link-social-icon {
    left: 10px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  footer .footer-link-social-h {
    font-size: 16px;
  }
  footer .footer-link-social-d {
    font-size: 16px;
  }
  footer .footer-link-social-bd {
    margin: 10px 0;
  }
  div.footer-link-social-bd {
    border-right: none;
  }
  div.footer-link-social-bd + div.footer-link-social-bd {
    border-right: none;
  }
  div.footer-link-social-bd + div.footer-link-social-bd + div.footer-link-social-bd {
    border-right: none;
  }
  div.footer-link-social-bd + div.footer-link-social-bd + div.footer-link-social-bd + div.footer-link-social-bd {
    border-right: none;
  }
  footer .footer-contact-company {
    font-size: 20px;
  }
  footer .footer-contact-adeeress {
    font-size: 14px;
  }
  .home-title {
    font-size: 40px;
    margin: 40px 0 30px 0;
  }
  .home-title-inner span {
    font-size: 24px;
  }
  .home-about-section {
    padding: 30px 0;
  }
  .home-product-section {
    padding: 30px 0;
  }
  .home-news-section {
    padding: 50px 0;
  }
  .home-about-content {
    font-size: 16px;
    padding: 30px 0 0 0;
    margin: 0;
  }
  .home-about-img-icon {
    margin: 0;
    display: none;
  }
  .home-about-img-icon img {
    width: 60px;
  }
  .home-about-vdo {
    margin: 30px 0 0 0;
  }
  .home-about-vdo-icon {
    display: none;
  }
  .home-about-vdo iframe {
    height: 180px;
  }
  .home-vdo-content-set {
    padding: 0 0% 0 0;
  }
  .home-vdo-content-set-2 {
    margin: 10% 0 0 0;
    padding: 0%;
  }
  #home-vdo-content {
    text-align: center;
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .home-vdo-content {
    padding: 5% 0px 0% 0px;
    font-size: 18px;
    text-align: center;
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .home-vdo-content-2 {
    padding: 5% 0px 0% 0px;
    font-size: 18px;
    text-align: center;
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .home-vdo-content-wm {
    padding: 0 0px 0% 0px;
    font-size: 130px;
    text-align: center;
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 51%;
  }
  .home-vdo-content-wm-2 {
    padding: 5% 0px 0% 0px;
    font-size: 130px;
    text-align: center;
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 40%;
  }
  .home-vdo-content-h {
    font-size: 40px;
    margin: 0 0 7px 0;
    color: #c10e15;
    font-weight: 600;
  }
  .home-vdo-content-d {
    font-size: 14px;
    margin: 15px 0 0 0;
    font-weight: 300;
  }
  .home-product-content-title {
    font-size: 26px;
  }
  .home-product-content {
    padding: 0;
    font-size: 16px;
  }
  .home-product-content-contact {
    padding: 15px 15px 15px 15px;
    margin: 30px 0 0 -15px;
    font-size: 14px;
  }
  .home-contact {
    padding: 0 0 0 120px;
    margin: 5px 0 0 0;
  }
  .home-product-topic .home-product-img img {
    height: auto;
  }
  .home-product-topic .home-product-detail {
    padding: 15px;
  }
  .home-product-topic .home-product-detail-inner .home-product-detail-center h2 {
    font-size: 18px;
  }
  .home-product-topic .home-product-detail-inner .home-product-detail-center h3 {
    font-size: 14px;
  }
  .home-product-detail-original h2 {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
  }
  .home-product .home-product-img img {
    height: auto;
  }
  .home-product .home-product-detail {
    padding: 10px;
  }
  .home-product .home-product-detail-inner .home-product-detail-center h2 {
    font-size: 14px;
  }
  .home-product .home-product-detail-inner .home-product-detail-center h3 {
    font-size: 13px;
    display: none;
  }
  .home-product-bestsale-img img {
    height: auto;
  }
  .home-product-bestsale-title-set {
    padding: 0;
  }
  .home-product-bestsale-title {
    font-size: 26px;
  }
  .home-product-bestsale-set {
    padding: 0px 0 0 0;
  }
  .home-product-bestsale-arrow-left {
    margin: -15px 40px 0 0;
    z-index: 2;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .home-product-bestsale-arrow-right {
    margin: -15px 0px 0 0;
    z-index: 2;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .home-product-bestsale-deatil {
    height: 50px;
  }
  .home-product-bestsale-deatil h2 {
    font-size: 12px;
    padding-top: 5px;
  }
  .home-product-bestsale-deatil h3 {
    font-size: 12px;
  }
  .home-product-bestsale-price-set {
    padding: 0 40px 0 15px;
    height: 45px;
  }
  .home-product-bestsale-price-sale {
    font-size: 12px;
  }
  .home-product-bestsale-price-normal {
    font-size: 10px;
  }
  .home-product-bestsale-btn {
    width: 35px;
    height: 45px;
  }
  .home-customer-zone {
    padding: 15px 50px 30px 50px;
  }
  .home-customer-title {
    font-size: 26px;
  }
  .home-news-zone {
    margin: 30px 0 0 0;
  }
  .home-news-img img {
    height: auto;
  }
  .home-news-detail {
    height: auto;
  }
  .home-news-detail h2 {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .home-news-detail h3 {
    display: none;
  }
  .home-knowledge-zone {
    margin: 90px 0 0 0;
    padding: 50px 20px 30px 20px;
  }
  .news-topic-img img {
    height: auto;
  }
  .news-second-img img {
    height: auto;
  }
  .news-img img {
    height: auto;
  }
  .product-img img {
    height: auto;
  }
  .promotion-topic-img img {
    height: auto;
  }
  .promotion-second-img img {
    height: auto;
  }
  .promotion-img img {
    height: auto;
  }
  .promotion-topic-detail {
    padding: 12px 15px;
    height: inherit;
    color: #fff;
  }
  .promotion-topic-detail h2 {
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .promotion-topic-detail h3 {
    font-size: 14px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .promotion-topic-detail .promotion-topic-date {
    font-size: 12px;
  }
  .promotion-second-detail {
    padding: 12px 15px;
    height: inherit;
  }
  .promotion-second-detail h2 {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .promotion-second-detail h3 {
    font-size: 14px;
  }
  .promotion-second-detail .promotion-second-date {
    font-size: 12px;
  }
  .promotion-detail {
    padding: 12px 15px;
    height: initial;
  }
  .promotion-detail h2 {
    font-size: 14px;
  }
  .promotion-detail h3 {
    font-size: 14px;
  }
  .promotion-detail .promotion-date {
    font-size: 12px;
  }
  .promotion-content-bg {
    padding: 15px 30px;
  }
  .promotion-content-bg-2 {
    padding: 15px;
  }
  .promotion-content-title {
    font-size: 18px;
    font-weight: 600;
    padding: 12px 12px;
  }
  .promotion-content-detail {
    padding: 15px 15px 30px 15px;
  }
  .knowledge-img img {
    height: auto;
  }
  .faq {
    padding: 30px 0 30px 60px;
  }
  .faq-icon {
    font-size: 40px;
    top: 25px;
  }
  .contact-form-title {
    margin: 50px 0 0 0;
  }
  .contact-form {
    padding: 0;
    margin: 20px 0 0 0;
  }
  .contact-form-txt {
    position: relative;
    top: 0;
  }
  .contact-form-captcha {
    float: none;
  }
  .contact-form-btn {
    float: none;
    width: 100%;
    margin: 25px 0 0 0;
  }
  .contact-form-btn input {
    height: 45px;
  }
  .about-vdo iframe {
    width: 100%;
    height: 185px;
  }
  .about-content {
    font-size: 16px;
  }
  .about-title {
    font-size: 60px;
    line-height: 1;
    margin: 0;
    padding-bottom: 12px;
    text-align: center;
  }
  .about-title-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
    height: 100%;
  }
  .about-title-inner span {
    font-size: 26px;
  }
  .about-title-2 {
    font-size: 40px;
    line-height: 1;
    margin: 0;
    padding-bottom: 12px;
  }
  .about-title-2-inner span {
    font-size: 26px;
  }
  .about-content-box {
    padding: 15px;
  }
  .about-service-icon {
    font-size: 14px;
  }
  .about-service-icon img {
    height: 60px;
  }
  #about-service-tab {
    width: 100%;
    height: 120px;
    font-size: 12px;
    padding: 12px 15px;
  }
  .about-service-tab-active {
    width: 100%;
    height: 120px;
    font-size: 12px;
    padding: 12px 15px;
  }
  .about-service-tab {
    width: 100%;
    height: 120px;
    font-size: 12px;
    padding: 12px 15px;
    width: 50%;
  }
  .cartshow-content-box {
    padding: 0px;
  }
  .cartshow-content-box-border {
    border-left: none;
    border-right: none;
    border-top: solid 1px #e7e7e7;
    border-bottom: solid 1px #e7e7e7;
  }
  .cartshow-content-box-inner {
    padding: 15px 0px 30px 0px;
  }
  .product-set {
    padding: 0px 0 0 0;
  }
  .product-arrow-left {
    margin: 30px 65px 0 0;
    z-index: 2;
  }
  .product-arrow-right {
    margin: 30px 20px 0 0;
    z-index: 2;
  }
  .product-banner-category {
    margin: 30px 0 0 0;
  }
  .produc-left-zone {
    width: 100%;
    margin: 15px 0 0 0;
  }
  .produc-right-zone {
    width: 100%;
    margin: 0px 0 0 0;
  }
  .product-category-shopnow img {
    height: auto;
  }
  .product-deatil {
    height: 50px;
  }
  .product-deatil h2 {
    font-size: 14px;
    padding-top: 5px;
  }
  .product-deatil h3 {
    font-size: 12px;
  }
  .product-price-set {
    padding: 0 40px 0 15px;
    height: 45px;
  }
  .product-price-sale {
    font-size: 14px;
  }
  .product-price-normal {
    font-size: 12px;
  }
  .product-btn {
    width: 35px;
    height: 45px;
  }
  .product-list-deatil {
    height: 50px;
  }
  .product-list-deatil h2 {
    font-size: 12px;
    padding-top: 5px;
  }
  .product-list-deatil h3 {
    font-size: 12px;
  }
  .product-list-price-set {
    padding: 0 40px 0 15px;
    height: 40px;
  }
  .product-list-price-sale {
    font-size: 12px;
  }
  .product-list-price-normal {
    font-size: 10px;
  }
  .product-list-btn {
    width: 35px;
    height: 40px;
  }
  .product-other-title {
    margin: 30px 0 0 0;
  }
  .productdetail-set {
    padding: 0;
  }
  .productdetail-img {
    margin: 0;
  }
  .productdetail-name {
    border: none;
    margin: 15px 0 0 0;
  }
  .share-product {
    float: left;
  }
  .member-box {
    padding: 0px 15px 60px 15px;
  }
  .member-box-fb {
    padding: 15px 15px 60px 15px;
    margin: 45px 0 0 0;
  }
  .member-box-txt {
    margin: 50px 0 0 0;
    padding: 20px;
    font-size: 14px;
    min-height: inherit;
  }
  #member-address-tab {
    padding: 7px 15px;
    font-size: 12px;
  }
  .member-address-tab-active {
    padding: 7px 15px;
    font-size: 12px;
  }
  .member-address-tab {
    padding: 7px 15px;
    font-size: 12px;
  }
  .member-address-box {
    padding: 0 15px;
  }
  .member-address-detail {
    position: relative;
    margin: 5px 0 15px 0;
  }
  .member-address-title {
    position: relative;
  }
  .member-address-main-active {
    float: left;
    margin: 7px 12px 0 0;
  }
  .member-address-main {
    float: left;
    margin: 7px 12px 0 0;
  }
  .member-address-edit {
    float: left;
    margin: 7px 12px 0 0;
  }
  .member-address-del {
    float: left;
    margin: 7px 0 0 0;
  }
  .member-center {
    text-align: left;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  section {
    padding: 15px 0;
  }
  section.sectionfaq {
    padding: 0;
  }
  footer .footer-link-social-section {
    padding: 10px 0;
  }
  footer .footer-link-social {
    padding: 0px 0 0px 70px;
  }
  footer .footer-link-social-icon {
    left: 10px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  footer .footer-link-social-h {
    font-size: 16px;
  }
  footer .footer-link-social-d {
    font-size: 16px;
  }
  footer .footer-link-social-bd {
    margin: 10px 0;
  }
  div.footer-link-social-bd {
    border-right: solid 1px #fff;
  }
  div.footer-link-social-bd + div.footer-link-social-bd {
    border-right: none;
  }
  div.footer-link-social-bd + div.footer-link-social-bd + div.footer-link-social-bd {
    border-right: solid 1px #fff;
  }
  div.footer-link-social-bd + div.footer-link-social-bd + div.footer-link-social-bd + div.footer-link-social-bd {
    border-right: none;
  }
  .home-title {
    font-size: 65px;
    margin: 40px 0 40px 0;
  }
  .home-title-inner span {
    font-size: 30px;
  }
  .home-about-section {
    padding: 30px 0 60px 0;
    overflow: hidden;
  }
  .home-product-section {
    padding: 30px 0;
  }
  .home-news-section {
    padding: 50px 0;
  }
  .home-about-content {
    font-size: 16px;
    padding: 80px 0 0 0;
  }
  .home-about-vdo {
    margin: 30px 0 0 0;
  }
  .home-about-vdo iframe {
    height: 280px;
  }
  .home-vdo-content-set {
    padding: 0 0% 0 0;
  }
  .home-vdo-content-set-2 {
    margin: 10% 0 0 0;
    padding: 0%;
  }
  #home-vdo-content {
    text-align: center;
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .home-vdo-content {
    padding: 5% 0px 0% 0px;
    font-size: 18px;
    text-align: center;
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .home-vdo-content-2 {
    padding: 5% 0px 0% 0px;
    font-size: 18px;
    text-align: center;
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .home-vdo-content-wm {
    padding: 0 0px 0% 0px;
    font-size: 130px;
    text-align: center;
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 68%;
  }
  .home-vdo-content-wm-2 {
    padding: 5% 0px 0% 0px;
    font-size: 130px;
    text-align: center;
    position: relative;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 55%;
  }
  .home-vdo-content-h {
    font-size: 40px;
    margin: 0 0 7px 0;
    color: #c10e15;
    font-weight: 600;
  }
  .home-vdo-content-d {
    font-size: 14px;
    margin: 15px 0 0 0;
    font-weight: 300;
  }
  .home-product-content-title {
    font-size: 26px;
  }
  .home-product-content {
    padding: 0 50px;
  }
  .home-product-content-contact {
    padding: 30px 30px 30px 65px;
    margin: 30px 0 0 -15px;
  }
  .home-product-topic .home-product-img img {
    height: 260px;
  }
  .home-product .home-product-img img {
    height: 98px;
  }
  .home-product-detail-original {
    height: 35px;
  }
  .home-product-detail-original h2 {
    font-size: 12px;
  }
  .home-product-topic .home-product-detail {
    padding: 15px;
  }
  .home-product-topic .home-product-detail-inner .home-product-detail-center h2 {
    font-size: 14px;
  }
  .home-product-topic .home-product-detail-inner .home-product-detail-center h3 {
    font-size: 14px;
    display: none;
  }
  .home-product .home-product-detail {
    padding: 10px;
  }
  .home-product .home-product-detail-inner .home-product-detail-center h2 {
    font-size: 14px;
  }
  .home-product .home-product-detail-inner .home-product-detail-center h3 {
    font-size: 12px;
    display: none;
  }
  .home-product-bestsale-title {
    font-size: 26px;
  }
  .home-product-bestsale-img img {
    height: 248px;
  }
  .home-product-bestsale-set {
    padding: 0px 0 0 0;
  }
  .home-product-bestsale-arrow-left {
    margin: -15px 60px 0 0;
    z-index: 2;
  }
  .home-product-bestsale-arrow-right {
    margin: -15px 15px 0 0;
    z-index: 2;
  }
  .home-customer-zone {
    padding: 15px 50px 30px 50px;
  }
  .home-customer-title {
    font-size: 26px;
  }
  .home-news-zone {
    margin: 30px 0 0 0;
  }
  .home-news-img img {
    height: 165px;
  }
  .home-knowledge-zone {
    margin: 90px 0 0 0;
  }
  .news-topic-img img {
    height: auto;
  }
  .news-second-img img {
    height: 180px;
  }
  .news-img img {
    height: 180px;
  }
  .product-img img {
    height: 168px;
  }
  .promotion-topic-img img {
    height: auto;
  }
  .promotion-second-img img {
    height: 240px;
  }
  .promotion-img img {
    height: 240px;
  }
  .promotion-topic-detail {
    padding: 12px 15px;
    height: 80px;
    color: #fff;
  }
  .promotion-topic-detail h2 {
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .promotion-topic-detail h3 {
    font-size: 14px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .promotion-topic-detail .promotion-topic-date {
    font-size: 12px;
  }
  .promotion-second-detail {
    padding: 12px 15px;
    height: 80px;
  }
  .promotion-second-detail h2 {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .promotion-second-detail h3 {
    font-size: 14px;
  }
  .promotion-second-detail .promotion-second-date {
    font-size: 12px;
  }
  .promotion-detail {
    padding: 12px 15px;
    height: 80px;
  }
  .promotion-detail h2 {
    font-size: 14px;
  }
  .promotion-detail h3 {
    font-size: 14px;
  }
  .promotion-detail .promotion-date {
    font-size: 12px;
  }
  .promotion-content-bg {
    padding: 15px 30px;
  }
  .knowledge-img img {
    height: 160px;
  }
  .contact-form-title {
    margin: 50px 0 0 0;
  }
  .contact-form-captcha {
    float: none;
  }
  .contact-form-btn {
    float: none;
    width: 100%;
    margin: 25px 0 0 0;
  }
  .contact-form-btn input {
    height: 45px;
  }
  .about-vdo iframe {
    width: 100%;
    height: 290px;
  }
  .about-content {
    font-size: 13px;
  }
  .about-title {
    font-size: 60px;
    line-height: 1;
    margin: 0 0 12px 0;
    text-align: center;
  }
  .about-title-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
  }
  .about-title-inner span {
    font-size: 36px;
  }
  .about-title-2 {
    font-size: 60px;
    line-height: 1;
    margin: 0 0 12px 0;
  }
  .about-title-2-inner span {
    font-size: 36px;
  }
  .about-content-box {
    padding: 15px;
  }
  .about-service-icon {
    font-size: 14px;
  }
  .about-service-icon img {
    height: 60px;
  }
  #about-service-tab {
    width: 25%;
    font-size: 12px;
    padding: 12px 5px;
  }
  .about-service-tab-active {
    width: 25%;
    font-size: 12px;
    padding: 12px 5px;
  }
  .about-service-tab {
    width: 25%;
    font-size: 12px;
    padding: 12px 5px;
  }
  .cartshow-content-box {
    padding: 0px;
  }
  .cartshow-content-box-border {
    border-left: none;
    border-right: none;
    border-top: solid 1px #e7e7e7;
    border-bottom: solid 1px #e7e7e7;
  }
  .product-set {
    padding: 0px 0 0 0;
  }
  .product-arrow-left {
    margin: -15px 60px 0 0;
    z-index: 2;
  }
  .product-arrow-right {
    margin: -15px 15px 0 0;
    z-index: 2;
  }
  .product-banner-category {
    margin: 30px 0 0 0;
  }
  .produc-left-zone {
    width: 100%;
    margin: 15px 0 0 0;
  }
  .produc-right-zone {
    width: 100%;
    margin: 0px 0 0 0;
  }
  .product-category-shopnow img {
    height: auto;
  }
  .product-deatil {
    height: 50px;
  }
  .product-deatil h2 {
    font-size: 14px;
    padding-top: 5px;
  }
  .product-deatil h3 {
    font-size: 12px;
  }
  .product-price-set {
    padding: 0 50px 0 15px;
    height: 45px;
  }
  .product-price-sale {
    font-size: 14px;
  }
  .product-price-normal {
    font-size: 12px;
  }
  .product-btn {
    width: 45px;
    height: 45px;
  }
  .product-list-deatil {
    height: 50px;
  }
  .product-list-deatil h2 {
    font-size: 14px;
    padding-top: 5px;
  }
  .product-list-deatil h3 {
    font-size: 12px;
  }
  .product-list-price-set {
    padding: 0 50px 0 15px;
    height: 45px;
  }
  .product-list-price-sale {
    font-size: 14px;
  }
  .product-list-price-normal {
    font-size: 12px;
  }
  .product-list-btn {
    width: 45px;
    height: 45px;
  }
  .product-other-title {
    margin: 30px 0 0 0;
  }
  .productdetail-set {
    padding: 0;
  }
  .productdetail-img {
    margin: 0;
  }
  .productdetail-name {
    border: none;
    margin: 15px 0 0 0;
  }
  .member-box {
    padding: 30px 60px 60px 60px;
  }
  .member-box-fb {
    padding: 30px 60px 60px 60px;
    margin: 45px 0 0 0;
  }
  .member-box-txt {
    margin: 50px 0 0 0;
    min-height: inherit;
  }
  .member-address-box {
    padding: 0 15px;
  }
  .member-address-detail {
    padding: 0 0 0 150px;
    position: relative;
    margin: 0 0 12px 0;
  }
  .member-address-title {
    position: absolute;
    left: 0;
    top: 0;
  }
  .member-address-main-active {
    float: left;
    margin: 7px 12px 0 0;
  }
  .member-address-main {
    float: left;
    margin: 7px 12px 0 0;
  }
  .member-address-edit {
    float: left;
    margin: 7px 12px 0 0;
  }
  .member-address-del {
    float: left;
    margin: 7px 0 0 0;
  }
  .member-center {
    text-align: left;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding: 15px 0;
  }
  section.sectionfaq {
    padding: 0;
  }
  footer .footer-link-social-section {
    padding: 10px 0;
  }
  footer .footer-link-social-bd {
    margin: 10px 0;
  }
  div.footer-link-social-bd {
    border-right: solid 1px #fff;
  }
  div.footer-link-social-bd + div.footer-link-social-bd {
    border-right: none;
  }
  div.footer-link-social-bd + div.footer-link-social-bd + div.footer-link-social-bd {
    border-right: solid 1px #fff;
  }
  div.footer-link-social-bd + div.footer-link-social-bd + div.footer-link-social-bd + div.footer-link-social-bd {
    border-right: none;
  }
  .home-title {
    font-size: 80px;
    margin: 50px 0 40px 0;
  }
  .home-title-inner span {
    font-size: 36px;
  }
  .home-about-section {
    padding: 30px 0;
  }
  .home-product-section {
    padding: 30px 30px;
  }
  .home-news-section {
    padding: 50px 0;
  }
  .home-about-content {
    font-size: 16px;
  }
  .home-about-vdo-icon {
    display: none;
  }
  .home-about-content {
    font-size: 16px;
    padding: 80px 0 0 0;
  }
  .home-about-vdo {
    margin: 30px 0 0 0;
  }
  .home-about-vdo-icon {
    display: none;
  }
  .home-about-vdo iframe {
    height: 380px;
  }
  .logo-qualitat-rorate {
    margin-left: -25px;
  }
  .logo-qualitat-rorate img {
    height: 50px;
  }
  .home-vdo-content {
    padding: 3% 5px 0 5px;
    font-size: 14px;
  }
  .home-vdo-content-2 {
    padding: 16% 5px 0 5px;
    font-size: 14px;
  }
  .home-vdo-content-wm {
    font-size: 150px;
  }
  .home-vdo-content-wm-2 {
    font-size: 150px;
  }
  .home-vdo-content-h {
    font-size: 30px;
  }
  .home-vdo-content-d {
    font-size: 10px;
  }
  .home-product-content {
    padding: 0 5px;
  }
  .home-product-content-contact {
    padding: 30px 30px 30px 55px;
    margin: 30px 0 0 -45px;
  }
  .home-product-topic .home-product-img img {
    height: 360px;
  }
  .home-product .home-product-img img {
    height: 140px;
  }
  .home-product-detail-original h2 {
    font-size: 16px;
  }
  .home-product-topic .home-product-detail {
    padding: 15px;
  }
  .home-product-topic .home-product-detail-inner .home-product-detail-center h2 {
    font-size: 18px;
  }
  .home-product-topic .home-product-detail-inner .home-product-detail-center h3 {
    font-size: 14px;
  }
  .home-product .home-product-detail {
    padding: 15px;
  }
  .home-product .home-product-detail-inner .home-product-detail-center h2 {
    font-size: 18px;
  }
  .home-product .home-product-detail-inner .home-product-detail-center h3 {
    font-size: 14px;
  }
  .home-product-bestsale-set {
    padding: 0px 0 0 0;
  }
  .home-product-bestsale-img img {
    height: 218px;
  }
  .home-product-bestsale-arrow-left {
    margin: -15px 45px 0 0;
  }
  .home-product-bestsale-arrow-right {
    margin: -15px 0 0 0;
  }
  .home-product-bestsale-price-sale {
    font-size: 17px;
  }
  .home-product-bestsale-price-normal {
    font-size: 12px;
  }
  .home-news-zone {
    margin: 30px 0 0 0;
  }
  .home-news-img img {
    height: auto;
  }
  .home-knowledge-zone {
    margin: 90px 0 0 0;
  }
  .news-topic-img img {
    height: auto;
  }
  .news-second-img img {
    height: 248px;
  }
  .news-img img {
    height: 248px;
  }
  .product-img img {
    height: 163px;
  }
  .promotion-topic-img img {
    height: 330px;
  }
  .promotion-second-img img {
    height: 150px;
  }
  .promotion-img img {
    height: 210px;
  }
  .promotion-topic-detail {
    padding: 20px 15px;
    height: 125px;
    color: #fff;
  }
  .promotion-topic-detail h2 {
    font-size: 20px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .promotion-topic-detail h3 {
    font-size: 14px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .promotion-topic-detail .promotion-topic-date {
    font-size: 12px;
  }
  .promotion-second-detail {
    padding: 12px 15px;
    height: 63px;
  }
  .promotion-second-detail h2 {
    font-size: 14px;
  }
  .promotion-second-detail h3 {
    font-size: 14px;
  }
  .promotion-second-detail .promotion-second-date {
    font-size: 12px;
  }
  .promotion-detail {
    padding: 12px 15px;
    height: 80px;
  }
  .promotion-detail h2 {
    font-size: 14px;
  }
  .promotion-detail h3 {
    font-size: 14px;
  }
  .promotion-detail .promotion-date {
    font-size: 12px;
  }
  .promotion-content-bg {
    padding: 15px 30px;
  }
  .knowledge-img img {
    height: 140px;
  }
  .contact-form-title {
    margin: 50px 0 0 0;
  }
  .about-vdo iframe {
    width: 100%;
    height: 190px;
  }
  .about-content {
    font-size: 13px;
  }
  .about-title {
    font-size: 45px;
    line-height: 1;
    margin: 15px 0 12px 0;
  }
  .about-title-inner span {
    font-size: 30px;
  }
  .about-title-2 {
    font-size: 45px;
    line-height: 1;
    margin: 15px 0 12px 0;
  }
  .about-title-2-inner span {
    font-size: 30px;
  }
  .about-content-box {
    padding: 15px;
  }
  .about-service-icon {
    font-size: 14px;
  }
  .about-service-icon img {
    height: 60px;
  }
  #about-service-tab {
    width: 25%;
    font-size: 12px;
    padding: 12px 5px;
  }
  .about-service-tab-active {
    width: 25%;
    font-size: 12px;
    padding: 12px 5px;
  }
  .about-service-tab {
    width: 25%;
    font-size: 12px;
    padding: 12px 5px;
  }
  .cartshow-content-box-border {
    border-right: none;
  }
  .product-set {
    padding: 0px 0 0 0;
  }
  .product-arrow-left {
    margin: -15px 45px 0 0;
  }
  .product-arrow-right {
    margin: -15px 0 0 0;
  }
  .product-banner-category {
    margin: 30px 0 0 0;
  }
  .produc-left-zone {
    width: 28%;
    margin: 15px 0 0 0;
  }
  .produc-right-zone {
    width: 72%;
    margin: 15px 0 0 0;
  }
  .product-category-shopnow img {
    height: 260px;
  }
  .product-deatil {
    height: 50px;
  }
  .product-deatil h2 {
    font-size: 14px;
    padding-top: 5px;
  }
  .product-deatil h3 {
    font-size: 12px;
  }
  .product-price-set {
    padding: 0 45px 0 10px;
    height: 45px;
  }
  .product-price-sale {
    font-size: 13px;
  }
  .product-price-normal {
    font-size: 12px;
  }
  .product-btn {
    width: 40px;
    height: 45px;
    padding: 0 0 3px 0;
  }
  .product-list-deatil {
    height: 50px;
  }
  .product-list-deatil h2 {
    font-size: 14px;
    padding-top: 5px;
  }
  .product-list-deatil h3 {
    font-size: 12px;
  }
  .product-list-price-set {
    padding: 0 50px 0 15px;
    height: 45px;
  }
  .product-list-price-sale {
    font-size: 14px;
  }
  .product-list-price-normal {
    font-size: 12px;
  }
  .product-list-btn {
    width: 45px;
    height: 45px;
  }
  .productdetail-set {
    padding: 0;
  }
  .productdetail-name {
    border: none;
  }
  .productdetail-img {
    margin: 0;
  }
  .member-box {
    padding: 30px 40px 60px 40px;
  }
  .member-box-fb {
    padding: 30px 60px 60px 60px;
    margin: 45px 0 0 0;
  }
  .member-box-txt {
    margin: 45px 0 0 0;
    min-height: inherit;
  }
  .member-address-box {
    padding: 0 15px;
  }
  .member-address-detail {
    padding: 0 0 0 150px;
    position: relative;
    margin: 0 0 12px 0;
  }
  .member-address-title {
    position: absolute;
    left: 0;
    top: 0;
  }
  .member-address-main-active {
    float: left;
    margin: 7px 12px 0 0;
  }
  .member-address-main {
    float: left;
    margin: 7px 12px 0 0;
  }
  .member-address-edit {
    float: left;
    margin: 7px 12px 0 0;
  }
  .member-address-del {
    float: left;
    margin: 7px 0 0 0;
  }
  .member-center {
    text-align: left;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  section {
    padding: 35px 0;
  }
  footer .footer-link-social-section {
    padding: 10px 0;
  }
  footer .footer-link-social {
    padding: 0px 0 0px 70px;
  }
  footer .footer-link-social-icon {
    left: 10px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  footer .footer-link-social-h {
    font-size: 16px;
  }
  footer .footer-link-social-d {
    font-size: 16px;
  }
  footer .footer-link-social-bd {
    margin: 10px 0;
  }
  div.footer-link-social-bd {
    border-right: solid 1px #fff;
  }
  div.footer-link-social-bd + div.footer-link-social-bd {
    border-right: solid 1px #fff;
  }
  div.footer-link-social-bd + div.footer-link-social-bd + div.footer-link-social-bd {
    border-right: solid 1px #fff;
  }
  div.footer-link-social-bd + div.footer-link-social-bd + div.footer-link-social-bd + div.footer-link-social-bd {
    border-right: none;
  }
  footer ul.footerfix {
    font-size: 14px;
  }
  .home-title {
    font-size: 80px;
    margin: 30px 0 40px 0;
  }
  .home-title-inner span {
    font-size: 36px;
  }
  .home-about-section {
    padding: 50px 0px 80px 0;
  }
  .home-product-section {
    padding: 20px 0 50px 0;
  }
  .home-news-section {
    padding: 50px 0;
  }
  .home-about-content {
    padding: 0px 0 190px 0;
    font-size: 16px;
  }
  .home-about-vdo {
    margin: -160px 0 0 90px;
  }
  .home-about-vdo iframe {
    height: 250px;
  }
  .logo-qualitat-rorate img {
    height: 60px;
  }
  .home-vdo-content {
    font-size: 18px;
  }
  .home-vdo-content-2 {
    font-size: 18px;
  }
  .home-vdo-content-wm {
    font-size: 200px;
  }
  .home-vdo-content-wm-2 {
    font-size: 200px;
  }
  .home-vdo-content-h {
    font-size: 40px;
  }
  .home-vdo-content-d {
    font-size: 14px;
  }
  .home-product-content-title {
    font-size: 36px;
  }
  .home-product-content-title span {
    font-size: 48px;
  }
  .home-product-content {
    padding: 0;
    font-size: 14px;
  }
  .home-contact-title {
    font-size: 18px;
    margin: 0 0 7px 0;
  }
  .home-product-content-contact {
    padding: 15px 30px 15px 60px;
    margin: 30px 0 0 -55px;
    font-size: 14px;
  }
  .home-contact {
    padding: 0 0 0 120px;
    margin: 0px 0 0 0;
  }
  .home-product-topic .home-product-img img {
    height: 485px;
  }
  .home-product .home-product-img img {
    height: 204px;
  }
  .home-product-detail-original h2 {
    font-size: 16px;
  }
  .home-product-topic .home-product-detail {
    padding: 15px;
  }
  .home-product-bestsale-img img {
    height: 208px;
  }
  .home-product-topic .home-product-detail-inner .home-product-detail-center h2 {
    font-size: 18px;
  }
  .home-product-topic .home-product-detail-inner .home-product-detail-center h3 {
    font-size: 14px;
  }
  .home-product .home-product-detail {
    padding: 15px;
  }
  .home-product .home-product-detail-inner .home-product-detail-center h2 {
    font-size: 18px;
  }
  .home-product .home-product-detail-inner .home-product-detail-center h3 {
    font-size: 14px;
  }
  .home-product-bestsale-set {
    padding: 30px 0 0 0;
  }
  .home-product-bestsale-arrow-left {
    margin: -5px 45px 0 0;
  }
  .home-product-bestsale-arrow-right {
    margin: -5px 0 0 0;
  }
  .home-product-bestsale-price-sale {
    font-size: 16px;
  }
  .home-product-bestsale-price-normal {
    font-size: 14px;
  }
  .news-topic-img img {
    height: auto;
  }
  .news-second-img img {
    height: 153px;
  }
  .news-second-detail {
    height: 122px;
  }
  .news-img img {
    height: 218px;
  }
  .promotion-topic-img img {
    height: 450px;
  }
  .promotion-second-img img {
    height: 210px;
  }
  .promotion-img img {
    height: 210px;
  }
  .promotion-topic-detail {
    padding: 25px 15px;
    height: 127px;
    color: #fff;
  }
  .promotion-topic-detail h2 {
    font-size: 22px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .promotion-topic-detail h3 {
    font-size: 14px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .promotion-topic-detail .promotion-topic-date {
    font-size: 14px;
  }
  .promotion-second-detail {
    padding: 12px 15px;
    height: 65px;
  }
  .promotion-second-detail h2 {
    font-size: 14px;
  }
  .promotion-second-detail h3 {
    font-size: 14px;
  }
  .promotion-second-detail .promotion-second-date {
    font-size: 12px;
  }
  .promotion-detail {
    padding: 12px 15px;
    height: 85px;
  }
  .promotion-detail h2 {
    font-size: 14px;
  }
  .promotion-detail h3 {
    font-size: 14px;
  }
  .promotion-detail .promotion-date {
    font-size: 12px;
  }
  .promotion-content-bg {
    padding: 15px 30px;
  }
  .knowledge-img img {
    height: 160px;
  }
  .contact-form {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;
  }
  .contact-form-btn {
    margin: 15px 0 0 0;
  }
  .about-vdo iframe {
    width: 100%;
    height: 260px;
  }
  .about-content {
    font-size: 16px;
  }
  .about-title {
    font-size: 60px;
  }
  .about-title-inner span {
    font-size: 26px;
  }
  .about-title-2 {
    font-size: 60px;
  }
  .about-title-2-inner span {
    font-size: 26px;
  }
  .about-content-box {
    padding: 15px;
  }
  .about-service-icon {
    font-size: 14px;
  }
  .about-service-icon img {
    height: 60px;
  }
  #about-service-tab {
    width: 25%;
    font-size: 12px;
  }
  .about-service-tab-active {
    width: 25%;
    font-size: 12px;
  }
  .about-service-tab {
    width: 25%;
    font-size: 12px;
  }
  .cartshow-radio {
    font-size: 14px;
  }
  .product-set {
    padding: 30px 0 0 0;
  }
  .product-arrow-left {
    margin: -5px 45px 0 0;
  }
  .product-arrow-right {
    margin: -5px 0 0 0;
  }
  .product-price-set {
    padding: 0 50px 0 15px;
    height: 45px;
  }
  .product-price-sale {
    font-size: 18px;
  }
  .product-price-normal {
    font-size: 12px;
  }
  .product-btn {
    width: 45px;
    height: 45px;
  }
  .product-list-price-set {
    padding: 0 50px 0 15px;
    height: 45px;
  }
  .product-list-price-sale {
    font-size: 18px;
  }
  .product-list-price-normal {
    font-size: 14px;
  }
  .product-list-btn {
    width: 45px;
    height: 45px;
  }
  .product-banner-category {
    margin: 30px 0 0 0;
  }
  .produc-left-zone {
    width: 25%;
    margin: 15px 0 0 0;
  }
  .produc-right-zone {
    width: 75%;
    margin: 15px 0 0 0;
  }
  .product-category-shopnow img {
    height: 326px;
  }
  .product-img img {
    height: 230px;
  }
  .product-deatil {
    height: 50px;
  }
  .product-deatil h2 {
    font-size: 14px;
    padding-top: 5px;
  }
  .product-deatil h3 {
    font-size: 12px;
  }
  .product-price-set {
    padding: 0 50px 0 15px;
    height: 45px;
  }
  .product-price-sale {
    font-size: 16px;
  }
  .product-price-normal {
    font-size: 14px;
  }
  .product-btn {
    width: 45px;
    height: 45px;
  }
  .product-list-deatil {
    height: 50px;
  }
  .product-list-deatil h2 {
    font-size: 14px;
    padding-top: 5px;
  }
  .product-list-deatil h3 {
    font-size: 12px;
  }
  .product-list-price-set {
    padding: 0 50px 0 15px;
    height: 45px;
  }
  .product-list-price-sale {
    font-size: 16px;
  }
  .product-list-price-normal {
    font-size: 14px;
  }
  .product-list-btn {
    width: 45px;
    height: 45px;
  }
  .productdetail-set {
    padding: 0;
  }
  .productdetail-price-sale {
    font-size: 18px;
    margin: 30px 0 0 0;
    line-height: 2;
  }
  .productdetail-price-sale span {
    font-size: 28px;
  }
  .productdetail-price-normal {
    font-size: 16px;
  }
  .member-box {
    padding: 30px 50px 60px 50px;
  }
  .member-box-fb {
    padding: 30px 30px 60px 30px;
    margin: 45px 0 0 0;
  }
  .member-box-txt {
    margin: 50px 0 0 0;
    min-height: inherit;
  }
  .memberleft-box {
    padding: 0;
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
  footer ul.footerfix {
    font-size: 14px;
  }
  .home-product-section {
    padding: 70px 0 90px 0;
  }
  .home-product-content {
    font-size: 18px;
    padding: 0 15px 0 0;
  }
  .home-product-content-contact {
    padding: 30px 30px 30px 15px;
    margin: 80px 0 0 -15px;
  }
  .home-product-content-title {
    font-size: 36px;
  }
  .home-product-content-title span {
    font-size: 48px;
  }
  .home-product-content {
    padding: 0;
    font-size: 18px;
  }
  .home-product-content-contact {
    padding: 15px 15px 15px 15px;
    margin: 30px 0 0 -15px;
  }
  .home-contact {
    padding: 0 0 0 120px;
    margin: 5px 0 0 0;
  }
  .home-product-topic .home-product-detail {
    padding: 15px;
  }
  .home-product-topic .home-product-detail-inner .home-product-detail-center h2 {
    font-size: 18px;
  }
  .home-product-topic .home-product-detail-inner .home-product-detail-center h3 {
    font-size: 14px;
  }
  .home-product .home-product-detail {
    padding: 15px;
  }
  .home-product .home-product-detail-inner .home-product-detail-center h2 {
    font-size: 18px;
  }
  .home-product .home-product-detail-inner .home-product-detail-center h3 {
    font-size: 14px;
  }
}
.ribbon-set {
  position: absolute;
  left: 0;
  top: 0;
  margin: 25px 0 0 0;
}
.ribbon {
  position: relative;
  text-align: center;
  padding: 3px 0px 0 7px;
  font-size: 10px;
  color: #fff;
  line-height: 1;
  float: left;
  height: 30px;
  background: #c10e15;
  z-index: 1;
}
.ribbon:after,
.ribbon:before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 0;
  height: 0;
  right: -15px;
  border-left: 0px solid transparent;
  border-right: 15px solid transparent;
}
.ribbon:before {
  top: 0;
  border-top: 30px solid #c10e15;
}
.ribbon:after {
  bottom: 0;
  border-bottom: 30px solid #c10e15;
}
.ribbon span {
  font-size: 14px;
  font-weight: 500;
}
.product_list .ribbon-set {
  margin: 12px 0 0 0;
}
.product .ribbon-set {
  margin: 12px 0 0 0;
}
[slider] {
  position: relative;
  height: 7px;
  border-radius: 10px;
  text-align: left;
  margin: 45px 0 10px 0;
}
[slider] > div.price-slider {
  position: absolute;
  left: 15px;
  right: 15px;
  height: 7px;
  font-size: 14px;
}
[slider] > div.price-slider > [inverse-left] {
  position: absolute;
  left: 0;
  height: 7px;
  border-radius: 10px;
  background-color: #ccc;
  margin: 0 0px;
}
[slider] > div.price-slider > [inverse-right] {
  position: absolute;
  right: 0;
  height: 7px;
  border-radius: 10px;
  background-color: #ccc;
  margin: 0 0px;
}
[slider] > div.price-slider > [range] {
  position: absolute;
  left: 0;
  height: 7px;
  border-radius: 14px;
  background-color: #c10e15;
}
[slider] > div.price-slider > [thumb] {
  position: absolute;
  top: -10px;
  z-index: 2;
  height: 24px;
  width: 24px;
  text-align: left;
  margin-left: -11px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,0.4);
  background-color: #fff;
  border-radius: 50%;
  outline: none;
}
[slider] > input[type="range"] {
  position: absolute;
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 3;
  height: 7px;
  top: -2px;
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  -moz-border: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
div[slider] > input[type="range"]::-ms-track {
  -webkit-appearance: none;
  background: transparent;
  color: transparent;
}
div[slider] > input[type="range"]::-moz-range-track {
  -moz-appearance: none;
  background: transparent;
  color: transparent;
}
div[slider] > input[type="range"]:focus::-webkit-slider-runnable-track {
  background: transparent;
  border: transparent;
}
div[slider] > input[type="range"]:focus {
  outline: none;
}
div[slider] > input[type="range"]::-ms-thumb {
  pointer-events: all;
  width: 24px;
  height: 24px;
  border-radius: 0px;
  border: 0 none;
  background: red;
}
div[slider] > input[type="range"]::-moz-range-thumb {
  pointer-events: all;
  width: 24px;
  height: 24px;
  border-radius: 0px;
  border: 0 none;
  background: red;
}
div[slider] > input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  width: 24px;
  height: 24px;
  border-radius: 0px;
  border: 0 none;
  background: red;
  -webkit-appearance: none;
}
div[slider] > input[type="range"]::-ms-fill-lower {
  background: transparent;
  border: 0 none;
}
div[slider] > input[type="range"]::-ms-fill-upper {
  background: transparent;
  border: 0 none;
}
div[slider] > input[type="range"]::-ms-tooltip {
  display: none;
}
[slider] > div.price-slider > [sign] {
  opacity: 1;
  display: inline-block;
  text-align: center;
  margin: 45px 0 0 0;
}
[slider] > div.price-slider > [sign] > span {
  line-height: 28px;
  color: #555;
}
.product-filter-box {
  background: #f5f5f5;
  padding: 0 15px 20px 15px;
  margin: 30px 0 0 0;
}
.product-filter-title {
  padding: 12px 0;
  font-weight: 500;
  border-bottom: dotted 1px #ccc;
}
.product-filter-btn {
  height: 35px;
  margin: 85px 30px 0 30px;
  background: #c10e15;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-filter-btn:hover {
  background: #101010;
}
.dropdown-sortby-set {
  float: right;
  width: 100%;
  max-width: 270px;
  margin: 15px 0;
}
.dropdown-sortby-set .dropdown-sortby {
  border: solid 1px #e7e7e7;
  cursor: pointer;
  padding: 7px 5px;
  color: #999;
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  border-radius: 3px;
  text-align: center;
}
.dropdown-sortby-set .dropdown-menu {
  width: 200px;
}
.dropdown-sortby-set .dropdown-menu .dropdown-item {
  font-size: 14px;
  color: #666;
  font-weight: 300;
}
.dropdown-sortby-set .dropdown-menu .dropdown-item i {
  width: 25px;
}
.dropdown-sortby-set .dropdown-menu .dropdown-item:hover {
  color: #c10e15;
}
@media (max-width: 575px) {
  .dropdown-sortby-set {
    width: 100%;
  }
  .dropdown-sortby-set .dropdown-menu {
    width: 100%;
  }
  .product-filter-btn {
    height: 30px;
    font-size: 14px;
    margin: 85px 30px 10px 30px;
  }
}
.product-list .product-fav-del {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: 40px;
  height: 35px;
  color: #c10e15;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  background: rgba(0,0,0,0.05);
  font-size: 14px;
  cursor: pointer;
}
.product-list .product-fav-del:hover {
  background: rgba(0,0,0,0.1);
}
