@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@font-face {
  font-family: "ro-l";
  src: url("../fonts/Roboto-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-family: "ro-m";
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-family: "ro-r";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/LucyRosePERSONAL-Regular.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-family: "lucy-r";
}
:root {
  --color-main: #CCD9FF;
  --color-second: #29438F;
  --color-font-light: #939393;
  --color-font: #5c5c5c;
  --size-title: 16px;
  --size-title-main: 25px;
}

.btn-primary {
  background: var(--color-main);
  border: 1px solid var(--color-main);
}

.btn-second {
  background: var(--color-second);
  border: 1px solid var(--color-second);
}

.btn.btn-primary:hover {
  background: #fff;
  border: 1px solid var(--color-main);
  color: var(--color-main);
}

.btn.btn-second:hover {
  background: #fff;
  border: 1px solid var(--color-second);
  color: var(--color-second);
}

.rounded-99 {
  border-radius: 99px;
}

.size-title-main {
  font-size: var(--size-title-main);
}

.color-light {
  color: var(--color-font-light);
}

.color-main {
  color: var(--color-main);
}

.color-second {
  color: var(--color-second);
}

.background-main {
  background-color: var(--color-main);
}

.background-main-bold {
  background-color: #007b29;
}

.background-gradiant {
  background: linear-gradient(180deg, #CCD9FF 0, #576FB8 100%); /* W3C */
}

.background-gray {
  background-color: #F9F9F9;
}

.background-fixed {
  background-attachment: fixed;
  background-position: center;
  background-size: contain;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(16, 86, 137, 0.4196078431);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 15px;
  text-align: center;
  transition: all ease 0.5s;
}

.absolute-center-hover {
  opacity: 1;
  visibility: visible;
  top: 50%;
  transform: translate(-50%, -50%);
}

.size-title {
  font-size: var(--size-title);
}

.transition {
  transition: all ease 0.5s;
}

body {
  font-family: "Roboto";
  font-size: 14px;
  font-weight: 400;
}

tbody,
td,
tfoot,
th,
thead,
tr,
.table > :not(:last-child) > :last-child > * {
  border: 1px solid #e9ecef;
}

.container {
  max-width: 1200px;
}

.container-fluid {
  overflow: hidden;
}

a {
  color: #000;
}
a.hotline strong {
  color: #000;
  font-size: 18px;
}
a.hotline p {
  font: 16px "ro-l";
  text-transform: uppercase;
  color: var(--color-main);
  margin-bottom: 0px;
}
a.video__item img {
  width: 100%;
}

b {
  font-size: inherit;
}

.wrapper-home strong {
  font-size: inherit;
}

ul.box-cap3 li a {
  padding-left: 70px;
}

input:focus-visible {
  outline: 0px;
}
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input.coupon {
  height: 47px;
  border: 1px solid #ececec;
  border-radius: 10px;
  height: 64px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-left: 20px;
  font-size: 16px;
  width: 100%;
}

.wrapper-detail {
  padding: 0px;
}

.wrapper-main {
  padding: 45px 0;
}

.animate1 {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#toTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: #c01627;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
}

/* Scroll Web */
.progress-wrap {
  position: fixed;
  bottom: 10px;
  right: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 1001010;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.progress-wrap:after {
  content: "\f102";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  font-weight: 900;
  color: red;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: red;
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper .swiper-slide-active .slideSwiper__title {
  animation: slidedown 2s linear;
}
.swiper .swiper-slide-active .slideSwiper__desc {
  animation: slidedown 2s linear forwards;
  animation-delay: 0.5s;
}
@keyframes slidedown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.slideSwiper {
  height: 660px;
}
.slideSwiper__content {
  position: absolute;
  width: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  color: #fff;
  text-align: center;
}
.slideSwiper__title {
  font-size: var(--size-title-main);
  font-weight: 700;
}
.slideSwiper__desc {
  opacity: 0;
}
.slideSwiper__inner {
  height: 100%;
}
.slideSwiper .swiper-button-next:after, .slideSwiper .swiper-rtl .swiper-button-next:after, .slideSwiper .swiper-button-prev:after, .slideSwiper .swiper-rtl .swiper-button-prev:after {
  font-size: 12px;
  color: #fff;
}
.slideSwiper .swiper-button-prev, .slideSwiper .swiper-button-next {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #ccc;
}

.owl-arrow {
  margin-top: 10px;
}
.owl-arrow .owl-nav {
  display: none;
}
.owl-arrow.owl-carousel:hover .owl-nav {
  display: block;
}
.owl-arrow.owl-theme .owl-nav {
  margin-top: 0px;
}
.owl-arrow.owl-theme .owl-nav button {
  background: transparent;
  color: #869791;
  font-size: 40px;
  line-height: 300px;
  margin: 0;
  padding: 0 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-arrow.owl-theme .owl-nav .owl-prev {
  left: -20px;
  padding-left: 20px;
}
.owl-arrow.owl-theme .owl-nav .owl-prev i {
  font-size: 12px;
  color: #fff;
  width: 25px;
  height: 25px;
  background: #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-arrow.owl-theme .owl-nav .owl-next {
  right: -20px;
  padding-right: 20px;
}
.owl-arrow.owl-theme .owl-nav .owl-next i {
  font-size: 12px;
  color: #fff;
  width: 25px;
  height: 25px;
  background: #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-arrow.owl-theme .owl-nav [class*=owl-]:hover {
  background: initial;
  color: initial;
}

.img-container {
  padding-bottom: 66%;
  overflow: hidden;
  height: auto;
  display: block;
  position: relative;
}
.img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scale-img {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.scale-img img {
  transition: 0.5s all ease-in-out;
  width: 100%;
  height: 100%;
}
.scale-img:hover img {
  transform: scale(1.2);
}

.catchuoi2 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.catchuoi3 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.catchuoi4 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.catchuoi5 {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.xoay_hinh:hover img {
  transform: rotate(360deg);
}
.xoay_hinh img {
  transition: ease all 0.5s;
}

.pagination {
  justify-content: center;
  margin-top: 2rem;
}

.offcanvas-body ul {
  position: initial !important;
  top: 0 !important;
  transform: initial !important;
  border: none;
}
.offcanvas-body ul li a {
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Roboto";
  padding-top: 10px;
  padding-bottom: 10px;
}
.offcanvas-body ul li a:after {
  float: right;
  margin-top: 0px;
}
.offcanvas-body ul li ul {
  padding-left: 18px;
}
.offcanvas-body ul li ul li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: 300;
  color: #fff;
  font-family: "Roboto";
}

.dropdown-menu {
  min-width: 210px;
}

.nav-sub {
  position: relative;
}
.nav-sub ul {
  position: absolute;
  right: 0;
  top: 0;
  left: 100%;
  min-width: 100%;
  background-color: #fff;
  padding: 0;
  list-style: none;
  border: 1px solid #eee;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2509803922);
  border-radius: 3px;
  display: none;
}
.nav-sub ul li a {
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  font-size: 15px;
}
.nav-sub ul li a:hover {
  background-color: #006847;
  color: #fff;
}
.nav-sub:hover ul {
  display: block;
}
.nav-sub:hover > a {
  background-color: #006847;
  color: #fff;
}

.nav-link:focus {
  color: #410000;
}
.nav-link:hover {
  color: #410000;
}

.nav-sub-mobile > a:after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  margin-top: 8px;
}
.nav-sub-mobile ul {
  list-style: none;
}
.nav-sub-mobile ul li a {
  text-transform: capitalize;
}

.nav-top {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}
.nav-top li:last-child a {
  padding-right: 0;
}
.nav-top li:last-child a:after {
  content: "";
  display: none;
}
.nav-top li:nth-child(1) a {
  padding-left: 0;
}
.nav-top a {
  color: #1b1718;
  display: block;
  padding-right: 10px;
  padding-left: 10px;
  position: relative;
  font-size: 14px;
}
.nav-top a:after {
  content: "";
  height: 15px;
  position: absolute;
  border-left: 1px solid #000;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.top {
  background-color: var(--color-main);
  padding: 8px 0;
  border-bottom: 1px solid #fff;
  color: #fff;
}

.slogan {
  font-weight: 700;
  text-transform: uppercase;
}
.slogan .text {
  position: relative;
  height: 35px;
  line-height: 35px;
  background-color: #fea500;
  padding-left: 30px;
  padding-right: 30px;
  color: #510000;
  text-transform: uppercase;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 700;
}
.slogan .text:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 37px;
  background: url(../images/br-left.png) no-repeat bottom right;
  background-size: contain;
  left: -37px;
}
.slogan .text:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 37px;
  background: url(../images/br-right.png) no-repeat bottom left;
  background-size: contain;
  right: -37px;
}

.table-dathang-tc img {
  max-height: 100px;
}

.header__box p {
  font-size: 13px;
  color: #707070;
  font-weight: 500;
  margin-bottom: 0px;
}
.header__box strong {
  font-size: 16px;
  color: #ff1212;
}
.header__box i {
  font-size: 38px;
  color: var(--color-main);
}
.header__box:last-child {
  border-right: none;
}

.header-lang a {
  display: inline-block;
  border: 1px solid var(--color-main);
  border-radius: 50%;
  padding: 3px;
  margin-left: 8px;
}
.header-lang .disable {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
}

.ten__cty {
  font-size: 18px;
  font-weight: 600;
}

.giohoatdong {
  background: url(../images/clock.png) left center no-repeat;
}

.box-lang button {
  background: none;
  border: 1px solid #fff;
}
.box-lang .btn-check:focus + .btn-secondary {
  background: none;
  border: 1px solid #fff;
}
.box-lang .dropdown-menu {
  background: var(--color-main);
}

.btn-secondary:focus {
  background: none;
  border: 1px solid #fff;
}

.search {
  height: 43px;
  overflow: hidden;
}
.search input {
  border: none;
  height: 100%;
  flex: 1;
  background: none;
  color: #000;
  border-radius: 99px;
  width: 100%;
}
.search input::-webkit-input-placeholder {
  color: #000;
}
.search input:-ms-input-placeholder {
  color: #000;
}
.search input::placeholder {
  color: #000;
}
.search textarea::-webkit-input-placeholder {
  color: #8a8a8a;
}
.search textarea:-ms-input-placeholder {
  font: 13px "ro-l";
  color: #8a8a8a;
}
.search textarea::placeholder {
  font: 13px "ro-l";
  color: #8a8a8a;
}
.search button {
  border: none;
  width: 50px;
  height: 45px;
  font-size: 20px;
  margin-right: 0px;
  background: var(--color-main);
  display: block;
  flex: none;
}
.search form {
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: none;
  border-bottom: 1px solid #000;
}
.search form .form-select {
  width: 140px;
  background: #e93514;
  color: #fff;
  padding: 0px;
  padding-left: 10px;
  height: 100%;
  border: none;
  border-radius: 3px 0 0 3px;
  cursor: pointer;
}
.search select option {
  margin: 40px;
  background: #fff;
  color: #000;
}

.btn-search {
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}

.hotline {
  background: url("../images/hotline.png") left center no-repeat;
}

.navbar-form {
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  width: 45%;
}
.navbar-form input {
  font-size: 14px;
  background-color: #f2f2f2;
  border: 1px solid #fff;
  border-radius: 30px;
  height: 45px;
  padding: 7px 15px 10px;
  color: #000;
}
.navbar-form input::-webkit-input-placeholder {
  color: #000;
}
.navbar-form input:-ms-input-placeholder {
  color: #000;
}
.navbar-form input::placeholder {
  color: #000;
}
.navbar-form button {
  position: absolute;
  color: var(--color-main);
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 30px 30px 0;
}
.navbar-form i {
  margin-top: -3px;
}

.logo {
  display: inline-block;
  position: relative;
}
.logo img {
  max-width: 160px;
  z-index: 99;
  position: relative;
}

.right-head_hotline {
  height: 60px;
  padding: 4px;
  border-radius: 30px;
  background: url("../images/hotline.png") left 15px center no-repeat;
  padding-left: 72px;
}

.icon-phone {
  width: 31px;
  height: 31px;
  background-color: #ec1c24;
  color: #fff;
  display: inline-block;
  text-align: center;
  line-height: 31px;
  border-radius: 50%;
  margin-right: 30px;
}
.icon-phone i {
  margin-top: -4px;
}

.form-cart {
  background-color: #f7f7f7;
}

.right-head_cart {
  position: relative;
}

.cart__mb {
  display: none;
}
.cart__mb span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  right: 0;
  top: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 5px -1px #000;
}
.cart__mb .cart-img {
  height: 37px;
  width: 37px;
  border-radius: 50%;
  background: red;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart__mb .cart-img i {
  color: #fff;
  font-size: 18px;
}

.mxh li {
  display: inline-block;
}

.mxhft li {
  margin-left: 3px;
}

.mxh-top {
  color: #fff;
}

.map {
  line-height: 0;
}
.map iframe {
  height: 450px;
  width: 100%;
}

.logo-f {
  margin-top: 50px;
}

.title-f {
  text-transform: uppercase;
  position: relative;
  font-size: var(--size-title);
  font-weight: 500;
  margin-bottom: 1rem;
  color: #000;
}
.title-f:after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #fff;
  margin-top: 4px;
}

.content-f {
  font-size: 13px;
  justify-content: center;
  color: #000;
}
.content-f iframe {
  height: 210px;
}
.content-f ul {
  list-style: none;
  padding: 0;
}
.content-f ul li {
  margin-bottom: 8px;
}
.content-f ul li a {
  color: white;
  background: url(../images/icon-right.png) no-repeat center left;
  padding-left: 10px;
  background-size: 6px;
}

.map-f iframe {
  height: 160px;
}

.mxh-f {
  margin-top: 15px;
  margin-bottom: 15px;
}
.mxh-f a {
  display: inline-block;
}
.mxh-f a.facebook {
  color: #4551c5;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 15px;
}
.mxh-f a.facebook i {
  width: 40px;
  height: 40px;
}
.mxh-f a.youtube {
  color: #fff;
  width: 40px;
  height: 40px;
  background-color: #fd0600;
  border-radius: 50%;
  line-height: 41px;
}
.mxh-f a.youtube i {
  width: 40px;
  height: 30px;
}

.content-pttt a {
  display: inline-block;
  margin-bottom: 5px;
  border-radius: 5px;
  overflow: hidden;
}

#contact-form .form-group input {
  width: 100%;
  height: 42px;
  text-indent: 10px;
  border: 1px solid #ced4da;
}

.title-lienhe {
  font-size: clamp(1.5rem, 0.531rem + 7.57vw, 2rem);
  font-weight: 500;
  color: var(--color-font);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.doitac__pic {
  margin: 8px;
}

#slider1_container {
  margin: auto;
}

.navbar-brand.active {
  background-color: #e99820;
}

.navbar-light .navbar-nav .nav-link.active {
  background-color: #e99820;
}
.navbar-light .navbar-toggler i {
  width: 40px;
  height: 40px;
}

.why_title {
  color: #fff;
  font-size: 28px;
  text-transform: uppercase;
  font-family: "Roboto";
  font-weight: 700;
}

.why_item {
  background-color: #fff;
  position: relative;
  padding: 16px;
  padding-left: 110px;
}

.why_item_img {
  max-width: 80px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.why_item_content {
  font-size: 15px;
}

.why_item_content_title {
  font-family: "AvoB";
  text-transform: uppercase;
  font-size: 18px;
  color: #545454;
  margin-bottom: 5px;
}

.danhmuc_home-body {
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 50px;
}

.danhmuc_home_title {
  color: #e99820;
  text-transform: uppercase;
  font-size: 28px;
  padding-bottom: 30px;
  background: url(../images/br-title-danhmuc.png) no-repeat center bottom;
  font-family: "Roboto";
  font-weight: 700;
}

.danhmuc_home_item_img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
.danhmuc_home_item_img img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0px auto;
  display: block;
}

.danhmuc_home_item_title {
  display: block;
  text-align: center;
  color: #e99820;
  font-size: 16px;
  margin-top: 20px;
  font-weight: 300;
}

.danhmuc_Swiper-next {
  background-color: #4b2222;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
}
.danhmuc_Swiper-next:after {
  font-size: 16px !important;
  color: #fff;
}

.danhmuc_Swiper-prev {
  background-color: #4b2222;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
}
.danhmuc_Swiper-prev:after {
  font-size: 16px !important;
  color: #fff;
}

.sanpham_home {
  background-color: #410000;
  color: #e99820;
}

.product_title-home_text {
  background: url(../images/icon-title.png) no-repeat center left;
  padding-left: 45px;
  font-size: 14px;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Roboto";
}

.nav_sub_pro {
  list-style: none;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav_sub_pro_item {
  color: #e99820;
  display: block;
  padding: 5px 10px;
  border: 1px solid;
  margin-right: 10px;
  border-radius: 30px;
  text-transform: uppercase;
}
.nav_sub_pro_item:hover {
  background-color: #ffb322;
  color: #410000;
}
.nav_sub_pro_item:focus {
  background-color: #ffb322;
  color: #410000;
}

.title_home_pro_all {
  color: #e99820;
  display: block;
  padding: 5px 20px;
  border: 1px solid;
  margin-right: 10px;
  border-radius: 30px;
  text-transform: uppercase;
}

.br-xam {
  padding-top: 20px !important;
  padding-bottom: 30px !important;
}

.video_home_title {
  font-family: "Roboto";
  background: url(../images/icon-title2.png) no-repeat center left;
  padding-left: 50px;
  font-size: 22px;
  text-transform: uppercase;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Roboto";
  font-weight: 700;
  margin-bottom: 10px !important;
}

.video_item {
  margin-bottom: 20px;
}
.video_item a {
  display: block;
}

.video_item_img {
  border-radius: 5px;
  width: 100%;
  object-fit: cover;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.video_item_big .video_item_img {
  height: 640px;
  width: 100%;
}

.video_item_play {
  text-align: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.video_item_play i {
  font-size: 50px;
  color: #fff;
}

.video_item_title {
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6784313725);
  z-index: 1;
  left: 0;
  width: 100%;
  padding: 10px 15px;
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
}

.item-truyenthong .video_item_img {
  height: 310px;
}

.danhmuc_home {
  background-size: cover;
  background-position: center;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  border-bottom: 1px solid #75360b;
}

.danhgia_home {
  background-size: cover;
  background-position: center;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.danhgia_home_title {
  color: #e99820;
  text-transform: uppercase;
  font-size: 28px;
  padding-bottom: 30px;
  background: url(../images/br-title-danhmuc.png) no-repeat center bottom;
  font-family: "Roboto";
  font-weight: 700;
}

.tintuc_home_item_title a {
  font-size: var(--size-title);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-font);
}

.news__item {
  position: relative;
  display: block;
}
.news__item .img-container {
  padding-bottom: 100.65%;
}

.news2__item {
  position: relative;
  margin-bottom: 22px;
  display: block;
}
.news2__item .img-container {
  padding-bottom: 67.92%;
}

.news2__title {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: var(--size-title);
}

.news__date {
  color: #ccc;
  font-style: italic;
  display: block;
  border-bottom: 1px solid;
  padding: 7px 0;
  margin-bottom: 14px;
}

.news__day {
  font-size: 26px;
  font-weight: 500;
}

.news__box {
  position: absolute;
  bottom: 0;
  background: rgba(245, 133, 33, 0.6117647059);
  padding: 20px;
}

.news__img {
  overflow: hidden;
  position: relative;
}

.news__title {
  color: #fff;
  font-size: 18px;
}

h3.news__title:after {
  content: "";
  display: block;
  width: 250px;
  height: 1px;
  border-top: 1px dashed;
  margin-top: 10px;
}

.news__desc {
  color: #fff;
}

.news-relate fieldset {
  background-color: #eeeeee;
}
.news-relate legend {
  background-color: gray;
  color: white;
  padding: 5px 10px;
  display: inline-block;
  width: auto;
  font-size: 18px;
}
.news-relate ul {
  padding-left: 15px;
  padding-bottom: 20px;
  list-style: none;
}
.news-relate ul i {
  margin-right: 0.5rem;
  font-size: 10px;
  color: #bbb3b3;
}

.item_product {
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.item_product > a {
  position: relative;
  display: block;
  overflow: hidden;
}
.item_product > a .sale {
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
}
.item_product > a .sale span {
  position: relative;
  z-index: 100;
  font-size: 16px;
}
.item_product > a .sale:before {
  content: "";
  position: absolute;
  width: 143px;
  height: 62px;
  background-color: #c70100;
  transform: rotate(-143deg);
  top: -22px;
  left: -54px;
}

.item_product_img {
  height: 290px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.item_product_title {
  font-size: 14px;
  font-family: "Roboto";
  margin-top: 10px;
  line-height: 19px;
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 400;
  margin-bottom: 2px;
  height: 38px;
}
.item_product_title a {
  color: #e1e1e1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.item_product_title a:hover {
  color: #e99820;
}

.item_product_price {
  font-size: 16px;
  margin-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  color: #e99820;
}
.item_product_price del {
  color: #ccc;
  font-size: 14px;
  margin-left: 10px;
}

.item_product_f {
  padding-left: 5px;
  padding-right: 5px;
}
.item_product_f ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  margin-left: 10px;
  margin-right: 10px;
}
.item_product_f ul i {
  color: #e99820;
}
.item_product_f span {
  display: block;
  color: #e1e1e1;
  margin-top: 3px;
}

.sodotrang {
  padding: 10px;
  background: rgba(86, 86, 86, 0.6196078431);
}

.breadcrumb a {
  color: #fff;
  font-size: 15px;
}
.breadcrumb li.active a {
  color: #fff;
}

.breadcrumb__title {
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.chitiet_sp_hot {
  padding-top: 20px;
  padding-bottom: 15px;
  background-size: cover;
  background-position: center;
}

.Swiper_sp_hot_img {
  width: 100%;
  height: 399px;
  object-fit: cover;
  border-radius: 15px;
}

.chitiet_sp_hot_title {
  font-family: "Roboto";
  color: #000;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.chitiet_sp_hot_gia {
  margin-bottom: 8px;
  color: var(--color-main);
  font-family: "Roboto";
  font-size: 28px;
  font-weight: 700;
}
.chitiet_sp_hot_gia del {
  font-family: "Roboto";
  color: #3d3d3d;
  font-size: 16px;
  display: inline-block;
}
.chitiet_sp_hot_gia span {
  font-family: "Roboto";
  color: #3d3d3d;
  font-size: 16px;
  display: inline-block;
}
.chitiet_sp_hot_gia span.sale {
  color: #fff;
  font-family: "Roboto";
  font-size: 13px;
  background-color: var(--color-main);
  padding: 1px 7px 3px;
  border-radius: 30px;
  display: inline-block;
  position: relative;
  top: -5px;
}

.chitiet_sp_hot_mota {
  font-size: 14px;
  margin-bottom: 15px;
}
.chitiet_sp_hot_mota ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  border: 1px solid #fe0002;
  padding: 8px 10px;
  border-radius: 5px;
  padding-left: 60px;
  background-image: url(../images/uu-dai.png);
  background-position: 10px center;
  background-repeat: no-repeat;
}
.chitiet_sp_hot_mota ul li {
  font-weight: 100;
  color: #e09601;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chitiet_sp_hot_mota ul li strong {
  color: #fe0002;
}

.chitiet_sp_hot_tuvan_form input {
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 30px 0 0 30px;
  font-size: 14px;
  padding: 6px 20px 6px;
  color: #fff;
}
.chitiet_sp_hot_tuvan_form .btn {
  background-color: white;
  width: 100px;
  border-radius: 0 30px 30px 0;
  font-family: "Roboto";
  font-weight: 700;
}

.cart-plus-minus {
  position: relative;
  display: flex;
}
.cart-plus-minus input {
  height: 50px;
  font-size: 1em;
  margin: 0;
  width: 60px;
  padding: 0 2px;
  text-align: center;
  border: solid 1px #ebebeb;
  border-left: none;
  border-right: none;
}
.cart-plus-minus .qtybutton {
  font-size: 20px;
  line-height: 0px;
  border: solid 1px #ebebeb;
  display: inline-block;
  width: 40px;
  height: 50px;
  background: #fff;
  color: #333;
  text-align: center;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
}
.cart-plus-minus .qtybutton:hover {
  background: rgba(156, 156, 156, 0.3294117647);
  color: #fff;
}
.cart-plus-minus .dec {
  left: 0px;
}
.cart-plus-minus .inc {
  right: 0px;
}

.product-thumbnail {
  min-width: 85px;
}

.cart-btn {
  border-radius: 3px;
  border: 1px solid var(--color-main);
  margin-right: 10px;
  padding: 12px 30px;
  background-color: transparent;
  color: var(--color-main);
  font-size: 15px;
  text-transform: uppercase;
}
.cart-btn:hover {
  background-color: var(--color-main);
  color: #fff;
}

.cart-btn2 {
  padding-left: 30px;
  padding-right: 30px;
  text-transform: uppercase;
}

.magiamgia .accordion-body {
  padding: 1rem 0 0;
}
.magiamgia input {
  height: 48px;
  border-radius: 99px;
  box-shadow: 0px 0px 14px -5px rgba(0, 0, 0, 0.6117647059);
}
.magiamgia button {
  color: #fff;
  text-transform: uppercase;
  width: 100%;
}

.Swiper_quangcao_img {
  height: 415px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.body-sanpham {
  background-color: #fff;
  color: #fff;
  padding: 20px 0;
  margin-bottom: 30px;
}

.title_product_page {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  font-size: 22px;
  color: #e99820;
  position: relative;
  font-weight: 700;
}
.title_product_page:before {
  content: "";
  position: absolute;
  width: 115px;
  height: 3px;
  background-color: #e99820;
  bottom: -2px;
}

.mota_danhmuc {
  margin-bottom: 30px;
}

.br-xemthem {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255), rgb(255, 255, 255));
  height: 105px;
  left: 0;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding-top: 51px;
}

.chitiet_danhmuc {
  transition: all 0.4s linear;
  margin-bottom: 30px;
}

.list-tt {
  margin-bottom: 15px;
}

.item-thuoctinh {
  position: relative;
  margin-right: 4px;
}
.item-thuoctinh input {
  display: none;
}
.item-thuoctinh input:checked + span {
  color: #ffffff;
  border: 1px solid #ec1c24;
}
.item-thuoctinh span {
  display: block;
  font-size: 13px;
  padding: 0px 13px;
  border: 1px solid #efefef;
  color: #ffffff;
  min-width: 37px;
  text-align: center;
  border-radius: 33px;
  cursor: pointer;
  height: 27px;
  line-height: 24px;
}
.item-thuoctinh span.lab_img {
  font-size: 0;
  background-size: contain;
}
.item-thuoctinh span.lab_color {
  font-size: 0;
  background-size: contain;
}

.thuoctinh-sp .title {
  padding-right: 10px;
  color: #fff;
  line-height: 26px;
}

.Swiper_spct {
  margin-top: 10px;
}
.Swiper_spct img {
  height: 120px;
  width: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.box_right_sp {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
}

.box_right_sp_title {
  background-color: #e99820;
  padding: 8px 6px;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 10px 10px 0 0;
}

.box_right_sp_ct {
  color: #000;
  position: relative;
}

.box_right_sp_item {
  padding: 5px 10px;
  padding-bottom: 0px;
  position: relative;
  padding-right: 13px;
  font-size: 13px;
}
.box_right_sp_item i {
  position: absolute;
  top: 10px;
  right: 8px;
  color: red;
}

.box_right_sp_item_title {
  color: #000;
  font-family: "Roboto";
  margin-bottom: 1px;
  font-size: 13px;
  font-weight: 600;
}
.box_right_sp_item_title a {
  color: #000;
  color: red;
  text-decoration: revert;
  font-weight: 600;
}

.Swiper_spct2 .Swiper_sp_hot_img {
  height: 400px;
}

.box_tang_kem {
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 15px;
  margin-top: 30px;
  position: relative;
  padding-top: 29px;
}
.box_tang_kem span {
  position: absolute;
  background-color: #2a0304;
  display: inline-block;
  padding: 2px 10px 5px;
  top: -15px;
  left: 27px;
  color: #e99820;
  font-family: "Roboto";
}

.item_tangkem {
  margin-bottom: 10px;
}
.item_tangkem img {
  border-radius: 13px;
  height: 96px;
}

.item_tangkem_title {
  margin-top: 10px;
  margin-bottom: 7px;
  font-family: "Roboto";
  font-size: 13px;
}

.item_tangkem_mota {
  font-size: 13px;
}

.list_kh {
  padding: 2px 15px;
  margin-bottom: 0;
  height: 89px;
  overflow: hidden;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
.list_kh i {
  margin-top: 4px;
  margin-right: 6px;
}
.list_kh li {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: nowrap;
}
.list_kh p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 13px;
  margin-bottom: 0;
}

.tab_sanpham li {
  padding: 0 4px;
}
.tab_sanpham li button {
  background-color: #717171;
  color: #fff;
  text-transform: uppercase;
  border-radius: 3px 3px 0 0;
  padding: 10px 20px;
  border: none;
}
.tab_sanpham li button.active {
  background-color: var(--color-main);
  color: #fff;
}
.tab_sanpham .show > li {
  background-color: var(--color-main);
  color: #fff;
  padding: 12px 23px;
}

.item_product-right .item_product_title a {
  color: #000;
  font-family: "Roboto";
}
.item_product-right .item_product_price {
  color: #e99820;
}
.item_product-right .item_product_price del {
  font-size: 14px;
}
.item_product-right .item_product_f span {
  color: #605d5d;
}

.quangcao_sp {
  background: url(../images/br-quangcao.png) no-repeat center;
  background-size: cover;
  background-position: center;
  padding-top: 50px;
  padding-bottom: 50px;
}
.quangcao_sp .img_sp_sale {
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}

.form_dk_khuyenmai {
  border: 1px solid #ff9109;
  padding: 6px;
  border-radius: 10px;
}

.form_dk_khuyenmai_body {
  background-color: white;
  padding: 15px;
  border-radius: 5px;
}
.form_dk_khuyenmai_body .form-control {
  border: 1px solid #eee;
  font-size: 14px;
  border-radius: 0;
  padding: 10px 15px;
}

.form_dk_khuyenmai_title {
  background-color: #ff9109;
  margin-top: -15px;
  margin-left: -15px;
  margin-right: -15px;
  padding: 15px;
  text-align: center;
  margin-bottom: 30px;
}

.form_dk_khuyenmai_title_head {
  font-family: "Roboto";
  text-transform: uppercase;
  color: #fff;
  font-size: 28px;
}

.btn-dk-tuvan {
  width: 100%;
  background-color: #b3000c;
  font-family: "Roboto";
  color: #fff;
  padding: 10px;
}
.btn-dk-tuvan i {
  color: #ff9109;
}

.form-group {
  margin-bottom: 17px;
  margin-bottom: 1rem;
}
.form-group input {
  border: none;
  height: 45px;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  width: 100%;
  border-radius: 0px;
  font-weight: 300;
  text-indent: 10px;
}

.flash-sale {
  background-color: #717171;
  text-align: center;
  padding: 4px;
  margin-top: 12px;
  border-radius: 10px;
}

.single-smblog {
  position: relative;
}
.single-smblog .blog-image-2 img {
  border-radius: 20px;
}

.smblog-content {
  padding: 15px;
  background: #fff;
}
.smblog-content h6 {
  font-size: 15px;
  line-height: 1.34;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.smblog-content h6:hover {
  color: #f8b133;
}
.smblog-content span {
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
  display: inline-block;
  margin-bottom: 10px;
}
.smblog-content span a {
  color: #e99820;
}
.smblog-content p {
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.smblog-content .smblog-foot {
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}
.smblog-content .smblog-foot .post-readmore a {
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
  color: #222;
}
.smblog-content .smblog-foot .post-readmore a:hover {
  color: #f8b133;
}
.smblog-content .smblog-foot .post-date a {
  color: #999;
  font-size: 14px;
  line-height: 1.2;
  display: inline-block;
}
.smblog-content .smblog-foot .post-date a:hover {
  color: #f8b133;
}

.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
}
.blog-tag a {
  padding: 4px 12px;
  display: inline-block;
  background: #e99820;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 2px;
}

.blog-tag-2 a {
  background: #fcbe00;
  color: #222;
}

.blog-area {
  background-color: #fff;
  padding: 20px 0;
}

.widget {
  padding: 30px 30px;
  border: 2px solid #f3f3f3;
  margin-bottom: 40px;
  background-color: #fff;
}

.chitiet_sale {
  position: relative;
  width: 120%;
  margin-left: -27%;
}

.quangcao_sp_img {
  width: 100%;
  max-width: initial;
}

.quangcao_sp_sale {
  position: absolute;
  font-size: 30px;
  color: #fff;
  left: 11%;
  font-weight: 700;
  top: 7px;
}

.quangcao_sp_giaban {
  position: absolute;
  bottom: 13%;
  right: 0;
  left: 0;
  text-align: center;
}
.quangcao_sp_giaban span {
  display: block;
  line-height: 40px;
  font-style: italic;
  font-size: 16px;
}
.quangcao_sp_giaban span b {
  font-size: 34px;
  display: inline-block;
  position: relative;
  top: 6px;
  font-style: initial;
}
.quangcao_sp_giaban i {
  font-size: 15px;
  font-weight: 600;
}

.quangcao_sp_title {
  position: absolute;
  color: #fff;
  right: 10%;
  font-style: italic;
  font-size: 17px;
  top: 8%;
}

.content_sale ul {
  color: #c1c1c1;
  padding-top: 20px;
  line-height: 30px;
}
.content_sale ul li:before {
  content: "";
  content: "";
}

.head-mobile {
  padding: 10px;
}

.menu-mobi button {
  color: #fff;
  font-size: 16px;
  border: 1px solid;
  border-radius: 0;
  padding: 6px 10px 5px;
  margin-top: 6px;
  outline: none !important;
  box-shadow: none !important;
}
.menu-mobi button i {
  color: #fff;
  width: 23px;
  height: 23px;
  position: relative;
  top: -1px;
}

.giohang-mobile {
  margin-top: 4px;
}

.form-search-nav-mobile {
  margin-bottom: 0 !important;
}
.form-search-nav-mobile input {
  margin-right: 0 !important;
  height: 37px;
  border-radius: 5px !important;
  background-color: #410000;
  color: #fff !important;
}

.dropdown-menu-search-mobile {
  padding: 3px;
  background-color: #fff;
  border-radius: 8px;
}

.btn-search-mobile {
  margin-left: 14px;
  padding: 3px;
  background-color: transparent !important;
  border: none !important;
  margin-top: 10px;
  box-shadow: none !important;
}
.btn-search-mobile i {
  width: 25px;
  height: 25px;
}
.btn-search-mobile:after {
  display: none;
}

.menu__block {
  background: #CCD9FF;
}
.menu__block .menu-mobi {
  display: none !important;
}

.menu__mobi {
  display: none;
}

.list-menu {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
.list-menu li {
  position: relative;
  transition: all ease 0.15s;
}
.list-menu li:hover, .list-menu li.active {
  background-color: var(--color-second);
}
.list-menu li:hover > a, .list-menu li.active > a {
  color: #fff;
}
.list-menu li a {
  font-size: 16px;
  font-weight: 500;
  padding: 6px 10px;
  display: block;
  color: #000;
  text-transform: uppercase;
  cursor: pointer;
  transition: all ease 0.15s;
}
.list-menu li ul li {
  border-bottom: 1px solid #fff;
}
.list-menu li ul li a {
  text-transform: capitalize;
  padding: 10px;
  color: #000;
  font-size: 13px;
}
.list-menu li ul li.sub-nav:hover ul {
  display: block;
}
.list-menu li:hover .box-menu {
  -webkit-transform: rotate3d(0, 0, 0, 0deg);
  -moz-transform: rotate3d(0, 0, 0, 0deg);
  -o-transform: rotate3d(0, 0, 0, 0deg);
  -ms-transform: rotate3d(0, 0, 0, 0deg);
  transform: rotate3d(0, 0, 0, 0deg);
}
.list-menu .box-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  -webkit-box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -o-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  min-width: 200px;
  background: #fff;
}

.list-menu li:hover .boxmn-cap1,
.list-menu li ul li:hover .boxmn-cap2,
.list-menu li ul li ul li:hover .boxmn-cap3,
.list-menu li ul li ul li ul li:hover .boxmn-cap4,
.list-menu li ul li ul li ul li ul li:hover .boxmn-cap5 {
  display: block;
}

.boxmn-cap1 {
  top: 100%;
  left: 0;
  padding-top: 1px;
}

.box-menu.boxmn-cap2,
.box-menu.boxmn-cap3,
.box-menu.boxmn-cap4,
.box-menu.boxmn-cap5 {
  top: 0px;
  left: 100%;
  border-left: 1px solid #fff;
  display: none;
}

.sub-nav {
  position: relative;
}
.sub-nav ul {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 200px;
  background: #410000;
  display: none;
}

.menu__hotline p {
  font-weight: 700;
  margin-bottom: 0px;
}
.menu__hotline i {
  color: var(--color-main);
  margin-right: 8px;
  font-size: 30px;
}
.menu__hotline a {
  color: #ff1616;
  font-size: 16px;
  display: block;
  font-weight: 700;
}

.menu__dmsp {
  width: 230px;
  color: #fff;
  height: 45px;
  line-height: 45px;
  text-transform: uppercase;
  background: red;
  font-size: 14px;
  padding-left: 10px;
}
.menu__dmsp i {
  font-size: 17px;
  vertical-align: sub;
}

.danhmuc_left {
  overflow: hidden;
  padding-bottom: 15px;
}

.left {
  width: 310px;
  width: 345px;
}
.left .box-left {
  margin-bottom: 30px;
}

.title-home2 {
  font-size: clamp(0.5rem, 0.531rem + 7.57vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  background: var(--color-main);
  position: relative;
  padding: 16px 10px;
  z-index: 1;
  margin-bottom: 0px;
}
.title-home2 h3 {
  margin-bottom: 0px;
}

.box-cap2 {
  display: none;
  position: relative;
  margin-bottom: 0px;
}
.box-cap2 li a {
  padding-left: 50px;
  background: url(../images/arrow_right.png) left 30px center no-repeat;
  padding-left: 35px;
  background: url(../images/arrow_right.png) left 30px center no-repeat;
}

.left__box {
  position: relative;
  margin-bottom: 0px;
}
.left__box li {
  margin-top: 1px;
}
.left__box li a {
  font-size: clamp(0.5rem, 0.531rem + 7.57vw, var(--size-title));
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  padding: 8px 10px;
  display: block;
  background: #efefef;
  position: relative;
}
.left__box li i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-main);
}

.right {
  width: calc(100% - 330px);
  width: calc(100% - 375px);
}

.footer {
  background-color: var(--color-main);
  line-height: 22px;
}
.footer .visited p {
  margin-bottom: 0px;
}
.footer .visited p + p {
  margin-left: 10px;
}

.copy-right {
  color: #000;
  border-top: 1px solid #fff;
}
.copy-right a {
  color: #000;
}

.hotr__box {
  display: flex;
  border: 1px solid #da251d;
  align-items: center;
  margin-bottom: 15px;
}

.hotr__left {
  width: 125px;
  border-radius: 0 85px 85px 0;
  overflow: hidden;
  border-right: 2px solid #da251d;
  position: relative;
  z-index: 9;
}
.hotr__left .img-container {
  padding-bottom: 116%;
}

.hotr__right {
  margin-left: 20px;
  flex-grow: 1;
  font: 14px "ro-l";
}

.hotr__ten {
  margin-bottom: 15px;
  background: #da251d;
  display: inline-block;
  color: #fff;
  padding: 4px 35px;
  padding-left: 50px;
  margin-left: -50px;
  position: relative;
}
.hotr__ten:after {
  content: "";
  display: inline-block;
  width: 23px;
  height: 25px;
  position: absolute;
  right: -23px;
  background: #da251d;
  top: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.hotr__dienthoai {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.hotr__dienthoai i {
  margin-right: 6px;
}

.hotr__email {
  display: flex;
  align-items: center;
}
.hotr__email i {
  margin-right: 6px;
}

.hotr__mxh {
  margin-top: 10px;
}
.hotr__mxh li {
  margin-right: 7px;
}

.title-main {
  position: relative;
  margin: auto;
  margin-bottom: 2rem;
  display: table;
}
.title-main h2 {
  font-size: var(--size-title-main);
  color: var(--color-second);
  text-transform: uppercase;
  margin: 0 30px;
  margin-bottom: 0;
  font-weight: 700;
}
.title-main a {
  font-style: italic;
  color: #484848;
}
.title-main span {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  font-family: "lucy-r";
  color: rgba(41, 67, 143, 0.5215686275);
  margin-bottom: 5px;
}
.title-main-line {
  text-align: center;
}
.title-main img:nth-child(1) {
  left: -100px;
}
.title-main img:nth-child(2) {
  right: -100px;
}

.title-main1 {
  margin-bottom: 2rem;
}
.title-main1 h3 {
  font-size: clamp(0.5rem, 0.531rem + 7.57vw, 1.25rem);
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  background: url(../images/icon.png) left center no-repeat;
  padding-left: 45px;
  margin-bottom: 0px;
}

.title-main2 {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}
.title-main2 h2 {
  color: var(--color-main);
  margin-bottom: 0px;
  font-size: var(--size-title-main);
  text-transform: uppercase;
  margin-right: 20px;
  flex: none;
  font-weight: 700;
}
.title-main2:after {
  content: "";
  display: inline-block;
  background: #ccc;
  width: 100%;
  height: 1px;
}

.title-main3 {
  display: table;
  margin: auto;
  margin-bottom: 2rem;
}
.title-main3:after {
  content: "";
  display: block;
  width: 255px;
  height: 25px;
  background: url("../images/td2.png");
  margin: auto;
}
.title-main3 h3 {
  font-size: clamp(0.5rem, 0.531rem + 7.57vw, var(--size-title-main));
  font-weight: 700;
  color: var(--color-main);
  text-transform: uppercase;
}

.box-arr {
  margin-right: 15px;
  display: flex;
}
.box-arr span {
  width: 42px;
  height: 42px;
  background: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-main);
  font-size: 20px;
  cursor: pointer;
}
.box-arr span + span {
  margin-left: 10px;
}

.sanpham__item {
  overflow: hidden;
  display: block;
  transition: 0.5s;
  margin: 8px;
  box-shadow: 0px 0px 8px -3px rgba(0, 0, 0, 0.3411764706);
  position: relative;
}
.sanpham__item h3 {
  font-size: var(--size-title);
  color: #070707;
}
.sanpham__item:hover .sanpham__mask {
  opacity: 1;
  visibility: visible;
}
.sanpham__inner:before {
  content: "";
  position: absolute;
  width: 83px;
  height: 25px;
  top: -25px;
  right: 0;
  background: url("../images/td.png");
}
.sanpham__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 165, 69, 0.7882352941);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.5s;
}

.btn-more {
  background: var(--color-main);
  color: #fff;
  padding: 5px 18px;
  border-radius: 26px;
  text-transform: uppercase;
  font-family: "Be Vietnam Pro";
  font-weight: 300;
  font-size: 13px;
  margin-top: 10px;
}

.slick-dv2 .dv2__item {
  margin: 0 10px;
}

.sanpham__img {
  position: relative;
}
.sanpham__img .img-container {
  padding-bottom: 100%;
}
.sanpham__img img {
  object-fit: contain;
}

.sanpham__box {
  padding: 10px;
}

.gia-ban {
  font-size: 16px;
  color: #e93514;
}

.giamoi {
  color: var(--color-main);
}

.giacu {
  font-size: 13px;
  text-decoration: line-through;
  color: #686666;
  margin-left: 5px;
}

.ft__title {
  font: 18px "Be Vietnam Pro";
  color: #fff;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.sidebar-title {
  font-size: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid #f3f3f3;
  padding-bottom: 16px;
  line-height: 1;
  font-family: "Roboto";
}

.featured-author p {
  padding: 0 20px;
}
.featured-author h6 {
  font-size: 18px;
  line-height: 46px;
  margin-bottom: 0;
}

.featured-author-social li {
  display: inline-block;
}
.featured-author-social li a {
  font-size: 14px;
  color: #222;
  display: inline-block;
  margin: 0 10px;
}
.featured-author-social li a:hover {
  color: #fcbe00;
}

.n-sidebar-search {
  position: relative;
}
.n-sidebar-search input {
  padding-left: 30px;
  padding-right: 80px;
  background: #f5f5f5;
  height: 60px;
  width: 100%;
  border: 0;
  outline: none;
}
.n-sidebar-search input::placeholder {
  color: #999;
}
.n-sidebar-search button {
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background: #e99820;
  color: #fff;
  font-size: 14px;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
}

.feed-content h6 {
  font-size: 15px;
  line-height: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.feed-content h6:hover {
  color: #fcbe00;
}
.feed-content a {
  color: #000;
}

.feed-number img {
  margin-right: 20px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
}

.n-sidebar-feed ul {
  padding: 0;
}
.n-sidebar-feed ul li:first-child {
  padding-top: 0;
}
.n-sidebar-feed ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.title-news_ct {
  font-size: 20px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-main);
  padding-bottom: 10px;
  position: relative;
}
.title-news_ct:after {
  content: "";
  position: absolute;
  bottom: -3px;
  height: 5px;
  background-color: var(--color-main);
  left: 0;
  width: 155px;
}

.box_tacgia {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 10px;
  margin-top: 30px;
}

.box_tacgia_avata img {
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
}

.box_tacgia_tt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}

.swal-title {
  margin-bottom: 20px;
}

.cart__price {
  padding-right: 10px;
}

.invoice-1 .invoice-info-buttom .table .invoice-1 .invoice-info-buttom .table tr {
  border: 1px solid #e9ecef;
}

.table tr {
  border: 1px solid #e9ecef;
}

.detail-qty {
  max-width: 80px;
  padding: 9px 20px;
  position: relative;
  width: 100%;
  border-radius: 5px;
}
.detail-qty span {
  position: absolute;
  right: 0;
  color: #2a2a28;
  width: 20px;
  line-height: 35px;
  cursor: pointer;
  font-size: 10px;
}
.detail-qty > span.qty-down {
  left: 0;
  right: auto;
}
.detail-qty > span.qty-up {
  top: auto;
}

.detail-extralink > div {
  display: inline-block;
  vertical-align: top;
}
.detail-extralink .detail-qty {
  margin: 0 6px 15px 0;
  background: #fff;
  border: 1px solid #cccccc !important;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  font-variant: JIS04;
  padding: 0px 20px 0px 20px;
  max-width: 90px;
  margin-bottom: 0;
}

.p-40 {
  padding: 40px !important;
}

.heading-2 {
  font-size: 24px;
  text-transform: uppercase;
}

.num_sl {
  width: 45px;
  text-align: center;
  border: none;
  box-shadow: none;
  width: 45px;
  text-align: center;
  border: none;
  outline: none;
  box-shadow: none;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  height: 35px;
}

.cart-action {
  margin-bottom: 30px;
}
.cart-action .btn {
  background-color: #e99820;
  font-family: "Roboto";
  font-size: 14px;
  padding: 10px 20px;
}

.form-dathang {
  margin-bottom: 30px;
}
.form-dathang .form-group label {
  margin-bottom: 5px;
  color: #000;
  display: none;
}
.form-dathang .form-control,
.form-dathang .form-select {
  font-size: 14px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  text-indent: 10px;
  font-weight: 300;
}

.btn-dathang {
  background-color: #e99820;
  font-family: "Roboto";
  font-size: 14px;
  padding: 10px 20px;
  width: 100%;
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
}

.nav-mobile {
  list-style: none;
  padding: 0;
}
.nav-mobile .dropdown-menu {
  position: inherit !important;
  transform: none !important;
  border: none;
  padding-left: 15px;
}
.nav-mobile > li > a:after {
  float: right;
  position: relative;
  top: 8px;
}

.form-search-nav {
  position: relative;
  margin-left: 0;
  margin-bottom: 20px;
}
.form-search-nav input {
  font-size: 13px;
  border-radius: 30px;
  border: 1px solid #000000;
  color: #000000;
  font-size: 13px;
  padding: 10px 10px;
}

.chitiet_sp img {
  max-width: 100%;
  height: auto !important;
}
.chitiet_sp h2 {
  border-bottom: 1px solid #b78f5b;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
}
.chitiet_sp h2 strong {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
.chitiet_sp h2 strong:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #b6915d;
  bottom: -7px;
}
.chitiet_sp h2 strong:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid #b6915d;
  border-right: 10px solid transparent;
  position: absolute;
  right: -10px;
  bottom: -7px;
}

.news-detalis img {
  max-width: 100%;
  height: auto !important;
}

.gia_sale {
  float: right;
  font-weight: 300;
}

.gia_thuoctinh:after {
  content: "";
  display: block;
  clear: both;
}

.tintuc_home {
  padding-top: 15px !important;
  padding-bottom: 30px !important;
}

.tt__item {
  background: #fff;
  display: block;
  text-align: center;
}
.tt__item h3 {
  font-size: 13px;
  font-family: "Be Vietnam Pro";
  font-weight: 400;
  font: 16px "mon-l";
  color: #070707;
}

.tt__desc {
  color: #636363;
  font: 13px "Be Vietnam Pro";
}

.tt__date {
  color: var(--color-main);
  font-family: "Be Vietnam Pro";
  font-weight: 700;
  font: 13px "mon-l";
  color: #070707;
}
.tt__date i {
  color: var(--color-main);
}

.col-left-ctsp {
  width: 81%;
}

.col-right-ctsp {
  width: 19%;
}

.box_right_sp_title2 {
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 700;
}

.danhgia_ct {
  display: flex;
  margin-bottom: 10px;
}
.danhgia_ct .rating-d {
  list-style: none;
  padding: 0;
  color: #e99820;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 0;
}
.danhgia_ct span {
  color: rgba(199, 197, 197, 0.8);
}
.danhgia_ct span b {
  color: #fff;
}

.nav_sub {
  width: 70%;
  overflow: hidden;
  white-space: nowrap;
}

.nav-item.dropdown:hover ul {
  display: block;
}

.lienhhe-fix {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background-color: #b10015;
  z-index: 100;
  color: #fff;
  padding: 10px 30px;
  text-transform: uppercase;
  border-radius: 3px;
}

.box_lienhe {
  padding: 25px !important;
  width: 400px;
}

.tuvan_title {
  background-color: #b10015;
  margin-top: -25px;
  margin-left: -25px;
  margin-right: -25px;
  padding: 10px 25px;
  color: #fff;
  text-align: center;
  font-family: "Roboto";
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 30px;
}

.form_input_icon {
  position: relative;
}
.form_input_icon span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #706d6d;
}
.form_input_icon input {
  padding-left: 35px;
  height: 38px;
}

