@charset "UTF-8";
:root {
  --color-main: #970301;
  --color-hover: #fcb03f;
  --color-text: #333;
  --color-background: #fff;
}

body {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  background: #132033;
  color: white;
}

.max-width,
.wrap-content {
  max-width: 1200px;
  width: calc(100% - 20px);
  margin: 0px auto;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: inline-block;
}
img:not(.initial) {
  transition: opacity 1s;
}
img:not([src]) {
  visibility: hidden;
}
img:is(.loaded, .error) {
  opacity: 1;
}

picture {
  display: inline-block;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}

.social-plugin {
  display: flex;
  margin-top: 10px;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: inline-block;
}

/* hover img */
.scale-img {
  display: block;
  overflow: hidden;
}
.scale-img img {
  transition: all 0.5s;
  transition: 0.3s all;
}
.scale-img picture {
  transition: all 0.5s;
}
.scale-img:hover > img {
  transform: scale(1.1, 1.1);
  transition: 0.3s all;
}
.scale-img:hover > picture {
  transform: scale(1.1, 1.1);
}

/* text split */
.text-split {
  --line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: var(--line-clamp, 3);
}

/* transition */
.transition {
  transition: 0.3s all;
}

/* header */
.header-top {
  background: #132033;
  padding: 12px 0;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  color: #fff;
  font-size: 13px;
}
.item-list-head {
  border-radius: 10px;
  border: 1px solid var(--nhn, #f5b30c);
  padding: 12px 33px;
  text-align: center;
}

.item-list-head span {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Menu */
.fixed__menu {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.fixed__menu .menu {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  padding: 4px 0;
}
.fixed__menu .menu .menu-logo {
  text-align: center;
}
.fixed__menu .menu .menu-logo img {
  max-height: 50px;
}

.menu {
  position: relative;
  z-index: 99;
  background: #f5b30c;
  padding: 5px 0;
}
.menu ul {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.menu ul li {
  position: relative;
  z-index: 99;
}
.menu ul li a {
  display: block;
  position: relative;
  padding: 13px 0;
  text-transform: uppercase;
  z-index: 1;
  color: var(--tiu, #333);
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.menu ul li a.active {
  color: var(--color-main);
}
.menu ul li:hover > a {
  color: var(--color-main);
}
.menu ul li:hover > ul {
  transition: 0.3s all;
  transform: perspective(600px) rotateX(0);
  opacity: 1;
  visibility: visible;
  transition: all 0.7s;
}
.menu ul li ul {
  transition: 0.3s all;
  position: absolute;
  min-width: 250px;
  left: 0;
  background: #fff;
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3);
  transform: perspective(600px) rotateX(-90deg);
  transform-origin: 0 0 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.menu ul li ul li {
  text-align: left;
  border-bottom: 1px solid rgba(173, 173, 173, 0.32);
}
.menu ul li ul li:last-child {
  border-bottom: 0px;
}
.menu ul li ul li a {
  font-size: 14px;
  padding: 10px;
  display: block;
  font-weight: 400;
  text-transform: capitalize;
}
.menu ul li ul li a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-main);
  transition: all 0.3s linear;
  visibility: hidden;
  opacity: 0;
}
.menu ul li ul li a:hover {
  padding-left: 40px;
}
.menu ul li ul li a:hover:before {
  left: 0;
  visibility: visible;
  opacity: 1;
  width: 30px;
}
.menu ul li ul li ul {
  top: 0px;
  left: 100%;
}

/* breadcrumbs */
.breadCrumbs {
  padding: 10px 0px;
  background: #ddd;
}
.breadCrumbs ol {
  margin: 0px;
}
.breadCrumbs ol li a {
  color: #333;
  transition: all 0.3s;
}
.breadCrumbs ol li a:hover {
  color: var(--color-main);
}

/* swiper */
.swiper .swiper-wrapper {
  width: inherit;
  height: inherit;
}

.swiper.swiper-initialized .swiper-wrapper {
  margin: 0;
  width: 100%;
  height: 100%;
}
.swiper.swiper-initialized .swiper-slide {
  padding: 0;
  margin: 0px;
  overflow: hidden;
}

.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-size: 40px;
  --swiper-navigation-color: #fff;
  --swiper-background-color: var(--color-main);
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  background: var(--swiper-background-color);
  transition: 0.3s ease-out;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  --swiper-navigation-size: 18px;
  color: var(--swiper-navigation-color);
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  --swiper-background-color: var(--color-hover);
}

/* search */
/* Search */
.search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 49px;
  width: 400px;
  height: 50px;
  border-radius: 30px;
  border: 1px solid var(--nhn, #f5b30c);
  background: rgba(255, 255, 255, 0.5);
}
.search button {
  background: #f5b30c;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #132033;
  font-size: 17px;
  margin: 4px;
}
/* Search res */
.search-res {
  position: relative;
}
.search-res .icon-search {
  cursor: pointer;
  width: 30px;
  height: 30px;
  margin: 0px;
  background: var(--color-main);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: #fff;
}
.search-res .icon-search.active {
  color: #fff;
  background: var(--color-main);
  border-radius: 50%;
}
.search-res .search-grid {
  position: absolute;
  top: 50px;
  right: 0px;
  width: 0px;
  height: 40px;
  background: #ffffff;
  border: 1px solid var(--color-main);
  border-radius: 25px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  opacity: 0;
  z-index: 2;
}
.search-res .search-grid button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  margin: 0px;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--color-main);
}
.search-res .search-grid input {
  font-size: 13px;
  width: 100%;
  height: 38px;
  padding-left: 15px;
  outline: none;
  border: none;
  box-shadow: none;
}

/* box search */
.box-search {
  padding: 10px;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box-search .price-product {
  width: 100%;
  margin: 0px;
  text-align: left;
}
.box-search .price-product .price-new {
  color: #f00;
  font-size: 14px;
  font-weight: bold;
}
.box-search .price-product .price-old {
  color: #999;
  text-decoration-line: line-through;
}

.ds-item-search {
  width: calc(100% - 70px);
}
.ds-item-search a {
  font-size: 14px;
  color: #333;
}

.show-search {
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* mmenu */
.header-mobile {
  display: none;
}

.header-mobile .wrap-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow: scroll;
}
.offcanvas-body::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.offcanvas-body::-webkit-scrollbar-thumb {
  background: var(--color-main);
  border-radius: 5px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.offcanvas-body::-webkit-scrollbar-track {
  background: #fff;
  width: 4px;
  height: 4px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.btn-close-menu {
  position: absolute;
  right: 20px;
  top: 20px;
}

.menu-mobile-logo {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.menu-mobile-logo img {
  max-width: 80px;
}

.menu-mobile-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-mobile-content ul li {
  position: relative;
}
.menu-mobile-content ul li a {
  position: relative;
  display: block;
  padding-right: 30px;
  color: #333;
  font-size: 15px;
  padding: 10px 0px;
  border-bottom: 1px solid #f1f1f1;
}
.menu-mobile-content ul li a i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #fff;
  background: var(--color-main);
  border-radius: 5px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  z-index: 1;
}
.menu-mobile-content ul li:hover > a {
  color: var(--color-main);
}
.menu-mobile-content ul li ul {
  padding-left: 10px;
}
.menu-mobile-content ul li ul li a {
  font-size: 14px;
}
.menu-mobile-content ul li ul li a i {
  font-size: 17px;
  background: transparent;
  color: #333;
}

.menu-mobile-company {
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
}
.menu-mobile-company p {
  color: #333;
  font-size: 13px;
  margin-bottom: 8px;
}

.search-menu {
  width: 100%;
  position: relative;
  margin: 10px 0px;
}
.search-menu input {
  width: 100%;
  background: #f5f5fa;
  border: 1px solid #f1f1f1;
  height: 40px !important;
  font-size: 13px;
}
.search-menu p {
  position: absolute;
  right: 10px;
  bottom: 8px;
}

#menu {
  display: none;
}

#hamburger {
  width: 35px;
  height: 23px;
  position: relative;
  cursor: pointer;
}
#hamburger:before {
  content: "";
  background: white;
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
  top: 0px;
  transition: none 0.5s ease 0.5s;
  transition-property: transform, top, bottom, left, opacity;
}
#hamburger:after {
  background: white;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
  top: 20px;
  transition: none 0.5s ease 0.5s;
  transition-property: transform, top, bottom, left, opacity;
}
#hamburger span {
  background: white;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0px;
  top: 10px;
  transition: none 0.5s ease 0.5s;
  transition-property: transform, top, bottom, left, opacity;
}

