/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');*/

:root {
/* #1e2228 */
  --color-body: #232323; 
  --color-primary: #CF1607;
  --color-second: #0c111d;
  --color-white: #ffffff;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img,
picture,
svg,
video {
  max-width: 100%;
  vertical-align: middle;
}

input,
select,
textarea {
  background-color: transparent;
  outline: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: 0;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
nav,
picture {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

ul,
ol,
li {
  list-style: none;
}

html {
  font-size: 62.5%;
}

@media only screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
body {
  min-height: 100vh;
  color: var(--color-body);
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

body.is-fixed {
  overflow: hidden;
}
div,
p {
  word-break: break-word;
}

strong {
  font-weight: bold;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

a:hover {
  text-decoration: none;
  color: var(--color-primary);
}

a:focus {
  outline: none;
  text-decoration: none;
  color: var(--color-primary);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul li,
ol li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0;
}

p {
  margin-bottom: 1.5rem;
  padding: 0;
}

p:last-child {
  margin-bottom: 0px;
}

figure {
  margin: 0;
  padding: 0;
  line-height: 0;
}

figure img {
  width: 100%;
  max-width: 100%;
}

input[type=submit] {
  border: none;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

table {
  border-spacing: inherit;
  border-collapse: collapse;
  max-width: 100%;  
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* clearfix (micro) */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.alignleft{display:inline;float:left;margin-right:1.5em;text-align: left;}
.alignright{display:inline;float:right;margin-left:1.5em;text-align: right;}
.aligncenter{clear:both;display:block;margin:0 auto;text-align: center;}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

svg { 
  max-width:20px; 
  fill: currentColor;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-second);
  margin: 0 0 1.5rem;
  font-weight: 700;
  text-rendering: optimizeLegibility;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.6rem;
}

h3 {
  font-size: 2.3rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.6rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}
input[type=date], 
input[type=email], 
input[type=number], 
input[type=password], 
input[type=search], 
input[type=tel], 
input[type=text], 
input[type=url], 
select, 
textarea {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  box-sizing: border-box;
  color: var(--color-body);
  height: 4rem;
  max-width: 100%;
  padding: 0 1rem;
  vertical-align: middle;
  width: 100%;
  outline: none;
  box-shadow: none;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.btn, .button, button, input[type=button], input[type=reset], input[type=submit] {
  text-rendering: optimizeLegibility;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  margin-top: 0;
  max-width: 100%;
  min-height: 4rem;
  line-height: 4rem;
  min-width: 4rem;
  padding: 0 2rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  vertical-align: middle;
  cursor: pointer;
  outline: none;
  box-shadow: none;  
  text-transform: uppercase;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.hide {
  display: none;
}
.main:not(.top) .main__content {
  padding: 9rem 0;
}
.topbar {
  font-size: 1.3rem;
  background-color: #f1f1f1;
  padding: 13px 0;
}
.topbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.topbar ul li {
  flex-grow: 1;
}
.topbar svg {
  max-width: 1.7rem;
  margin-right: 10px;
  color: var(--color-primary);
}
.header {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: var(--color-white);
}
.menu-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--color-second);
}
#main-nav .navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
}
#main-nav .navi > li {
  position: relative;
}
#main-nav .navi li a {
  display: block;
  font-size: 1.3rem;
  text-transform: uppercase;
  padding: 1.4rem 2rem;
  color: var(--color-white);
}
#main-nav .navi > li.current-menu-item > a {
  background-color: var(--color-primary);
}
#main-nav .navi__sub, #main-nav .navi .sub-menu {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  top: 105%;
  left: 0;
  width: 30rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background-color: var(--color-second);
}
#main-nav .navi__sub li, 
#main-nav .navi .sub-menu li {
  text-align: left;
}
#main-nav .navi li:has(.navi__sub, .sub-menu) {
  padding-right: 1rem;
}
#main-nav .navi li:has(.navi__sub, .sub-menu) > a:after {
  content: "";
  position: absolute;
  background: url(../img/arrow-down.svg);
  width: 2rem;
  height: 2rem;
  right: 1rem;
  top: 50%;
  margin-top: -1rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background-size: cover;
}
#main-nav .navi li:has(.navi__sub, .sub-menu) li:has(.navi__sub, .sub-menu) > a:after {
  background: url(../img/arrow-down.svg);
  transform: rotate(-90deg);
}
#main-nav .navi li:hover > .navi__sub, 
#main-nav .navi li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}
#main-nav .navi .sub-menu .sub-menu {
  top: 0;
  left: 101%;
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  
}
.header__right {
  position: relative;
  width: 40%;
}
.header__logo,
.footer__logo {
  max-width: 175px;
}
.header__logo a {
  color: var(--color-second);
}
.header__logo svg {
  width: 100%;
  max-width: 100%;
}
.action-box {
  padding: 2.5rem 0;
  background: #f6f6f6;
}
.action-box .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.action-box .item-box {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.action-box .item-box .icon {
  padding: 0.5rem;
  width:8rem;
  color: var(--color-primary);
}
.action-box .item-box .icon svg {
  width: 100%;
  max-width: 100%;
}
.action-box .item-box .text {
  font-size:1.4rem;
  width:74%;
  padding-left: 15px;
}
.action-box .item-box .title {
  font-size:1.5rem;
  color: var(--color-second);
  margin-bottom: 0.5rem;
}
.footer {
  background-color: var(--color-second);
  color: #eaecf0;
  color: var(--color-white);
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6.4rem;
  padding: 6.4rem 0;
  border-bottom: solid 1px #182230;
}
.footer__content .col-1 {
  width: 39%;
}
.footer__content .col-2 {
  width: 20%;
}
.footer__content .col-3 {
  width: 30%;
}
.footer__bottom {
  padding: 3rem 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}
.footer .widget .widget-title {
  color: var(--color-white);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  padding-left: 1rem;
  position: relative;
}
.footer .widget .widget-title:after {
  content: '';
  width: 0.3rem;
  height: 1.8rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-primary);
}
.footer .widget {
  font-size: 1.5rem;
}
.footer .widget h1,
.footer .widget h2,
.footer .widget h3,
.footer .widget h4,
.footer .widget h5,
.footer .widget h6 {
  color: var(--color-white);
}
/*Page Home*/
.home .banner img {
  width: 100%;
}
section.products .wrap-readmore {
  text-align: center;
  margin-top: 3rem;
}
section.products .wrap-readmore a {
  background-color: var(--color-second);
  color: var(--color-white);
  height: 4.5rem;
  line-height: 4.5rem;
  padding: 0 3rem;
  font-size: 1.4rem;
}
section.products .wrap-readmore a:hover {
  background-color: var(--color-primary);
}
section .title-section {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  margin-bottom: 3rem;
  position: relative;
}
section .title-section:after {
  content: '';
  width: 8rem;
  height: 0.3rem;
  background-color: var(--color-primary);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
section.products .box-taxonomy-products {
  margin: 7rem 0;
}
/*Page Product*/
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
}
.blog__all .row {
  gap: 3rem;
}
.items {
  width: calc(33.33333% - 2rem);
}
.items {
  width: calc(33.33333% - 2rem);
}
.__4_col .items {
  width: calc(25% - 2.25rem);
}
.items figure {
  border-radius: 1.6rem;
  margin-bottom: 2rem;
  overflow: hidden;
  height: 36.8rem;
}
.items figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.blog:not(.products) .items a:hover {
  color: unset;
}
.blog .items h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--color-second);
}
.blog .items .date {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: bold;
  line-height: 1.4285714286;
}
.blog .items .txt {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/*.txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}*/
.products .items figure {
  margin: 0;
  border-radius: 0;
}
.products .items .inner {
  box-shadow: 0px 10px 10px 5px rgba(0, 0, 0, 0.05);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.products .items:hover .inner {
  box-shadow: 0px 10px 10px 5px rgba(0, 0, 0, 0.1);
}
.products .items .product-info {
  text-align: center;
  padding: 3rem;
  background-color: #fff;
}
.products .items h2 {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
}
@media screen and (min-width: 768px) {
  .products .items h2 {
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .products .items h2 a {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
   
  }
}
.products .items .muangay span {
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  font-weight: 700;
  margin-top: 2rem;
}
.products .items .muangay span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: var(--color-second);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.products .items .muangay span:hover:after {
  width: 0;
}
.products .items .price {
  color: var(--color-primary);
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.products .items ul li:before {
  content: '✓';
  margin-right: 5px;
  font-weight: bold;
  color: var(--color-primary);
}
.products .items .note p {
  margin: 0;
}
.__4_col .items figure {
  height: 27rem;
}
.products .__4_col .items h2 {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.4rem;
}
.products .__4_col .items .price {
  font-size: 1.4rem;
}
.products .__4_col .items .note {
  font-size: 1.2rem;
}
.products .__4_col .items .muangay span {
  font-size: 1.2rem;
  margin-top: 1.5rem;
}
.products .__4_col .items .product-info {
  padding: 2.5rem;
}
/* Product Detail */
.detail-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
}
.detail-product .product-image,
.detail-product .product-sumary {
  width: calc(50% - 1.5rem);
}
.row-ct {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
}
.items-ct {
  width: calc(25% - 2.3rem);
}
.detail-product .product-title {
  margin-bottom: 2rem;
  font-size: 2.8rem;
}
.detail-product .note {
  font-weight: normal;
  color: var(--color-primary);
  padding: 5px;
  background: #fff5e8;
  border: 1px dashed;
  margin: 2rem 0;
  font-size: 1.4rem;
}
.detail-product .price {
  color: var(--color-primary);
}
.detail-product .get-a-quote {
  display: inline-block;
  text-align: center;
  padding: 10px;
  width: 100%;
  color: var(--color-white);
  background-color: var(--color-second);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.detail-product-description .title-product-description { 
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-second);
  text-transform: uppercase;
}
.product-image,
.product-gallery,
.product-sumary {
  margin-bottom: 3rem;
}
.product-gallery a {
  height: 21rem;
}
.product-gallery a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.section-related .title-section-related {
  margin-top: 5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-second);
  text-transform: uppercase;
}
/* Sidebar */
.has-sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  flex-flow: row;
  flex-direction: row;
}
#sidebar {
  width: 36rem;
/*  padding-right: 3rem;*/
}
.primary-content {
  max-width: calc(100% - 36rem);
  width: 100%;
}
.has-sidebar .blog__all .items {
  width: calc(50% - 1.5rem);
}
#sidebar .widget_nav_menu .widget-title {
  color: var(--color-white);
  background: var(--color-second);
  padding: 1.3rem 3rem;
  font-size: 1.5rem;
  margin: 0;
}
#sidebar .widget_nav_menu ul li a {
  font-size: 1.4rem;
  font-weight: normal;
  text-transform: uppercase;
  padding: 1.3rem 3rem;
  display: block;
  background-color: #f4f4f4;
  border-top: 1px solid #e4e4e4;
}
.widget_nav_menu ul li a {
  padding: 0.5rem 0;
  display: block;
}
.widget_nav_menu ul li:first-child a {
  padding-top: 0;
}
.widget ul li.current-menu-item a {
  color: var(--color-primary);
  font-weight: bold;
}
.inner-sidebar {
  height: 100%;
}
.wrap-widget {
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
}
/* Pagination */
.newsDetail .textContent .pic.pic01 {
  margin-bottom: 5rem;
}
.newsDetail .textContent img {
    border-radius: 2.4rem;
}
.single-products .newsDetail .textContent img {
  border-radius: 0;
}
.newsDetail .textContent {
  line-height: 1.5;
  font-weight: normal;
  font-size: 1.6rem;
  letter-spacing: 0;
}
.contentnewsDetail p + p {
  margin-top: 1.6rem;
}
.contentnewsDetail ul {
  margin: 1.6rem 0 1.6rem 2rem;
  list-style: disc;
}
.contentnewsDetail ol {
  margin: 1.6rem 0 1.6rem 2rem;
  list-style: decimal;
}
.contentnewsDetail li {
  list-style: inherit;
}
.contentnewsDetail .wp-caption {
  margin-top: 4.8rem;
  margin-bottom: 4.8rem;
  overflow: hidden;
  max-width: 100%;
}
.contentnewsDetail img {
  margin-top: 4.8rem;
  margin-bottom: 4.8rem;
}
.contentnewsDetail .wp-caption img {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-caption .wp-caption-text {
  font-size: .9em;
  font-style: italic;
  padding: .4em;
}
/* Pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 2rem;
  margin-top: 6.4rem;
  border-top: 1px solid #eaecf0;
  position: relative;
  gap: 0.2rem;
}
.pagination > a, 
.pagination > span {
  width: 4rem;
  height: 4rem;
  font-size: 1.4rem;
  border-radius: 0.8rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagination > a.current, 
.pagination > span.current {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.pagination .prev, 
.pagination .next {
  position: absolute;
  top: 2.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  display: block;
  width: inherit;
  height: inherit;
}
.pagination .next {
  right: 0;
  padding-right: 2.6rem;
}
.pagination .prev {
  left: 0;
  padding-left: 2.6rem;
}
.page_title {
  background-color: #f1f1f1;
  background-size: cover;
  border-style: solid;
  padding: 5rem 0;
  text-align: center;
}
.page_title .main-title {
  margin: 0;
}

/* Mobile Menu */
#main-nav-mobi {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  height: 100%;
  z-index: 999999;
  width: 300px;
  max-width: calc(100% - 80px);
  padding-bottom: 50px;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: var(--color-second);
  color: var(--color-white);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#main-nav-mobi.show {
  left: 0;
}
#main-nav-mobi::-webkit-scrollbar-track {
  background-color: #31363d;
}
#main-nav-mobi::-webkit-scrollbar {
  width: 6px;
  background-color: #3377ff;
}
#main-nav-mobi::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #3377ff;
}
.mobi-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999998;
  transition: all ease 0.3s;
}
.mobi-overlay.show {
  opacity: 1;
  visibility: visible;
}
.mobi-overlay .close {
  width: 25px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobi-overlay .close:before,
.mobi-overlay .close:after {
  content: "";
  background-color: var(--color-white);
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
}
.mobi-overlay .close:before {
  -webkit-transform: rotate(-45deg) translate(-8px, -10px);
  transform: rotate(-45deg) translate(-8px, -10px);
}
.mobi-overlay .close:after {
  -webkit-transform: rotate(45deg) translate(-10px, 8px);
    transform: rotate(45deg) translate(-10px, 8px);
}
html.disable-scroll {
  overflow-y: hidden;
}
#main-nav-mobi ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
#main-nav-mobi ul li {
  margin: 0;
  position: relative;
  cursor: pointer;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
#main-nav-mobi ul li a {
  color: var(--color-white);
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  text-decoration: none;
  padding: 0 1.5rem 0 1.5rem;
}
#main-nav-mobi ul>li>a:hover {
  opacity: 0.7;
}
#main-nav-mobi>ul>li li a {
  font-size: 15px;
  padding: 0 2.5rem 0 2.5rem;
}
#main-nav-mobi .menu-item-has-children .arrow {
  cursor: pointer;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 50px;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