.phuongthuc_thanhtoan {
  margin-top: 30px;
}

.btn-tuvan {
  background-color: #b10015;
  color: #fff;
  padding: 7px 30px;
  text-transform: uppercase;
}

.btn-thanhtoan {
  font-size: 14px;
  display: block;
  width: 100%;
  border: 1px solid #ececec;
  background-color: #ececec;
  padding: 10px;
}
.btn-thanhtoan.active {
  display: block;
  width: 100%;
  border: 1px solid #e99820;
  background-color: #e99820;
  color: #000;
  font-weight: 500;
}

.thanhtoan_content {
  margin-top: 10px;
  border: 1px solid #ececec;
  padding: 20px;
  margin-bottom: 30px;
}

.swiper-button-next {
  color: #e99820 !important;
}

.swiper-button-prev {
  color: #e99820 !important;
}

.box_right_sp_kh {
  margin-top: 0px !important;
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
}

.sanpham__percent {
  position: absolute;
  top: 0;
  right: 0;
  background: red;
  color: #fff;
  display: block;
  padding: 2px 8px;
  border-radius: 5px;
}

.thongsosp li {
  padding: 8px 0;
  border-bottom: 1px solid #ccc;
}

.tensp h2 {
  font-size: clamp(1rem, 0.531rem + 7.57vw, 1.5rem);
  font-weight: 700;
  color: red;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.discount {
  border-radius: 3px;
  background: red;
  color: #fff;
  vertical-align: top;
  margin-left: 1rem;
  font-size: 13px;
  padding: 3px;
}

.price-new {
  font-size: 20px;
  color: red;
}

.price-old {
  color: #a2a2a2;
  text-decoration: line-through;
  font-size: 14px;
  margin-left: 1rem;
}

.thumb-item {
  border: 1px solid rgba(204, 204, 204, 0.3098039216);
  display: block;
  margin: 0 2px;
}

.slick-prev.pull-left {
  left: 0;
}

.slick-next.pull-right {
  right: 0;
}

.pull-right {
  width: 30px;
  height: 30px;
  z-index: 99;
}
.pull-right i {
  color: red;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.5s;
  transform: scale(1.5);
}
.pull-right:before {
  display: none;
}

.pull-left {
  width: 30px;
  height: 30px;
  z-index: 99;
}
.pull-left i {
  color: red;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.5s;
  transform: scale(1.5);
}
.pull-left:before {
  display: none;
}

.slide-sp-main:hover .pull-right i {
  opacity: 1;
}
.slide-sp-main:hover .pull-left i {
  opacity: 1;
}

.muangay {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--color-main);
  padding: 10px;
  border-radius: 3px 0 3px 0;
  width: 37px;
  height: 37px;
  color: #fff;
}