.mm-wrapper_opening #hamburger:before {
  top: 10px;
  transform: rotate(45deg);
}
.mm-wrapper_opening #hamburger:after {
  top: 10px;
  transform: rotate(-45deg);
}
.mm-wrapper_opening #hamburger span {
  left: -50px;
  opacity: 0;
}

.mm-menu_opened {
  display: block !important;
}

.mm-slideout {
  z-index: unset;
}

/* general */
.title-detail {
  position: relative;
  margin-bottom: 1.5rem;
  text-align: left;
}
.title-detail h1 {
  text-transform: uppercase;
  margin-bottom: 0;
  color: #f5b30c;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal; /* 50% */
  font-family: "Bai Jamjuree";
}

.title-main {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}
.title-main h2 {
  color: var(--nhn, #f5b30c);
  text-align: center;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal; /* 50% */
  margin: 5px 0;
}
.title-main p {
  color: #000;
  font-size: 15px;
  margin-bottom: 0;
}

/* about */
.section-about-v2 {
  background: url(../images/main/bggt.png) center center/cover;
}
.about-content {
  color: white;
}

.about-slogan {
  color: var(--trng, #fff);
  font-family: "Bai Jamjuree";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  padding: 0 50px;
  display: inline-block;
  position: relative;
  margin-bottom: 0;
}

.about-slogan::before {
  content: "";
  position: absolute;
  width: 43px;
  height: 1px;
  background: #f5b30c;
  left: 0;
  bottom: 15px;
}
.about-slogan::after {
  content: "";
  position: absolute;
  width: 43px;
  height: 1px;
  background: #f5b30c;
  right: 0;
  bottom: 15px;
}
.about-title h2 {
  color: var(--nhn, #f5b30c);
  font-family: Montserrat;
  font-size: 41px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
}

.about-desc {
  color: var(--trng, #fff);
  text-align: justify;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.about-view {
  width: 211.15px;
  height: 49.27px;
  display: inline-block;
  border: 1px solid #f5b30c;
  border-radius: 30px;
  color: var(--trng, #fff);
  text-align: center;
  font-family: "Bai Jamjuree";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
  text-transform: uppercase;
  margin-top: 10px;
  position: relative;
}

.criteria {
  width: 450px;
  margin: 0 auto;
  margin-top: 40px;
}

.criteria-item {
  text-align: center;
}

.criteria-item-name {
  color: #fff;
  text-align: center;
  font-family: "Bai Jamjuree";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
}

.about-view::after {
  content: "";
  position: absolute;
  width: 83.92px;
  height: 12.12px;
  background: radial-gradient(
    50% 50.03% at 50% 50.04%,
    #a8a8a8 0%,
    #898989 9.27%,
    #5f5f5f 23.49%,
    #3d3d3d 38.05%,
    #222 52.78%,
    #0f0f0f 67.76%,
    #040404 83.13%,
    #000 99.5%
  );
  mix-blend-mode: screen;
  top: -6px;
  left: 0;
}
.about-view::before {
  content: "";
  position: absolute;
  width: 83.92px;
  height: 12.12px;
  background: radial-gradient(
    50% 50.03% at 50% 50.04%,
    #a8a8a8 0%,
    #898989 9.27%,
    #5f5f5f 23.49%,
    #3d3d3d 38.05%,
    #222 52.78%,
    #0f0f0f 67.76%,
    #040404 83.13%,
    #000 99.5%
  );
  mix-blend-mode: screen;
  bottom: -6px;
  right: 20px;
}
.baogia-item a {
  border-radius: 7px;
  border: 3px solid var(--nhn, #f5b30c);
  padding: 20px;
}
.baogia-item-name {
  color: #fff;
  font-family: "Bai Jamjuree";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.deco-start::after {
  content: "";
  position: absolute;
  width: 116px;
  height: 16px;
  background: url(../images/main/star.png) center center/cover;
  bottom: -8px;
  left: 0;
}
.deco-start::before {
  content: "";
  position: absolute;
  width: 116px;
  height: 16px;
  background: url(../images/main/star.png) center center/cover;
  top: -8px;
  right: 0;
}
.photo-slogan {
  color: #132033;
  font-family: Corinthia;
  font-size: 66px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 30px 60px 20px 30px;
  background: #f5b30c;
  display: inline-block;
  margin-top: -85px;
  position: relative;
  z-index: 2;
  margin-right: -44px;
}
.we-slogan {
  text-align: center;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--nhn, #f5b30c);
  font-family: Montserrat;
  font-size: 104px;
  font-style: normal;
  font-weight: 900;
  line-height: 50px;
  color: #ffffff00;
  position: absolute;
  top: 8px;
  writing-mode: tb;
  transform: rotate(180deg);
  left: -30px;
}

.about-photo {
  position: relative;
  text-align: end;
}

.about-photo a {
  position: relative;
  z-index: 1;
}
/*v2*/
.section-banner-v2 {
  background: url(../images/main/d1.png) calc((100% - 900px) / 2) top/auto,
    url(../images/main/bgda.png) right bottom/auto;
  background-color: #132033;
  background-repeat: no-repeat;
}
.title-v2 p {
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.title-v2 h2 {
  color: var(--nhn, #f5b30c);
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.title-v2 {
  margin-bottom: 30px;
}
.cols-banner img {
  border: 1px solid #f5b30c;
  border-radius: 10px;
}

.item-dauan {
  border: 1.5px solid #f5b30c;
  padding: 30px;
}

.item-dauan-desc {
  color: #fff;
  font-family: "Bai Jamjuree";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
  margin-bottom: 0;
}

.item-kinhnghiem {
  padding: 15px;
  border: 1.5px solid #f5b30c;
}

.count span {
  color: var(--nhn, #f5b30c);
  text-align: center;
  font-family: Montserrat;
  font-size: 26px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

p.item-kinhnghiem-title {
  color: #fff;
  font-family: "Bai Jamjuree";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.item-kinhnghiem-desc {
  color: #fff;
  text-align: center;
  font-family: "Bai Jamjuree";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.cols-dauan {
  transform: perspective(600px) rotateY(-3deg);
}
/* dich vu */
.section-dvlist {
  background: url(../images/main/bgdv.png) repeat;
}
.title-main p {
  color: #fff;
  text-align: center;
  font-family: "Bai Jamjuree";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.service-photo {
  border: 1px solid var(--nhn, #f5b30c);
  padding: 6px;
}
.service-name {
  margin: 10px 0;
  color: var(--trng, #fff);
  text-align: center;
  font-family: "Bai Jamjuree";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.service-desc {
  color: #fff;
  text-align: center;
  font-family: "Bai Jamjuree";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
/* tu van */
.section-tuvan {
  background: #132033;
}
.tuvan-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0px 0px 10px 10px;
  background: #a3a4a7;
  padding: 17px;
  opacity: 0;
}

.tuvan-item a {
  border-radius: 10px;
  overflow: hidden;
}

.tuvan-name {
  color: var(--tiu, #333);
  text-align: center;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
}

.tuvan-desc {
  color: var(--tiu, #333);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.tuvan-item:hover .tuvan-item-content {
  opacity: 1;
  transition: 0.3s;
}
/*mau thiet ke*/
.section-mtk {
  background: url(../images/main/d1.png) calc((100% - -1200px) / 2) top/auto
    no-repeat;
  background-color: #132033;
}
.title-mtk-list {
  background: url(../images/main/bgdv.png) repeat;
  border-top: 1px solid #f5b30c;
  position: relative;
  z-index: 2;
}

.title-mtk-list h2 {
  color: #fff;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.mtk-list-view {
  color: var(--nhn, #f5b30c);
  text-align: right;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
}
.mtk-list-item-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #132033 0%, rgba(19, 32, 51, 0) 50%);
  top: 0;
  display: flex;
  align-items: flex-end;
  padding: 17px 20px;
}
.mtk-list-item-name span {
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.box-mtk:hover .mtk-list-item-name {
  opacity: 1;
  transition: 0.3s;
}
.slogan-mtk p {
  color: #fff;
  text-align: right;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.slogan-mtk h2 {
  color: var(--nhn, #f5b30c);
  text-align: right;
  font-family: Montserrat;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.wrap-mtk-list:nth-child(2) .title-mtk-list {
  width: 70%;
}
.slogan-mtk {
  margin-bottom: -36px;
}
/* khach hang */
.section-khachhang {
  background: url(../images/main/bgkh.png) repeat;
}
.item-khachhang {
  border-radius: 10px;
  border: 1.5px solid var(--nhn, #f5b30c);
  position: relative;
}
.item-khachhang-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/main/khdeco.png) no-repeat center bottom;
  top: 0;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.item-khachhang-photo {
  border-radius: 10px;
  overflow: hidden;
}
.item-khachhang-content {
  color: var(--nhn, #f5b30c);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.item-khachhang-name {
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.item-khachhang-desc {
  color: #fff;
  text-align: justify;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.video-item svg {
  position: absolute;
  left: calc((100% - 90px) / 2);
  top: calc((100% - 90px) / 2);
  transform: scale(0.5);
}

.video-item {
  position: relative;
}
/* tin tuc home */
.news-home-name a {
  color: var(--trng, #fff);
  text-align: justify;
  font-family: "Bai Jamjuree";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}

.news-home-date {
  color: var(--nhn, #f5b30c);
  text-align: justify;
  font-family: "Bai Jamjuree";
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  line-height: 22px;
}

.news-home-desc {
  color: var(--trng, #fff);
  font-family: "Bai Jamjuree";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.news-home-view {
  display: inline-flex;
  padding: 0px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  background: var(--nhn, #f5b30c);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
}
.footer-title {
  color: #fff;
  font-family: "Bai Jamjuree";
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 39px;
  text-transform: uppercase;
}
.copyright {
  color: var(--tiu, #333);
  font-family: "Bai Jamjuree";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
}

.statistic {
  color: var(--tiu, #333);
  font-family: "Bai Jamjuree";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.footer-powered::after {
  content: "";
  position: absolute;
  background: url(../images/main/decof1.png) no-repeat;
  width: 56px;
  height: 56px;
  left: 0;
  right: 0;
  top: -18px;
  margin: auto;
}
.modal-croll-left {
  position: fixed;
  left: 20px;
  top: 30%;
  z-index: 1;
}

.btn-modal {
  border: 1px solid var(--nhn, #f5b30c);
  background: var(--nn, #132033);
  padding: 10px;
  margin-bottom: 10px;
}

.btn-modal span {
  color: var(--nhn, #f5b30c);
  text-align: center;
  font-family: "Bai Jamjuree";
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  transform: rotate(180deg);
  margin-bottom: 5px;
  writing-mode: tb;
  display: block;
}
.google-map {
  border-radius: 10px;
  border: 1px solid #f5b30c;
  display: inline-flex;
  padding: 8px 15px;
  margin-top: 15px;
}

.footer-ul li {
  position: relative;
  padding-left: 14px;
}

.footer-ul li::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ecb800;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.meta-toc {
  color: black;
}
.contact-input label {
  color: black;
}
/*end1*/
/* product list */
.section-product-list .product-list-title {
  background: var(--color-main);
  border-radius: 30px;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  box-shadow: 4px 4px #fcb03f;
}
.section-product-list .product-list-title h2 {
  position: relative;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

.section-product-list .product-list-item a {
  border-radius: 10px;
}
.section-product-list .swiper-button-prev,
.section-product-list .swiper-button-next {
  --swiper-navigation-sides-offset: -60px;
  background: transparent;
  box-shadow: none;
  width: 40px;
  height: 19px;
}
.section-product-list .swiper-button-prev::after,
.section-product-list .swiper-button-next::after {
  display: none;
}

/* product */
.section-product {
  position: relative;
}
.section-product::before {
  content: "";
  position: absolute;
  background: #fff;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.section-product.even .product-title {
  background: #fff8ee;
}
.section-product .product-title {
  background: #fff;
  border-radius: 30px;
  padding: 6px;
  padding-right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 24px;
  box-shadow: 4px 4px var(--color-main);
}
.section-product .product-title h2 {
  position: relative;
  color: #970301;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}
.section-product .product-title p {
  margin-bottom: 0;
}
.section-product .product-title a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #970301;
  font-weight: 600;
  transition: all 0.3s;
}
.section-product .product-title a:hover {
  color: var(--color-hover);
}
.section-product .swiper-button-prev,
.section-product .swiper-button-next {
  --swiper-navigation-sides-offset: -60px;
  background: transparent;
  box-shadow: none;
  width: 40px;
  height: 19px;
}
.section-product .swiper-button-prev::after,
.section-product .swiper-button-next::after {
  display: none;
}

.product-item {
  position: relative;
  border-radius: 10px;
  background: #fff8ee;
  padding: 10px 10px 35px;
  text-align: center;
  margin-bottom: 20px;
}
.product-photo {
  margin-bottom: 20px;
}
.product-photo a {
  border-radius: 10px;
}
.product-name {
  color: #970301;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  transition: all 0.3s;
}
.product-name:hover {
  color: var(--color-hover);
}
.product-action {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
}
.product-action a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0px 3px 0px 0px #970301;
  width: 120px;
  height: 40px;
  color: #970301;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s;
}
.product-action a.product-view {
  background: #970301;
  color: #fff;
  box-shadow: 0px 3px 0px 0px #460201;
}
.product-action a:hover {
  color: var(--color-hover);
}

/* newsletter */
.section-newsletter {
  position: relative;
  padding: 90px 0 210px;
}

.section-newsletter .footer-map {
  height: 385px;
}

.newsletter-info-title {
  text-align: center;
  margin-bottom: 1rem;
}

.newsletter-info-desc {
  color: #333;
  font-size: 15px;
  line-height: 24px;
  text-transform: capitalize;
  margin-bottom: 0.75rem;
}

.newsletter-title {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
.newsletter-title h2 {
  position: absolute;
  width: 100%;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  color: #970301;
  font-size: 34px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
}
.newsletter-title h2::before {
  content: attr(data-text);
  position: absolute;
  -webkit-text-stroke-width: 15px;
  -webkit-text-stroke-color: #fff;
  inset: 0;
  z-index: -1;
}
.newsletter-title p {
  width: 100%;
  max-width: 442px;
  height: 108px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-top: 25px;
}

.newsletter-form .newsletter-input {
  position: relative;
  margin-bottom: 10px;
}
.newsletter-form .newsletter-input input.form-control {
  background: #fff;
  height: 40px;
}
.newsletter-form .newsletter-input textarea.form-control {
  height: 100px;
}
.newsletter-form .newsletter-button {
  text-align: center;
}
.newsletter-form .newsletter-button button {
  position: relative;
  background: #970301;
  padding: 6px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  color: var(--nhn, #f5b30c);
  text-align: center;
  font-family: "Bai Jamjuree";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  /* 384.615% */
  border-radius: 5px;
}

.newsletter-form .newsletter-button button:hover {
  color: var(--color-hover);
  box-shadow: 0 0 10px var(--color-hover);
}

.newsletter-cols:nth-child(2) {
  position: relative;
}

.newsletter-form-content {
  width: 100%;
  max-width: 478px;
  padding: 50px 35px 60px 25px;
}

/* news */
.section-news {
  position: relative;
  background: #132033;
}

.news-item {
  display: block;
}
.news-photo {
  margin-bottom: 1rem;
}
.news-photo .scale-img {
  border-radius: 10px;
}
.news-name {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
  font-family: "Bai Jamjuree";
}
.news-name:hover {
  color: var(--color-hover);
}
.news-desc {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 1rem;
}

/* video */
.video-item {
  display: block;
}
.video-photo {
  position: relative;
  border-radius: 10px;
  z-index: 2;
}
.video-photo::before {
  content: "";
  position: absolute;
  background: url(../images/play-video.png) no-repeat center center;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.video-info {
  text-align: center;
  margin-top: 10px;
}
.video-info h3 {
  color: #333;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
  transition: all 0.3s;
}
.video-info h3:hover {
  color: var(--color-main);
}

.video-bottom.swiper-slide-thumb-active .video-photo::before {
  display: none;
}
.video-bottom .video-item {
  display: block;
}
.video-bottom .video-photo {
  position: relative;
  border-radius: 10px;
  z-index: 2;
}
.video-bottom .video-photo::before {
  content: "";
  position: absolute;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.video-bottom .video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.video-bottom .video-info {
  text-align: center;
  margin-top: 10px;
}
.video-bottom .video-info h3 {
  color: #333;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0;
  transition: all 0.3s;
}
.video-bottom .video-info h3:hover {
  color: var(--color-main);
}

/* partner */
.section-partner {
  background: #fffdf3;
}

.partner-item {
  display: block;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #fff;
}

/* share */
.share {
  padding: 17px 10px 10px 10px;
  line-height: normal;
  background: rgba(128, 128, 128, 0.15);
  margin-top: 15px;
  border-radius: 5px;
}
.share b {
  display: block;
  margin-bottom: 5px;
}

.othernews b {
  margin-bottom: 10px;
}

.list-news-other {
  padding-left: 17px;
  list-style: square;
}
.list-news-other li {
  margin-bottom: 2px;
}
.list-news-other li a {
  text-transform: none;
  color: #333333;
}
.list-news-other li a:hover {
  color: #fed402;
}

/* toc */
.box-readmore {
  padding: 8px 15px;
  border: 1px solid #dedede;
  margin-bottom: 2rem;
  border-radius: 5px;
  background-color: #eeeeee;
}
.box-readmore li ul > li {
  margin: 0;
  margin-bottom: 8px;
}
.box-readmore li ul > li:before {
  content: counters(item, ".") " ";
}
.box-readmore ul {
  list-style-type: none;
  counter-reset: item;
  margin-bottom: 0px;
  padding-left: 0px !important;
  margin-top: 8px;
  display: none;
}
.box-readmore ul li {
  display: table;
  counter-increment: item;
  margin-bottom: 5px;
}
.box-readmore ul li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 5px;
}
.box-readmore ul li a {
  color: #333333;
  cursor: pointer;
  font-weight: 600;
}
.box-readmore ul li a:hover {
  color: #767676;
}

.tt-toc {
  position: relative;
  font-size: 18px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* footer */
.footer-tags {
  position: relative;
  padding: 50px 0;
}

.flex-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.flex-tags a {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
}
.flex-tags a:hover {
  color: var(--color-hover);
}

.footer-article {
  position: relative;
  color: #fff;
  font-size: 15px;
  background: url(../images/main/bgf.png) no-repeat center center/cover;
}
.footer-article .footer-bottom {
  padding: 50px 0;
}

.footer-article .footer-name {
  color: var(--nhn, #f5b30c);
  font-family: Montserrat;
  font-size: 29px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.footer-article .footer-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 0;
}
.footer-article .footer-ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-article .footer-ul li a {
  color: #fff;
  font-family: "Bai Jamjuree";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.3s ease;
}
.footer-article .footer-ul li a:hover {
  color: var(--color-hover);
}

.footer-fanpage {
  border-radius: 20px;
  overflow: hidden;
}

.footer-map {
  position: relative;
  width: 100%;
  height: 260px;
}
.footer-map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

.footer-powered {
  padding: 10px 0;
  background: url(../images/main/bgf1.png) no-repeat center top/cover;
  color: #333;
  background-color: #0d1726;
  position: relative;
}

.copyright span {
  text-transform: uppercase;
}

.statistic span {
  position: relative;
  padding: 0px 5px;
}

/* video select */
.video-main {
  position: relative;
}

.list-video {
  margin-top: 10px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.img-video span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  border: 1px solid rgba(255, 0, 0, 0.4);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f00;
  background: rgba(255, 255, 255, 0.6588235294);
  font-size: 27px;
  cursor: pointer;
  transition: all 1s;
}

.item-video:hover span {
  transform: translateX(-50%) translateY(-50%) rotate(360deg);
}
.item-video h3 {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
}

/* Catagory */
.category {
  position: sticky;
  top: 70px;
}

.category-title {
  background: var(--color-main);
  padding: 10px 15px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  display: grid;
  place-items: center;
}

.category-list {
  background: #fff;
  box-shadow: 0 0 10px 0 #e0e0e0;
  border: 1px solid #e0e0e0;
  border-top: 0;
}
.category-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 10px;
}
.category-list ul.category-list-ul {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 500px;
}
.category-list ul.category-list-ul::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.category-list ul.category-list-ul::-webkit-scrollbar-thumb {
  background: var(--color-main);
  border-radius: 5px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.category-list ul.category-list-ul::-webkit-scrollbar-track {
  background: #fff;
  width: 4px;
  height: 4px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.category-list ul li {
  position: relative;
  padding: 10px 0;
}
.category-list ul li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.category-list ul li a {
  position: relative;
  display: block;
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.category-list ul li a i {
  position: absolute;
  background: var(--color-main);
  border-radius: 5px;
  width: 25px;
  height: 25px;
  top: calc(50% - 12px);
  right: 0;
  display: grid;
  place-items: center;
  color: #fff;
}
.category-list ul li a i:hover {
  color: var(--color-hover);
}
.category-list ul li a:hover,
.category-list ul li a.active {
  color: var(--color-main);
}
.category-list ul li ul {
  display: none;
  padding: 0;
  padding-left: 10px;
}
.category-list ul li ul li a {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

/* sort select */
.sort-select {
  display: flex;
  justify-content: end;
  margin: 20px 0px;
  position: relative;
}
.sort-select .click-sort {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  padding: 6px 10px 6px 8px;
  margin: 0px;
}
.sort-select .sort-show {
  padding-right: 12px;
  position: relative;
}
.sort-select .sort-show::before {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #333;
  content: "";
  height: 0;
  position: absolute;
  top: 6px;
  right: 0;
  width: 0;
}

.sort-select-main {
  display: grid;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  padding: 0 7px;
  top: 30px;
  right: 0;
  width: 160px;
  z-index: 2;
}
.sort-select-main p {
  border-bottom: 1px solid #f1f1f1;
  margin: 0px;
  order: 2;
}
.sort-select-main p:has(.check) {
  order: 1;
}

.sort a {
  color: #000;
  font-size: 14px;
  line-height: 17px;
  padding: 11px 3px;
  display: block;
  cursor: pointer;
}
.sort a.check i {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  transform: scale(var(--ggs, 1));
  width: 22px;
  height: 16px;
  border: 2px solid transparent;
  border-radius: 100px;
  vertical-align: middle;
}
.sort a.check i::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 3px;
  top: -4px;
  width: 6px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
}

/* filter */
.filter {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 5px 10px;
  background: #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #ddd;
  display: none;
}

.flex-product-main {
  display: flex;
  gap: 20px;
}
.flex-product-main .left-product {
  width: 250px;
  border: 1px solid #f1f1f1;
  padding: 20px;
  border-radius: 5px;
}
.flex-product-main .right-product {
  width: calc(100% - 250px);
}

/* product */
.product {
  display: block;
  position: relative;
  background: #fff;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
  border: 1px solid #f1f1f1;
}
.product .pic-product {
  background: #fff;
  margin-bottom: 10px;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  border: solid 1px transparent;
}
.product .pic-product img {
  width: 100%;
  -webkit-transform-style: preserve-3d;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
}
.product .pic-product > a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
}
.product:hover .pic-product {
  border: solid 1px #ccc;
}
.product:hover .first_img {
  transform: scale(0);
}
.product:hover .second_img {
  right: 0;
  top: 0;
  transition: all 0.5s ease;
}
.product .name-product {
  margin-bottom: 5px;
  font-weight: normal;
}
.product .name-product a {
  font-size: 15px;
  color: #232323;
  font-weight: 500;
}
.product .name-product a:hover {
  color: #ff2e00;
}
.product .name-product .text-split {
  -webkit-line-clamp: 2;
}
.product .price-product {
  margin-bottom: 10px;
  color: #555;
}
.product .price-new {
  font-size: 16px;
  font-weight: 500;
  color: #ff2e00;
  display: inline-block;
  text-transform: uppercase;
}
.product .price-old {
  padding: 0 10px;
  font-size: 14px;
  text-decoration: line-through;
  display: block;
  color: #ff2e00;
  text-transform: uppercase;
}
.product .price-per {
  color: #ff2e00;
  font-size: 13px;
  text-align: center;
  font-weight: 700;
}

/* cart product */
.cart-product {
  margin: 5px 0 0 0px;
}
.cart-product span {
  cursor: pointer;
  color: #fff;
  text-align: center;
  padding: 0px 5px;
  border-radius: 5px;
  display: inline-block;
  line-height: 34px;
  font-size: 13px;
  font-weight: 700;
}

.cart-add {
  margin-left: 10px;
  background-color: #00a5d9;
  width: 155px;
}
.cart-add:hover {
  background-color: #fed402;
}

.cart-buy {
  background-color: #ff2e00;
  width: 93px;
  height: 33px;
}
.cart-buy:hover {
  background-color: #fed402;
}

/* detail product */
.detail-product {
  display: flex;
  justify-content: space-between;
}
.detail-product .left-pro-detail {
  width: 40%;
  border: 1px solid #ddd;
}
.detail-product .right-pro-detail {
  width: 57%;
}
.detail-product .right-pro-detail ul {
  list-style: none;
  padding: 0px;
}
.detail-product .right-pro-detail ul li {
  margin-bottom: 20px;
}
.detail-product .right-pro-detail ul li .title-pro-detail {
  font-size: 18px;
}
.detail-product .right-pro-detail ul li .attr-content-pro-detail {
  display: inline-block;
  margin-bottom: 0px;
}
.detail-product
  .right-pro-detail
  ul
  li
  .attr-content-pro-detail
  .price-new-pro-detail {
  font-weight: 700;
  font-size: 20px;
  color: #f00;
}

.tabs-pro-detail .tab-content {
  border: 1px solid #ddd;
  border-top: none;
  padding: 20px;
}

.nav-tabs li a {
  text-transform: uppercase;
  font-weight: 500;
  color: #333;
}
.nav-tabs .nav-item.show .nav-link {
  color: #f00;
}
.nav-tabs .nav-link.active {
  color: #f00;
}
.nav-tabs .nav-link:hover {
  color: #f00;
}

/* ul actions */
.ul-actions {
  display: flex;
  justify-content: center;
  margin: 20px;
  gap: 15px;
  align-items: flex-start;
}
.ul-actions li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 80px;
  text-align: center;
}
.ul-actions > div {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 80px;
  text-align: center;
}
.ul-actions .active .box__tabr {
  border-color: #fd6e1d;
}
.ul-actions .box__tabr {
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  min-height: 55px;
  padding: 4px;
  height: 60px;
  width: 80px;
}
.ul-actions .box__tabr:hover {
  border-color: #fd6e1d;
}
.ul-actions p {
  font-size: 14px;
  line-height: 1.3;
  margin-top: 5px;
  white-space: normal;
  color: #000;
}

.icon-action {
  background-image: url("../images/icon_chitiet@2x-min.png");
  background-repeat: no-repeat;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  vertical-align: middle;
  background-size: 300px 180px;
}

.icon-dnb {
  background-position: 0 0;
  height: 28px;
  width: 28px;
}

.icon-tskt {
  background-position: -105px 0;
  height: 30px;
  width: 30px;
}

.icon-ttsp {
  background-position: -140px 0;
  height: 19px;
  width: 23px;
}

.modal-detail {
  position: fixed;
  z-index: 999;
  background: rgba(0, 0, 0, 0.768627451);
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.modal-detail::-webkit-scrollbar {
  width: 10px;
}
.modal-detail::-webkit-scrollbar-thumb {
  width: 10px;
  background: #4d90e0;
  border-radius: 10px;
  height: 50px;
}

.content-modal-detail {
  background: #fff;
  max-width: 1200px;
  margin: 0px auto;
  min-height: 100vh;
}
.content-modal-detail .tabs {
  display: flex;
  cursor: pointer;
  padding: 0;
  list-style: none;
  justify-content: center;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0px;
  background: #fff;
  z-index: 99;
}
.content-modal-detail .tabs li {
  padding: 20px 20px;
  margin-right: 5px;
  font-weight: bold;
  position: relative;
  border-bottom: 4px solid #fff;
}
.content-modal-detail .tabs li.active {
  color: #2d9cdb;
  border-bottom: 4px solid #2d9cdb;
}
.content-modal-detail .tab-content {
  padding: 20px;
  max-width: 900px;
  margin: 0px auto;
}
.content-modal-detail .tab-content.active {
  display: block;
}

.close-tab {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 10;
}

.btn-closemenu {
  position: fixed;
  top: 10px;
  right: 20px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  color: #333;
  cursor: pointer;
  line-height: 21px;
  padding: 7px;
  text-align: right;
  width: 72px;
}
.btn-closemenu::before {
  transform: rotate(45deg);
  background-color: #333;
  content: "";
  left: 13px;
  height: 14px;
  position: absolute;
  top: 10px;
  width: 1px;
}
.btn-closemenu::after {
  transform: rotate(-45deg);
  background-color: #333;
  content: "";
  left: 13px;
  height: 14px;
  position: absolute;
  top: 10px;
  width: 1px;
}

.cursor-pointer {
  cursor: pointer;
}

/* contact */
.contact-map {
  position: relative;
  height: 500px;
  margin-top: 30px;
}
.contact-map iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.frm_contact {
  border: 1px solid #ddd;
  padding: 30px;
}

.paging-product {
  position: relative;
}

/* pagination */
.pagination {
  margin-top: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pagination-ajax {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.pagination-ajax .page-item .page-link {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-size: 14px !important;
  line-height: 1;
  font-weight: 600;
  border: 1px solid #ababab;
  border-radius: 50% !important;
  color: #333;
  background: rgb(255, 255, 255);
  transition: all 0.3s ease;
}
.pagination-ajax .page-item .page-link:hover {
  color: #333;
  background: var(--color-main);
  border-color: var(--color-main);
}
.pagination-ajax .page-item.active .page-link {
  color: #333;
  background: var(--color-main);
  border-color: var(--color-main);
}
.pagination-ajax .page-item.disabled .page-link {
  pointer-events: none;
}
.pagination-ajax .page-item:first-child .page-link,
.pagination-ajax .page-item:last-child .page-link {
  font-size: 0 !important;
}
.pagination-ajax .page-item:first-child .page-link::before,
.pagination-ajax .page-item:last-child .page-link::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 14px;
}
.pagination-ajax .page-item:first-child .page-link::before {
  content: "\f053";
}
.pagination-ajax .page-item:last-child .page-link::before {
  content: "\f054";
}

/* product */
.grid-properties {
  display: flex;
  gap: 10px;
}
.grid-properties span {
  position: relative;
  border: 1px solid #ddd;
  padding: 5px 15px;
  cursor: pointer;
}
.grid-properties span:hover {
  border: 1px solid #f00;
  color: #f00;
}
.grid-properties span:hover:after {
  content: "";
  border: 0.9375rem solid transparent;
  border-bottom: 0.9375rem solid var(#d0011b, #ee4d2d);
  bottom: 0;
  position: absolute;
  right: -0.9375rem;
}
.grid-properties span.active {
  border: 1px solid #f00;
  color: #f00;
}
.grid-properties span.active:after {
  content: "";
  border: 0.9375rem solid transparent;
  border-bottom: 0.9375rem solid var(#d0011b, #ee4d2d);
  bottom: 0;
  position: absolute;
  right: -0.9375rem;
}
.grid-properties span.outstock {
  pointer-events: none;
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.26);
  cursor: not-allowed;
}

/* scrollToTop */
.scrollToTop {
  cursor: pointer;
  width: 41px;
  height: 41px;
  text-align: center;
  font-weight: bold;
  color: #444;
  text-decoration: none;
  position: fixed;
  bottom: 65px;
  right: 25px;
  display: none;
  z-index: 100;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
  visibility: hidden !important;
  overflow: hidden;
}

/* Hvr Float Shadow */
.hvr-float-shadow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 0 1px transparent;
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-float-shadow:before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 5%;
  z-index: -1;
  width: 90%;
  height: 10px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.35) 0,
    transparent 80%
  );
  transition-property: transform, opacity;
  transition-duration: 0.3s;
  pointer-events: none;
}
.hvr-float-shadow:active {
  transform: translateY(-5px);
}
.hvr-float-shadow:active:before {
  opacity: 1;
  transform: translateY(5px);
}
.hvr-float-shadow:focus {
  transform: translateY(-5px);
}
.hvr-float-shadow:focus:before {
  opacity: 1;
  transform: translateY(5px);
}
.hvr-float-shadow:hover {
  transform: translateY(-5px);
}
.hvr-float-shadow:hover:before {
  opacity: 1;
  transform: translateY(5px);
}

.duongcheosang3 {
  position: relative;
  overflow: hidden;
}
.duongcheosang3::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  position: absolute;
  transform: rotate(90deg);
  opacity: 1;
  width: 0;
  height: 0;
  z-index: 1;
}
.duongcheosang3::after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  right: 0;
  position: absolute;
  transform: rotate(90deg);
  opacity: 1;
  width: 0;
  height: 0;
  z-index: 2;
}
.duongcheosang3:hover::before,
.duongcheosang3:hover::after {
  transform: rotateY(180deg);
  transition-duration: 1.3s;
  opacity: 0;
  height: 100%;
  width: 100%;
}

[x-cloak] {
  display: none !important;
}

a.views_dm {
  width: 140px;
  height: 38px;
}

.effect_button {
  transform-style: preserve-3d;
  transform: translateZ(-25px);
  transition: transform 0.25s;
  position: relative;
  display: inline-flex;
  z-index: 1;
}
.effect_button:after {
  position: absolute;
  content: "xem thêm";
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f00;
  box-sizing: border-box;
  border-radius: 5px;
  z-index: -1;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  color: #f00;
  transform: rotateX(90deg) translateZ(25px);
}
.effect_button:before {
  position: absolute;
  content: "xem thêm";
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f00;
  box-sizing: border-box;
  border-radius: 5px;
  z-index: -1;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: #f00;
  transform: rotateY(0deg) translateZ(25px);
}
.effect_button:hover {
  transform: translateZ(-25px) rotateX(-90deg);
}

/* news detail */
.ds-news span {
  display: block;
  line-height: 25px;
  color: #999;
  font-size: 13px;
  margin: 10px 0px 0px;
  font-style: italic;
}
.ds-news h3 {
  -webkit-line-clamp: 2;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin: 0;
}
.ds-news h3:hover {
  color: var(--color-main);
}
.ds-news .desc {
  color: #333;
}

.item-news-all a {
  display: flex;
  justify-content: space-between;
}
.item-news-all a .ds-news {
  width: calc(100% - 110px);
}
.item-news-all a .ds-news h3 {
  text-transform: capitalize;
  font-size: 15px;
}

.news-right {
  position: sticky;
  top: 20px;
  background: rgba(241, 241, 241, 0.8);
  padding: 20px;
  box-shadow: 0px 0px 5px rgba(153, 153, 153, 0.4705882353);
}

a.btn_link {
  position: relative;
  margin: 5px;
  height: 36px;
  width: 140px;
}

.btn_link.effect_button:first-child:after {
  content: "facebook";
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(0 165 217 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 165 217 / var(--tw-bg-opacity));
}
.btn_link.effect_button:first-child:before {
  content: "facebook";
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(0 165 217 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 165 217 / var(--tw-bg-opacity));
}
.btn_link.effect_button:nth-child(2):after {
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(0 165 217 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 165 217 / var(--tw-bg-opacity));
  content: "google map";
}
.btn_link.effect_button:nth-child(2):before {
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(0 165 217 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 165 217 / var(--tw-bg-opacity));
  content: "google map";
}

div.slick.in-page:not(.slick-initialized) {
  display: flex;
  gap: 10px;
  overflow: hidden;
  white-space: nowrap;
}

/* product detail */
.attr-pro-detail {
  margin: auto;
  padding: 0;
}

.baonoidung iframe {
  max-width: 100% !important;
}
.baonoidung img {
  height: auto !important;
}
.baonoidung * {
  max-width: 100% !important;
}
.baonoidung table {
  display: block;
  overflow-y: auto;
}

div.desc-pro-detail ul li {
  margin-bottom: 0.75rem;
  list-style-type: circle;
}
div.desc-pro-detail ul li:last-child {
  margin-bottom: 0 !important;
}

div.baonoidung ul li {
  margin-bottom: 0.75rem;
  list-style-type: disc;
}
div.baonoidung ol li {
  margin-bottom: 0.75rem;
  list-style-type: decimal;
}

.price-new-pro-detail {
  font-weight: 700;
  font-size: 20px;
  color: #ff2e00;
}

.price-old-pro-detail {
  font-weight: 500;
  color: #666;
  text-decoration: line-through;
  padding-left: 10px;
}

.color-pro-detail.active {
  color: #fff !important;
  background: #232323;
}

.size-pro-detail.active {
  color: #fff !important;
  background: #232323;
}

.size-pro-detail:hover {
  color: #fff !important;
  background: #232323;
}

.quantity-pro-detail {
  width: 100%;
  max-width: 110px;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin-right: 20px;
  font-weight: 500;
}
.quantity-pro-detail span {
  line-height: 40px;
  padding: 0;
  width: 30px;
  height: 40px;
  color: #000;
  cursor: pointer;
  font-size: 22px;
}
.quantity-pro-detail span.quantity-plus-pro-detail {
  border-left: 0;
}
.quantity-pro-detail span.quantity-minus-pro-detail {
  border-right: 0;
}
.quantity-pro-detail input {
  height: 40px;
  width: calc(100% - 60px);
  text-align: center;
  font-size: 20px;
  padding: 5px;
  font-weight: 700;
}

.cart-pro-detail {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cart-pro-detail a {
  text-align: center;
  color: #fff;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}
.cart-pro-detail a i {
  vertical-align: top;
  margin-top: 3px;
  margin-right: 8px;
}
.cart-pro-detail a.addnow {
  margin-right: 10px;
  color: #fff;
  border-radius: 5px;
}
.cart-pro-detail a.addnow:hover {
  background-color: #f00;
  color: #fff;
  border-color: #f00;
}
.cart-pro-detail a.buynow {
  background-color: #000;
}
.cart-pro-detail a.buynow:hover {
  background-color: #f00;
  color: #fff;
}

.modal-title {
  color: var(--nhn, #f5b30c);
  text-align: center;
  font-family: "Bai Jamjuree";
  font-style: normal;
  font-weight: 500;
  line-height: normal; /* 384.615% */
  text-transform: uppercase;
}

/* loading */
.loading-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.loading {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 5px solid #3498db;
  animation: spin 1s linear infinite;
}

/* support online */
.support-online .kenit-alo-circle-fill {
  transition: 0.3s all;
}

/* btn frame */
.btn-frame {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  z-index: 10;
  cursor: pointer;
}
.btn-frame .kenit-alo-circle-fill {
  transition: 0.3s all;
  width: 70px;
  height: 70px;
  top: -10px;
  right: -10px;
  position: absolute;
  border-radius: 100%;
  border: 2px solid transparent;
  background-color: rgba(7, 41, 103, 0.35);
  opacity: 0.4;
}
.btn-frame i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1182fc;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-frame i img {
  vertical-align: middle;
  width: 70%;
}
.btn-frame .animated.infinite {
  animation-iteration-count: infinite;
}
.btn-frame .kenit-alo-circle {
  width: 60px;
  height: 60px;
  top: -5px;
  right: -5px;
  position: absolute;
  background-color: transparent;
  border-radius: 100%;
  border: 2px solid rgba(7, 41, 103, 0.8);
  opacity: 0.1;
  border-color: #1182fc;
  opacity: 0.5;
}
.btn-frame .zoomIn {
  animation-name: zoomIn;
}
.btn-frame .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.btn-frame .pulse {
  animation-name: pulse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shake-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10%,
  30% {
    -moz-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%,
  40% {
    -moz-transform: rotate(25deg) scale(1) skew(1deg);
  }
  100%,
  50% {
    -moz-transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse-animation {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  10% {
    transform: scale3d(1.1, 1.1, 1.1);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.6, 1.6, 1.6);
    opacity: 0;
  }
}
@keyframes border-animation {
  0% {
    transform: scale3d(0.6, 0.6, 0.6);
    opacity: 0;
  }
  20% {
    transform: scale3d(1.2, 1.2, 1.2);
    opacity: 1;
  }
  100% {
    transform: scale3d(1.4, 1.4, 1.4);
    opacity: 0;
  }
}
