html.is-page-home {
  overflow-x: hidden;
}

html.is-page-home body {
  overflow-x: hidden;
}

.advantages {
  text-align: center;
  padding: 3rem 0;
}

.advantages__title {
  color: var(--color-main);
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.advantages__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.advantages__item {
  text-align: center;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.advantages__icon {
  width: 80px;
}

.advantages__icon img {
  width: 100%;
}

.advantages__text {
  font-weight: 700;
  line-height: 1.4;
}

.common-ttl {
  font-size: 28px;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
  color: var(--color-main);
  display: flex;
  align-items: center;
  gap: 10px;
}
.common-ttl small{
	font-size: 60%;
}
@media (max-width: 767px) {
  .common-ttl {
    font-size: 24px;
  }
}

.common-ttl::before,
.common-ttl::after {
  content: "";
  height: 1px;
  background: var(--color-main);
  flex: 1;
}

.our-sellers {
  background: #efefee;
  padding: 30px 0;
  color: var(--color-main);
}

.sellers-block:not(:last-child) {
  margin-bottom: 20px;
}

.sellers-block > .row {
  --gutter: 10px;
  gap: 20px 0;
}

.sellers-block__banner {
  height: 100%;
}

.sellers-block__banner img {
  width: 100%;
  height: 100%;
}

.sellers-block__ttl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.sellers-block--row > .row {
  flex-direction: row-reverse;
}

.js-slide-sellers .slick-list {
  margin: 0 -5px;
}

.js-slide-sellers .slick-slide {
  margin: 0 5px;
}

.sellers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.product-view {
  background: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 8px #00000021;
  position: relative;
  z-index: 1;
}

.product-view::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  background: white;
  border-radius: 5px;
}

.product-view__img {
  line-height: 1;
  margin-bottom: 10px;
}

.product-view__img > a {
  display: block;
  padding-top: 110%;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.product-view__img > a:hover img {
  transform: scale(1.1);
}

.product-view__img > a img {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  transition: all 0.7s ease-in-out;
}

.product-view__ttl {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
}

.product-view__ttl > * {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-view__price {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.product-view__price-old {
  font-weight: 700;
  color: red;
}

.product-view__price-original {
  text-decoration: line-through;
  color: gray;
}

.product-view__price-contact {
  color: red;
}

.sellers-product {
  padding: 30px 0;
}

.sellers-product__slide .slick-list {
  margin: 0 -10px;
}

.sellers-product__slide-item {
  padding: 10px;
}

.sec-certificate {
  background: #efefee;
  padding: 30px 0;
}

.common-arrow .slick-arrow {
  -ms-flex-align: center;
  position: absolute;
  align-items: center;
  background: var(--color-main);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  padding: 0;
  top: 50%;
  width: 40px;
  height: 40px;
  font-size: 0.85rem;
  z-index: 1;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: 0.25s ease-in-out;
  opacity: 0;
}

@media (max-width: 768px) {
  .common-arrow .slick-arrow {
    width: 30px;
    height: 30px;
  }
}

.common-arrow .slick-arrow svg {
  width: 20px;
  height: 20px;
}

.common-arrow .slick-arrow.slick-prev {
  left: -15px;
}

@media (max-width: 768px) {
  .common-arrow .slick-arrow.slick-prev {
    left: -7px;
  }
}

.common-arrow .slick-arrow.slick-prev svg {
  transform: rotate(-180deg);
}

.common-arrow .slick-arrow.slick-next {
  right: -15px;
}

@media (max-width: 768px) {
  .common-arrow .slick-arrow.slick-next {
    right: -7px;
  }
}

.common-arrow:hover .slick-arrow {
  opacity: 1;
}

.faq {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-block {
  padding: 30px 0;
}

.faq-list__title {
  margin-bottom: 24px;
  font-size: 28px;
  color: #333;
}

.faq-list__item:not(:first-child) {
  border-top: 1px solid #d0dffc;
}

.faq-list__item.is-open .faq-list__question-icon svg {
  transform: rotate(180deg);
}

.faq-list__question {
  width: 100%;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
}

.faq-list__question-icon {
  position: absolute;
  left: 5px;
  top: 16px;
  line-height: 0;
}

.faq-list__question-icon svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.faq-list__question-icon svg path {
  stroke: currentColor;
}

.faq-list__question:hover {
  color: var(--color-main);
}

.faq-list__answer {
  display: none;
  padding: 14px 18px;
  border-top: 1px solid #d0dffc;
  color: #333;
  background: aliceblue;
}

.sec-team {
  padding: 30px 0;
}

.team-card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  height: 100%;
}

.team-card__image {
  line-height: 1;
}

.team-card__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-card__info {
  padding: 16px;
  background: #f9f9f9;
}

.team-card__name {
  font-size: 20px;
  font-weight: bold;
  margin: 4px 0;
  text-transform: uppercase;
}

.team-card__title {
  font-size: 14px;
  color: var(--color-main);
  margin: 2px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-card__phone {
  font-size: 16px;
  font-weight: 600;
  color: #111;
}

.team-contact {
  padding: 30px 0;
  background: #f9f9f9;
}

.team-contact__row {
  --gutter: 10px;
  gap: 20px 0;
}

.team-contact__map {
  height: 100%;
}

.team-contact__map iframe {
  width: 100%;
  min-height: 350px;
  height: 100%;
}

.noi_dung_in {
  text-align: justify;
  line-height: 1.4;
}

.noi_dung_in h1 {
  font-size: 28px;
}

.noi_dung_in h2 {
  font-size: 24px;
}

.noi_dung_in h3 {
  font-size: 22px;
}

.noi_dung_in h4 {
  font-size: 20px;
}

.noi_dung_in h5 {
  font-size: 18px;
}

.noi_dung_in h6 {
  font-size: 17px;
}

.noi_dung_in h1,
.noi_dung_in h2,
.noi_dung_in h3,
.noi_dung_in h4,
.noi_dung_in h5,
.noi_dung_in h6 {
  font-weight: 700;
}

.noi_dung_in h1:not(:last-child),
.noi_dung_in h2:not(:last-child),
.noi_dung_in h3:not(:last-child),
.noi_dung_in h4:not(:last-child),
.noi_dung_in h5:not(:last-child),
.noi_dung_in h6:not(:last-child) {
  margin-bottom: 15px;
}

.noi_dung_in em {
  display: block;
}

.noi_dung_in ul,
.noi_dung_in ol {
  margin-left: 18px;
}

.noi_dung_in ul li,
.noi_dung_in ol li {
  margin-left: 0;
}

.noi_dung_in ol li {
  list-style: decimal;
  position: relative;
}

.noi_dung_in ul li {
  list-style: disc;
}

.noi_dung_in ul:not(:last-child),
.noi_dung_in ol:not(:last-child),
.noi_dung_in li:not(:last-child),
.noi_dung_in div:not(:last-child),
.noi_dung_in p:not(:last-child) {
  margin-bottom: 10px;
}

.noi_dung_in p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.noi_dung_in iframe {
  max-width: 100%;
}

@media (max-width: 992px) {
  .noi_dung_in:not(.table-mobile) table tr,
  .noi_dung_in:not(.table-mobile) table td,
  .noi_dung_in:not(.table-mobile) table th,
  .noi_dung_in:not(.table-mobile) table tbody,
  .noi_dung_in:not(.table-mobile) table thead {
    display: block;
    width: 100% !important;
    padding: 0 !important;
  }

  .noi_dung_in:not(.table-mobile) table tr:not(:last-child),
  .noi_dung_in:not(.table-mobile) table td:not(:last-child),
  .noi_dung_in:not(.table-mobile) table th:not(:last-child),
  .noi_dung_in:not(.table-mobile) table tbody:not(:last-child),
  .noi_dung_in:not(.table-mobile) table thead:not(:last-child) {
    margin-bottom: 10px;
  }
}

.noi_dung_in table {
  width: 100%;
}

.noi_dung_in table:not(:last-child) {
  margin-bottom: 10px;
}

.noi_dung_in table tr:last-child,
.noi_dung_in table td:last-child,
.noi_dung_in table th:last-child,
.noi_dung_in table tbody:last-child,
.noi_dung_in table thead:last-child {
  margin-bottom: 0;
}

.noi_dung_in table tr td {
  margin-bottom: 0;
}

.noi_dung_in #toc-list li {
  list-style: none;
}

.noi_dung_in img {
  max-width: 100%;
  display: inline-block;
}

.news_note:not(:last-child) {
  margin-bottom: 20px;
}

#myTabContent .header-left-tomtat,
#myTabContent .header-tomtat {
  margin-bottom: 0;
}

#myTabContent ol#toc-list {
  padding-left: 0;
}

#myTabContent .header-right-tomtat svg {
  transition: all 0.3s ease;
  transform: rotate(90deg);
}

#myTabContent.active-scroll .header-right-tomtat svg {
  transform: rotate(-90deg);
}

.btn:focus,
.btn:focus-visible,
button:focus,
button:focus-visible,
a:focus,
a:focus-visible {
  outline: none;
}

.btn:active,
button:active,
a:active {
  outline: none;
}

.btn:active:focus,
button:active:focus,
a:active:focus {
  outline: none;
}