.muahangshopee a {
  color: #fff;
}

.heading_s1 h1 {
  font-size: 40px;
  font-weight: 600;
  color: var(--color-main);
}

.payment_option .custome-radio {
  margin-bottom: 10px;
}
.payment_option .custome-radio .form-check-label {
  color: #292b2c;
  font-weight: 600;
}

.custome-radio .form-check-label {
  position: relative;
  cursor: pointer;
}
.custome-radio .form-check-label::before {
  content: "";
  border: 1px solid #908f8f;
  height: 16px;
  width: 16px;
  display: inline-block;
  border-radius: 100%;
  vertical-align: middle;
  margin-right: 8px;
}
.custome-radio input[type=radio] + .form-check-label::after {
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 100%;
  position: absolute;
  top: 6px;
  left: 3px;
  opacity: 0;
}
.custome-radio input[type=radio]:checked + .form-check-label::after {
  opacity: 1;
  background-color: #f8b133;
}
.custome-radio .form-check-input {
  display: none;
}

.custome-checkbox .form-check-label {
  position: relative;
  cursor: pointer;
}
.custome-checkbox .form-check-label::before {
  content: "";
  border: 2px solid #ced4da;
  height: 17px;
  width: 17px;
  margin: 0 8px 0 0;
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
}
.custome-checkbox .form-check-label span {
  vertical-align: middle;
}
.custome-checkbox .form-check-input {
  display: none;
}
.custome-checkbox input[type=checkbox] + .form-check-label::after {
  content: "";
  width: 11px;
  position: absolute;
  top: 50%;
  left: 3px;
  opacity: 0;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateY(-65%) rotate(-45deg);
  transform: translateY(-65%) rotate(-45deg);
}
.custome-checkbox input[type=checkbox]:checked + .form-check-label::before {
  background-color: #f8b133;
  border-color: #f8b133;
}
.custome-checkbox input[type=checkbox]:checked + .form-check-label::after {
  opacity: 1;
}