#main-nav-mobi .menu-item-has-children .arrow:hover {
  opacity: 0.7;
}
#main-nav-mobi .menu-item-has-children .arrow:before {
  content: "";
  background: url(../img/arrow-down.svg);
  background-size: cover;
  width: 20px;
  height: 20px;
  background-size: cover;
  transform: rotate(-90deg);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
#main-nav-mobi .menu-item-has-children .arrow.active:before {
  transform: rotate(0deg);
}
#main-nav-mobi ul ul {
  background-color: rgba(255, 255, 255, 0.02);
}
/* Mobile Menu Button */
.mobile-button {
  width: 40px;
  height: 40px;
  display: none;
  float: right;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate3d(0, -50%, 0);
  background: transparent;
  cursor: pointer;
  transition: all ease 0.3s;
  display: none;
}
.mobile-button:before,
.mobile-button:after,
.mobile-button span {
  background-color: #47536b;
  transition: all ease 0.3s;
}
.mobile-button:before,
.mobile-button:after {
  content: "";
  position: absolute;
  top: 0;
  height: 2px;
  width: 24px;
  border-radius: 2px;
  right: 0;
  top: 50%;
  transform-origin: 50% 50%;
}
.mobile-button span {
  position: absolute;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  right: 0;
  top: 50%;
  margin-top: -1px;
  overflow: hidden;
  text-indent: 200%;
}
.mobile-button:hover span,
.mobile-button:hover:before,
.mobile-button:hover:after {
  opacity: 0.7;
}
.mobile-button:before {
    transform: translate3d(0, -7px, 0);
}
.mobile-button:after {
  transform: translate3d(0, 5px, 0);
}
.form_search_products {
  display: flex;
  justify-content: left;
  align-items: center;
}
.form_search_products input,
.form_search_products select {
  border-color: var(--color-primary);
  border-right: 0;
  color: var(--color-second);
  font-size: 1.2rem;
}
.form_search_products input {
  font-style: italic;
}
.form_search_products select {
  max-width: 8rem;
}
.form_search_products button {
  padding: 0 1rem;
}
#main-nav-mobi .form_search_products {
  margin: 1rem;
}
.partner {
  padding: 7rem 0;
  background-color: #f1f1f1;
}
.partner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 3.2rem;
}
.partner-list > li {
  width: calc(25% - 2rem);
  text-align: center;
}
.testimonial {
  padding: 7rem 0;
}
.testimonial-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
}
.testimonial-item {
  width: calc(50% - 1.5rem);
}
.testimonial-box {
  text-align: justify;
  padding: 60px 20px 20px 20px;
  width: 100%;
  background-color: var(--color-white);
  box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.05);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  position: relative;
}
.testimonial-box .name {
  margin: 0;
}
.testimonial-box .icon {
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-primary);
  color: var(--color-white);
}
.testimonial-box .icon svg {
  width: 20px;
}
.map {
  display: flex;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .ring-wrap {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 999999;
  }
  .ring {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility .5s;
    display: block;
  }
  .ring-circle {
    width: 100%;
    height: 100%;
    top: 50%;
    right: 50%;
    margin-top: -35px;
    margin-right: -35px;
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    border: 1px solid var(--color-primary);
    -webkit-animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    animation: phonering-alo-circle-anim 1.2s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0.5;
  }
  .ring-circle-fill {
    width: 60px;
    height: 60px;
    top: 50%;
    right: 50%;
    margin-top: -30px;
    margin-right: -30px;
    position: absolute;
    background-color: var(--color-primary);
    border-radius: 100%;
    border: 1px solid transparent;
    -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  .ring-img-circle {
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    top: 50%;
    right: 50%;
    margin-top: -25px;
    margin-right: -25px;
    position: absolute;
    border-radius: 100%;
    border: 1px solid var(--color-primary);
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ring-img-circle .pps-btn-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    color: var(--color-primary);
  }
  .ring-img-circle .pps-btn-img svg {
    width: 30px;
    height: 30px;
    max-width: 30px;
  }
}
@media screen and (max-width: 991px) {
  #main-nav,
  .header__right .ext {
    display: none;
  }
  .mobile-button {
    display: block;
  }
  .header {
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #eee;
    box-shadow: 10px 10px 30px 30px rgba(0, 0, 0, 0.05);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
  body.open {
    overflow: hidden;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  body.open {
    overflow: hidden;
  }
  .topbar { display:none; }
  .main:not(.top) .main__content,
  .footer__content,
  .testimonial,
  .partner {
    padding: 5rem 0;
  }
  section.products .box-taxonomy-products {
    margin: 5rem 0;
  }
  .primary-content,
  #sidebar {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  .has-sidebar .blog__all .items,
  .blog__all .items,
  .items,
  .detail-product .product-image, 
  .detail-product .product-sumary,
  .__4_col .items {
    width: 100%;
  }
  .items figure {
    height: auto;
  }
  .detail-product {
    gap: 0;
  }
  .footer__content {
    gap: 3rem;
  }
  .footer__content .column-container,
  .testimonial-item {
    width: 100%;
  }
  .has-sidebar {
    flex-flow: column-reverse;
    flex-direction: column-reverse;
  }
  .blog .items figure {
    height: auto;
  }
  .topbar ul li {
    text-align: center;
    margin: 0.5rem 0;
  }
  .row-ct {
    gap: 1rem;
  }
  .items-ct {
    width: calc(50% - 0.5rem);
  }
  table {
    font-size: 1.5rem;
    width: 100%;
  }
  .action-box .wrap-box {
    gap: 3rem;
  }
  .action-box {
    padding: 5rem 0;
  }
  .action-box .item-box .icon{
    padding: 0;
    width: 6rem;
  }
  .action-box .item-box .title {
    margin-bottom: 0;
  }
  .action-box .item-box .text {
    width: 100%;
  }
  .partner-list {
    padding: 0; 
    gap: 1rem;   
  }
  .partner-list > li{
    width: calc(100% - 1rem);
  }
  .footer {
    padding-bottom: 50px;
  }
  .ring-wrap {
    position: fixed;
    bottom: 0;
    left: 0px;
    width: 100%;
    z-index: 999999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: var(--color-white);    
  }
  .ring {
    width: 33.33%;
  }
  .ring a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: var(--color-white);
  }
  .ring-img-circle .pps-btn-img svg {
    width: 30px;
    height: 30px;
    max-width: 30px;
  }
  .hotline-phone-ring {
    background-color: var(--color-primary);
  }
  .mess-ring {
    background-color: #2971E6;
  }
  .zalo-ring {
    background-color: #00abd3d8;
  }
}
@keyframes phonering-alo-circle-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.5) skew(1deg);
    -webkit-opacity: 0.1;
  }
  30% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    -webkit-opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    -webkit-opacity: 0.1;
  }
}
@keyframes phonering-alo-circle-fill-anim {
  0% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.6;
  }
  100% {
    -webkit-transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.6;
  }
}
@keyframes phonering-alo-circle-img-anim {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}