.login_footer {
  margin-bottom: 30px;
  margin-top: 5px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
}

label.error {
  color: red;
  font-style: italic;
  font-size: 14px;
}

.video__item {
  position: relative;
  width: 100%;
  display: block;
}

.video__play {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85px;
  height: 85px;
  border: 3px solid #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.368627451);
}
.video__play i {
  font-size: 35px;
}

.video__nd {
  color: #fff;
}

.booking .title-main h3 {
  color: #fff;
}

.dknt-button {
  color: #fff;
  padding: 8px 24px;
  text-transform: uppercase;
  border-radius: 0px;
  background: var(--color-main);
  height: 39px;
  border-radius: 99px;
  border: none;
  margin-right: 2px;
  margin-top: 2px;
}

.dknt input.form-control {
  height: 43px;
  border-radius: 0px;
  border: none;
}
.dknt form {
  background: #fff;
  border-radius: 99px;
  overflow: hidden;
}

.input-group-text {
  background: #6cadaa;
}

.dknt-form {
  background: url("../images/bgdknt.png");
  background-size: cover;
  padding: 30px;
  margin-top: -40px;
  position: relative;
  margin-left: 40px;
}
.dknt-form:before {
  content: "";
  width: 30px;
  height: 42px;
  background: var(--color-main);
  display: block;
  position: absolute;
  left: -29px;
  top: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.dknt-form .dknt-title {
  color: #fff;
  font: 24px "dvn-eb";
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}

.sanpham .title-home2 {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.xemthem {
  color: #fff;
  font: 14px "ro-r";
  text-transform: initial;
}

.gioithieu {
  margin-bottom: 7rem;
}

.gt__right {
  background: rgba(1, 63, 114, 0.6588235294);
  margin-bottom: -60px;
}
.gt__right h3 {
  color: #fff;
  font: 30px "mon-l";
  text-transform: uppercase;
}

.gt__desc {
  font: 14px "mon-l";
  color: #fff;
}

.btn-xemthem {
  color: var(--color-font-light);
}
.btn-xemthem:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-font-light);
  transition: width ease 0.5s;
}
.btn-xemthem:hover:after {
  width: 0%;
}

.gt__body {
  bottom: 0;
  right: 0;
  position: absolute;
}

.gt__img img {
  width: 100%;
}

.prod-list {
  display: flex;
  justify-content: center;
  margin-bottom: 55px;
  padding: 0;
}
.prod-list li {
  margin: 0 5px;
  font: 15px "mon-l";
  color: var(--default-color);
  border: 1px solid var(--default-color);
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 3px;
  transition: 0.5s;
  white-space: nowrap;
}
.prod-list li:hover {
  color: var(--color-main);
}
.prod-list li.active {
  color: var(--color-main);
}

.tt__body {
  border: 1px solid #898989;
  border-top: 0px;
  position: relative;
  padding-top: 35px !important;
}

.album__img {
  padding-bottom: 81.81%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide-active .kh__desc {
  opacity: 1;
}

.blockdmsp1 {
  margin-bottom: 45px;
}
.blockdmsp1__banner {
  padding-bottom: 266%;
}

.box__cap1 {
  padding: 6px 0;
  list-style: none;
  height: 340px;
  overflow-y: scroll;
  background: var(--color-main);
}
.box__cap1 li a {
  padding: 8px 12px;
  display: block;
  font-size: 14px;
  position: relative;
  color: #fff;
  text-transform: uppercase;
}
.box__cap1 li a:before {
  content: "\f105";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  margin-right: 4px;
  font-size: 9px;
}
.box__cap1 li a i {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.box__cap1 li:hover .box__cap2 {
  opacity: 1;
  visibility: visible;
}
.box__cap1::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}
.box__cap1::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}
.box__cap1::-webkit-scrollbar-thumb {
  background-color: #D4D118;
}

.box__cap2 {
  list-style: none;
  padding: 0;
  position: absolute;
  left: 100%;
  width: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.xemtatca {
  background: var(--color-main);
  border: 1px solid var(--color-main);
  padding: 0 20px;
  position: relative;
  height: 44px;
  line-height: 44px;
  transition: all ease 0.5s;
}
.xemtatca i {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #D4D118;
  font-size: 22px;
  position: absolute;
  top: 50%;
  left: -1px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all ease 0.5s;
}
.xemtatca span {
  padding-left: 41px;
  display: block;
  color: #fff;
  transition: all ease 1s;
}
.xemtatca:hover {
  background: #fff;
}
.xemtatca:hover i {
  left: calc(100% - 45px);
}
.xemtatca:hover span {
  padding-left: 0px;
  padding-right: 41px;
  color: var(--color-main);
}

.kh__img {
  width: 85px;
  height: 85px;
}
.kh__img .img-container {
  padding-bottom: 100%;
}
.kh__img .img-container img {
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid var(--color-main);
}

.kh__item {
  border: 1px solid #349027;
  padding: 20px;
  border-radius: 25px;
}

.kh__ten {
  color: #3eae2e;
  font-size: 16px;
  font-weight: 500;
}

.kh__chucvu {
  font-size: 16px;
}

.kh__desc {
  color: #070707;
}

.kh__block {
  position: relative;
}
.kh__block:after {
  content: "\f10e";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: -15px;
  right: 0;
  font-size: 45px;
  color: #c6e6c2;
}

.aboutus__pic {
  padding-bottom: 86%;
}
.aboutus__right .img-container {
  padding-bottom: 114%;
}
.aboutus__label {
  text-transform: uppercase;
  color: var(--color-main);
  font-weight: 500;
}
.aboutus__title {
  font-size: var(--size-title-main);
  text-transform: uppercase;
  font-weight: 700;
}
.aboutus__btn {
  border: 1px solid var(--color-main);
  border-radius: 99px;
  margin-top: 1rem;
  color: var(--color-main);
}
.aboutus__btn i {
  margin-left: 5px;
}
.aboutus__label {
  font-family: "lucy-r";
}

.tintuc__itembig {
  position: relative;
}
.tintuc__innerbig {
  margin-bottom: 0px;
  padding: 10px;
}
.tintuc__img .img-container {
  padding-bottom: 100%;
}

.visao {
  position: relative;
}
.visao__item {
  position: relative;
}
.visao__inner {
  margin-top: -30px;
  min-height: 140px;
}
.visao__pic {
  width: 60px;
  height: 58px;
  margin: auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  position: relative;
}
.visao__pic img {
  object-fit: contain;
}
.visao__left .img-container img {
  object-fit: contain;
}

.bannerqcbot .img-container {
  padding-bottom: 28%;
}

.project__pic .img-container {
  padding-bottom: 100%;
}

.videoindex__slick2 a {
  display: block;
  margin: 0 5px;
}
.videoindex__slick2 .video__play {
  width: 45px;
  height: 45px;
}
.videoindex__slick2 .video__play i {
  font-size: 20px;
}

.bvmoi-list h3 {
  font-size: 13px;
}
.bvmoi-list a.slick-slide {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}
.bvmoi-list a.slick-slide .img-container {
  padding-bottom: 100%;
}

.product_promo {
  color: var(--color-main);
  font-weight: 700;
  font-size: 18px;
}
.product_price {
  text-decoration: line-through;
  font-size: 14px;
  margin-right: 18px;
}
.product__title a {
  color: var(--color-main);
  font-size: 20px;
  font-weight: 700;
}
.product__pic {
  padding-bottom: 75%;
}

.contact-info i {
  width: 55px;
  height: 55px;
  font-size: 20px;
  color: #fff;
  border-radius: 50%;
  background-color: var(--color-second);
}

.infoma__box {
  min-height: 125px;
}
.infoma__box:nth-child(1) .infoma__item {
  background: url("../img/box1.png") no-repeat;
}
.infoma__box:nth-child(2) .infoma__item {
  background: url("../img/box2.png") no-repeat;
}
.infoma__box:nth-child(3) .infoma__item {
  background: url("../img/box3.png") no-repeat;
}
.infoma__box:nth-child(4) .infoma__item {
  background: url("../img/box4.png") no-repeat;
}
.infoma__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spbanchay__pic img {
  width: 100%;
  height: 100%;
}
.spbanchay__title {
  line-height: 18px;
}
.spbanchay .btn.btn-second {
  color: #fff;
  float: right;
}
.spbanchay .btn.btn-second:hover {
  color: var(--color-second);
}

.whychooseus {
  overflow: hidden;
}
.whychooseus__item {
  border-radius: 0 30px;
}
.whychooseus__title {
  display: flex;
  align-items: end;
  justify-content: center;
}
.whychooseus__title img {
  margin-right: 5px;
}
.whychooseus__inner {
  margin-top: -75px;
}
.whychooseus__block:nth-child(2) .whychooseus__row, .whychooseus__block:nth-child(3) .whychooseus__row {
  justify-content: end;
}
.whychooseus .title-main {
  position: relative;
}
.whychooseus .title-main:after {
  content: "";
  position: absolute;
  background-color: #fff;
  top: -220%;
  left: 50%;
  transform: translateX(-50%);
  width: 485px;
  height: 485px;
  border-radius: 50%;
  z-index: 1;
}
.whychooseus .title-main-inner {
  position: relative;
  z-index: 99;
}

.connect__desc {
  position: absolute;
  color: #fff;
  width: 65%;
  top: 35%;
  left: -50%;
  transform: translateY(-50%);
  padding: 45px 20px;
  z-index: 99;
}
.connect__desc:after {
  content: "";
  width: 25px;
  height: 25px;
  border-top: 25px solid #576FB8;
  border-left: 25px solid transparent;
  position: absolute;
  bottom: -25px;
  right: 96px;
}/*# sourceMappingURL=style.css.map */