/* Fonts */
@font-face {
  font-family: "UTM American Sans";
  src: url("../fonts/UTMAmericanSans.woff2") format("woff2"),
    url("../fonts/UTMAmericanSans.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mistral";
  src: url("../fonts/Mistral.woff2") format("woff2"),
    url("../fonts/Mistral.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-main: #72b448;
  --color-hover: #105e0f;
  --color-text: #000;
  --color-content: #555;
  --color-background: #fff;
  --font-roboto: "Roboto", sans-serif;
  --font-oswald: "Oswald", sans-serif;
  --font-playfair: "Playfair Display", serif;
  --font-roboto-condensed: "Roboto Condensed", sans-serif;
  --font-utm-american-sans: "UTM American Sans", sans-serif;
}

body {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--font-roboto);
  background: var(--color-background);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-roboto);
}

.body-container {
  position: relative;
  overflow: hidden;
}

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

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

* {
  box-sizing: border-box;
}

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

ol,
ul {
  list-style: unset;
}

.content-text a {
  color: #0d6efd;
  text-decoration: underline;
}

.social-plugin {
  display: flex;
  gap: 2px;
  margin: 12px 0;
}

.scale-img {
  display: block;
  overflow: hidden;
}
.scale-img img {
  transform: scale(1, 1);
  transition: all 0.3s ease;
}
.scale-img:hover img {
  transform: scale(1.1, 1.1);
  transition: all 0.3s ease;
}

.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 All */
.transition,
.btn-frame .kenit-alo-circle-fill {
  transition: 0.3s all;
}

/* header */
.header-top {
  padding: 15px 0;
  background: #008001;
  font-family: var(--font-playfair);
  border-bottom: 1px solid #fff;
  color: #fff;
}

.header-email p span {
  font-weight: 700;
}

.header-top .header-cols:nth-child(1) marquee {
  display: inline-flex;
  color: #2b2b2b;
  font-size: 13px;
  font-weight: 400;
}

.header-top .header-hotline img {
  margin-right: 4px;
}

.header-top .header-hotline span {
  color: var(--color-main);
  font-size: 14px;
  font-weight: 700;
}

/* Menu */
.fixed-menu {
  position: fixed !important;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.fixed-menu .menu {
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.4);
}

.menu {
  position: relative;
  z-index: 100;
  padding: 7px 0px;
  background: #008001;
}
.menu ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.menu ul li {
  position: relative;
  z-index: 99;
  text-align: center;
}
.menu ul li.menu-line {
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}
.menu ul li a {
  position: relative;
  display: block;
  color: #212121;
  font-size: 14px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  background: transparent;
  font-family: var(--font-playfair);
}
.menu ul li a.active {
  color: #bd9535;
}
.menu ul li a .menu-category-list-btn {
  position: absolute;
  right: -12px;
  top: calc(50% - 7px);
  font-size: 14px;
  line-height: 1;
  transition: all 0.2s ease-out;
}
.menu ul li:hover > a {
  color: #bd9535;
}
.menu ul li:hover > a .menu-category-list-btn {
  transform: rotate(90deg);
}
.menu ul li:hover > ul {
  transform: perspective(600px) rotateX(0);
  transform-origin: 0 0 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}
.menu ul li ul {
  position: absolute;
  min-width: 220px;
  background-color: #fafafa;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
  transform: perspective(600px) rotateX(-90deg);
  transform-origin: 0 0 0;
  opacity: 0;
  visibility: hidden;
}
.menu ul li ul li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.menu ul li ul li:hover > a {
  background: var(--color-main);
  color: #fff;
}
.menu ul li ul li:hover > a .menu-category-list-btn {
  transform: rotate(180deg);
}
.menu ul li ul li a {
  text-align: left;
  font-size: 14px;
  color: #333;
  text-transform: capitalize;
  padding: 10px 10px;
}
.menu ul li ul li a::before {
  display: none;
}
.menu ul li ul li a .menu-category-list-btn {
  right: 10px;
}
.menu ul li ul li ul {
  top: 0;
  left: 100%;
  margin-top: 0px;
}

.box-card .line {
  width: 1px;
  height: 18px;
  background: #ccc;
}
.box-card .cart-head {
  position: relative;
}
.box-card .cart-head span {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #72b448;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-roboto);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  top: -8px;
  right: -8px;
}

.lang-res a {
  color: #fff;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 40px;
  height: 40px;
  border: 1px solid;
  background: rgba(217, 217, 217, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}
.lang-res :hover {
  color: #72b448;
}

/* Search */
.search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 49px;
  width: 100%;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #dcdcdc;
  background: #fff;
}
.search button {
  background: #0741a4;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 17px;
  margin: 4px;
}

/* Mmenu */
.menu-res {
  display: none;
  position: relative;
  z-index: 100;
}

#hamburger {
  width: 40px;
  height: 40px;
  position: relative;
  border: 2px solid var(--color-main);
  border-radius: 6px;
  display: grid;
  place-items: center;
}
#hamburger span {
  font-size: 23px;
  line-height: 1;
  color: var(--color-main);
  transition: all 0.3s ease;
}

.mm-wrapper_opening #hamburger span::before {
  content: "\f00d";
}

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

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

/* Search */
.search-res {
  position: relative;
}
.search-res .icon-search {
  cursor: pointer;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  margin: 0px;
  padding-top: 2px;
  display: grid;
  place-items: center;
}
.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;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-main);
  z-index: 2;
  opacity: 0;
  border-radius: 25px;
  line-height: normal;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
}
.search-res .search-grid button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  margin: 0px;
  font-size: 16px;
  display: grid;
  place-items: center;
}
.search-res .search-grid input {
  font-size: 13px;
  width: 100%;
  height: 38px;
  text-indent: 10px;
  outline: none;
  border: none;
  box-shadow: none;
}

/* Main */
.title-main {
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}
.title-main span {
  color: #72b448;
  text-align: center;
  font-family: Mistral;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 4px;
}
.title-main h2 {
  color: #2f4858;
  font-family: "Playfair Display";
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.title-main p {
  color: #424242;
  font-family: "Playfair Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

.title-detail {
  text-align: center;
  margin-bottom: 1.5rem;
}
.title-detail h1 {
  color: var(--color-main);
  font-family: var(--font-playfair);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
}

.title-related {
  text-align: center;
  margin-bottom: 1.5rem;
}
.title-related h2 {
  color: var(--color-main);
  font-family: var(--font-playfair);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Embla */
.embla__button {
  cursor: pointer;
  outline: none;
  border: 0px;
  color: #ffffff;
  width: 40px;
  height: 40px;
  font-size: 17px;
  background: var(--color-main);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}
.embla__button:hover {
  background: var(--color-hover);
}
.embla__button.embla__button--prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.embla__button.embla__button--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

/* breadCrumbs */
.breadCrumbs {
  padding: 10px 0px;
  background: #ddd;
}
.breadCrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadCrumbs ol li a {
  color: #333;
}
.breadCrumbs ol li.active a,
.breadCrumbs ol li:hover a {
  color: var(--color-main);
}

/* Embla */
.embla__dots {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.embla__dots .embla__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid #72b448;
}
.embla__dots .embla__dot.embla__dot--selected {
  position: relative;
  background: #72b448;
}

/* Slider */
.slideshow-slide {
  aspect-ratio: 412/122;
}

/* Criteria */
.section-criteria {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.criteria-item {
  position: relative;
  padding: 30px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 1px;
}
.criteria-item .criteria-photo {
  text-align: center;
  margin-bottom: 8px;
}
.criteria-item .criteria-photo img {
  transition: all 0.6s linear;
}
.criteria-item .criteria-photo:hover img {
  transform: rotateY(360deg);
}
.criteria-item .criteria-name {
  color: #343434;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
}
.criteria-item p {
  color: #72b448;
  text-align: center;
  font-family: Mistral;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.criteria-item .criteria-desc {
  color: #555;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

/* About */
.section-about .about-title {
  color: #72b448;
  text-align: center;
  font-family: Mistral;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 6px;
}
.section-about .about-name {
  color: #313131;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 3px;
}
.section-about .about-desc {
  color: #8c8c8c;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.section-about .about-photo-container {
  position: relative;
}
.section-about .about-item-cols:nth-child(1) {
  /* min-height: 323px; */
  /* border: 1px solid #ccc; */
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
}
.section-about .about-photo .scale-img {
  border-radius: 10px;
}

/*Product Hot*/
.policy-detail {
  border: 1px solid var(--color-main);
  background-color: whitesmoke;
  margin-bottom: 1rem;
  padding: 15px;
}
.policy-detail .title-policy h2 {
  font-family: var(--font-playfair);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: var(--color-main);
  text-transform: uppercase;
}
.policy-detail .policy-item {
  margin-bottom: 10px;
}
.policy-detail .policy-item .policy-name {
  font-family: var(--font-playfair);
  font-size: 16px;
}

/*see more*/
.hbtn {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
  padding: 10px 50px;
  margin: 0px 3px 6px;
  text-align: center;
  border: 2px solid #72b448;
  text-decoration: none;
  color: rgb(255, 255, 255);
  white-space: nowrap;
  z-index: 0;
  color: #fff;
  font-family: "Playfair Display";
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

.hbtn i {
  padding-right: 8px;
}

.hb-fill-middle-rev-bg::before {
  position: absolute;
  content: "";
  background: #72b448;
  transition-duration: 0.3s;
  z-index: -1;
  inset: auto auto 0px 0px;
  width: 100%;
  height: 50%;
  opacity: 1;
}

.hb-fill-middle-rev-bg:hover::before {
  width: 100%;
  height: 0%;
  opacity: 1;
}

.hb-fill-middle-rev-bg:hover {
  background: transparent;
  color: #72b448;
  transition: 0.3s;
}

.hb-fill-middle-rev-bg::after {
  position: absolute;
  content: "";
  background: #72b448;
  transition-duration: 0.3s;
  z-index: -1;
  inset: 0px auto auto 0px;
  width: 100%;
  height: 50%;
  opacity: 1;
}

.hb-fill-middle-rev-bg:hover::after {
  height: 0px;
}

.productHot-box .product-item {
  min-width: 230px;
}

#style-1::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#style-1::-webkit-scrollbar-thumb {
  background-color: #72b448;
}

#style-1::-webkit-scrollbar {
  height: 3px;
  background-color: #f5f5f5;
}

.productHot-cols:nth-child(1) .name-company {
  color: #72b448;
  font-family: Mistral;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.productHot-cols:nth-child(1) h2 {
  color: #313131;
  font-family: "Playfair Display";
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 46px;
  max-width: 200px;
}
.productHot-cols:nth-child(1) p {
  color: #8c8c8c;
  font-family: "Playfair Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.grab-container {
  cursor: grab;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-bottom: 10px;
}

/*seller*/
.section-newsSeller {
  background: #f8f9eb;
  position: relative;
}
.section-newsSeller .newsSeller-cols:nth-child(1) {
  position: relative;
}
.section-newsSeller .newsSeller-cols:nth-child(1)::before {
  content: "";
  position: absolute;
  background: url(../images/main/deco_1.png) no-repeat;
  width: 348px;
  height: 205px;
  top: -205px;
  left: 0;
}
.section-newsSeller .newsSeller-cols:nth-child(1)::after {
  content: "";
  position: absolute;
  background: url(../images/main/deco2.png) no-repeat;
  width: 175px;
  height: 198px;
  bottom: -100px;
  left: -50px;
}
.section-newsSeller .newsSeller-cols:nth-child(2) {
  border-bottom: 1px solid #d9d9d9;
}
.section-newsSeller .newsSeller-top {
  margin-bottom: 20px;
}
.section-newsSeller .newsSeller-top .name-company {
  color: #72b448;
  font-family: Mistral;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 7px;
}
.section-newsSeller .newsSeller-top h2 {
  color: #313131;
  font-family: "Playfair Display";
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
  margin-bottom: 12px;
}
.section-newsSeller .newsSeller-top p {
  color: #383838;
  text-align: justify;
  font-family: "Playfair Display";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}
.section-newsSeller .newsSeller-photo a {
  border-radius: 10px;
}
.section-newsSeller .newsSeller-photo a span {
  color: #fff;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(68, 68, 68, 0.6);
}
.section-newsSeller .see-more {
  margin-top: 20px;
}
.section-newsSeller .see-more a {
  display: flex;
  align-items: center;
}
.section-newsSeller .see-more a span:nth-child(1) {
  color: #252525;
  font-family: "Playfair Display";
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  border: 1px solid #000;
  background: rgba(255, 255, 255, 0);
  display: inline-flex;
  padding: 9px 50px;
}
.section-newsSeller .see-more a span:nth-child(2) {
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  background: #72b448;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-newsSeller .embla .embla__container {
  padding-right: 118px;
}

.section-productList .choose-list {
  max-width: 550px;
  margin: 0 auto;
  margin-bottom: 25px;
}
.section-productList .choose-list .choose-item.active h3 {
  border-bottom: 1px solid #72b448;
}
.section-productList .choose-list .choose-item h3 {
  color: #212121;
  font-family: "Playfair Display";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 0;
  cursor: pointer;
}

/*question*/
.section-question .container-question {
  position: relative;
}
.section-question .container-question .video-item {
  position: relative;
}
.section-question .container-question .video-item::after {
  content: "";
  position: absolute;
  background: url(../images/main/play.png);
  width: 124px;
  height: 124px;
  position: absolute;
  top: calc((100% - 124px) / 2);
  left: calc((100% - 124px) / 2);
  pointer-events: none;
}
.section-question .container-question .info-question {
  position: absolute;
  left: 50px;
  top: 50px;
  max-width: 400px;
}
.section-question .container-question .info-question h3 {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 48px;
  margin-bottom: 9px;
}
.section-question .container-question .info-question .desc-question {
  color: #fff;
  text-align: justify;
  font-family: "Playfair Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

/* Quy Trinh */
.section-quytrinh {
  padding-top: 70px;
}

.quytrinh-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 150px;
  padding-bottom: 30px;
}
.quytrinh-container .quytrinh-cols:nth-child(1) {
  display: flex;
  flex-direction: column-reverse;
  gap: 45px;
}
.quytrinh-container .quytrinh-cols:nth-child(1) .quytrinh-item {
  flex-direction: row-reverse;
  text-align: right;
}
.quytrinh-container .quytrinh-cols:nth-child(1) .quytrinh-item:nth-child(2) {
  margin-left: 88px;
}
.quytrinh-container .quytrinh-cols:nth-child(1) .quytrinh-item:nth-child(3) {
  margin-left: auto;
}
.quytrinh-container .quytrinh-cols:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.quytrinh-container .quytrinh-cols:nth-child(2) .quytrinh-item {
  text-align: left;
}
.quytrinh-container .quytrinh-cols:nth-child(2) .quytrinh-item::before {
  transform: rotate(180deg);
}
.quytrinh-container .quytrinh-cols:nth-child(2) .quytrinh-item:nth-child(2) {
  margin-left: 195px;
}
.quytrinh-container .quytrinh-cols:nth-child(2) .quytrinh-item:nth-child(3) {
  margin-left: auto;
}
.quytrinh-container .quytrinh-banner {
  position: absolute;
  left: calc(50% - 325px);
  bottom: -16px;
  z-index: 1;
  pointer-events: none;
}
.quytrinh-container:after {
  content: "";
  position: absolute;
  background: url(../images/main/before-quytrinh.png) no-repeat center
    center/cover;
  width: 100%;
  max-width: 880px;
  height: 424px;
  left: calc(50% - 440px);
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}

.quytrinh-item {
  position: relative;
  max-width: 308px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.quytrinh-item::before {
  content: "";
  position: absolute;
  background: url(../images/main/bg-quytrinh-item.png) no-repeat center
    center/100% 100%;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.quytrinh-item .quytrinh-photo {
  background: url(../images/main/quytrinh-bg-photo.png) no-repeat center
    center/100% 100%;
  flex-shrink: 0;
  width: 102px;
  height: 116px;
  display: grid;
  place-items: center;
}
.quytrinh-item .quytrinh-photo img {
  transition: all 0.6s linear;
}
.quytrinh-item .quytrinh-photo:hover img {
  transform: rotateY(360deg);
}
.quytrinh-item .quytrinh-info .quytrinh-name {
  color: #1e2a38;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 4px;
}
.quytrinh-item .quytrinh-info .quytrinh-desc {
  color: #818181;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 0;
}

/* Service */
.section-camket {
  position: relative;
}
.section-camket::before {
  content: "";
  position: absolute;
  background: url(../images/main/bg-camket.png) no-repeat center center/cover;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.section-camket .title-main::before {
  background: url(../images/main/before-title-main2.png) no-repeat center bottom;
}
.section-camket .title-main h2,
.section-camket .title-main p {
  color: #fff;
}

.camket-item {
  text-align: center;
}
.camket-item .camket-photo {
  background: url(../images/main/camket-bg-photo.png) no-repeat center
    center/100% 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 115px;
  height: 115px;
  margin-bottom: 22px;
}
.camket-item .camket-photo img {
  transition: all 0.6s linear;
}
.camket-item .camket-photo:hover img {
  transform: rotateY(360deg);
}
.camket-item .camket-info .camket-name {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}
.camket-item .camket-info .camket-name:hover {
  color: #fbd93e;
}
.camket-item .camket-info .camket-desc {
  color: #95afdc;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 8px;
}
.camket-item .camket-info .camket-viewmore {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.camket-item .camket-info .camket-viewmore:hover {
  color: #fbd93e;
}

/* Album */
.album-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.album-item .scale-img {
  border-radius: 10px;
}

.album-viewmore {
  text-align: center;
  margin-top: 30px;
}
.album-viewmore a {
  position: relative;
  padding: 10px 70px 10px 40px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #777;
  color: #252525;
  font-size: 13px;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.album-viewmore a span {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #0741a4;
  border-radius: 50%;
}
.album-viewmore a:hover {
  box-shadow: 0 0 10px 0 var(--color-main);
  color: var(--color-main);
}

/* Khach Hang */
.khachhang-container .embla--khachhang-slide .embla__container {
  padding-right: 150px;
  margin-left: -150px;
}

.khachhang-item .khachhang-box {
  border-radius: 10px;
  border: 1px solid #bebebe;
  background-color: rgba(255, 255, 255, 0);
  background-image: url(../images/main/phay.png);
  background-size: auto;
  background-position: calc(100% - 20px) calc(100% - 20px);
  background-repeat: no-repeat;
  padding: 20px;
}
.khachhang-item .khachhang-box .khachhang-item-inner {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.khachhang-item .khachhang-box .khachhang-item-inner .khachhang-photo {
  border-radius: 50%;
  border: 3px solid #72b448;
}
.khachhang-item
  .khachhang-box
  .khachhang-item-inner
  .khachhang-photo
  .scale-img {
  border-radius: 50%;
}
.khachhang-item .khachhang-box .khachhang-item-inner .khachhang-name {
  color: #1f1f1f;
  font-family: "Playfair Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.khachhang-item .khachhang-box .khachhang-item-inner .khachhang-desc {
  color: #72b448;
  font-family: "Playfair Display";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
.khachhang-item .khachhang-box .khachhang-content {
  position: relative;
}
.khachhang-item .khachhang-box .khachhang-content p {
  color: #252525;
  font-family: "Playfair Display";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

/*news home*/
.section-news {
  background: #f8f9eb;
}
.section-news .newshome-item .newshome-photo a {
  border-radius: 10px;
}
.section-news .newshome-item .newshome-info .newshome-contact {
  padding-bottom: 10px;
  margin-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #e6e8cb;
}
.section-news .newshome-item .newshome-info .newshome-contact p {
  color: #000;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.section-news .newshome-item .newshome-info .newshome-contact p span {
  color: #72b448;
}
.section-news .newshome-item .newshome-info .newshome-contact .newshome-view {
  color: #000;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.section-news .newshome-item .newshome-info .newshome-name a {
  color: #000;
  font-family: "Playfair Display";
  font-size: 19px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 5px;
}
.section-news .newshome-item .newshome-info .newshome-date {
  color: #6a6a6a;
  font-family: "Playfair Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 4px;
}
.section-news .newshome-item .newshome-info .newshome-desc {
  color: #5e5e5e;
  font-family: "Playfair Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

/*partner*/
.partner-photo {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  background: #fff;
}

/* Product */
.product-item {
  position: relative;
  text-align: center;
}
.product-item .product-photo {
  margin-bottom: 1rem;
}
.product-item .product-photo .scale-img {
  border-radius: 10px;
  border: 1px solid var(--color-main);
}
.product-item .product-name {
  color: #232323;
  font-family: "Playfair Display";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.product-item .product-name:hover {
  color: var(--color-main);
}
.product-item .product-desc {
  color: #7c7c7c;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 10px;
}
.product-item .cart-pro-home div select {
  color: #828282;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  box-shadow: none !important;
  border-radius: 0;
}
.product-item .cart-pro-home a {
  padding: 6px 14px;
  border: 1px solid #72b448;
  background: rgba(217, 217, 217, 0);
  color: #72b448;
  font-family: "Playfair Display";
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  cursor: pointer;
  margin-bottom: 1px;
}

/* News */
.news-slide {
  padding: 1px;
  margin: -1px;
}

.news-item.news-item-first {
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0;
}
.news-item.news-item-first .news-info {
  padding: 22px 4px 8px 18px;
}

.news-item {
  position: relative;
  padding: 10px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}
.news-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px dashed #c0b9a3;
  z-index: 1;
  pointer-events: none;
}
.news-item .news-photo .scale-img {
  border-radius: 10px;
}
.news-item .news-name {
  color: #1e2a38;
  font-size: 15px;
  font-weight: 600;
  line-height: 25px;
  text-transform: uppercase;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}
.news-item .news-name:hover {
  color: var(--color-main);
}
.news-item .news-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #818181;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 0;
}
.news-item .news-desc {
  color: #7c7c7c;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 10px;
}
.news-item .news-viewmore {
  text-align: right;
}
.news-item .news-viewmore a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2b2b2b;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  line-height: 25px;
  transition: all 0.3s ease;
}
.news-item .news-viewmore a:hover {
  color: var(--color-main);
}
.news-item .news-viewmore a span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--color-hover);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}

/* About Detail */
.body-container.about {
  overflow: visible;
}

.album-detail-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.about-detail-cols:nth-child(1) {
  width: 280px;
}

.about-detail-cols:nth-child(2) {
  flex: 1 1 0%;
}

.about-detail-box {
  position: sticky;
  top: 70px;
}

.category-news .category-news-title {
  background: var(--color-hover);
  display: grid;
  place-items: center;
  padding: 10px 20px;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}
.category-news .category-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 10px 20px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 0 10px 0 #e0e0e0;
}
.category-news .category-news-list li a {
  display: block;
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 5px 0;
}
.category-news .category-news-list li a:hover,
.category-news .category-news-list li a.active {
  color: var(--color-main);
}

.about-detail-cols .title-detail-about {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  padding: 20px;
}
.about-detail-cols .title-detail-about h1 {
  color: var(--color-main);
  font-size: 36px;
  font-family: var(--font-oswald);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0;
}
.about-detail-cols .content-text {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0 0 10px 10px;
  padding: 20px;
}

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

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

.list-news-other {
  padding-left: 17px;
  list-style: square;
}
.list-news-other li {
  margin-bottom: 2px;
}
.list-news-other li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #151515;
  transition: all 0.3s ease;
}
.list-news-other li a:hover {
  color: var(--color-main);
}

.box-news-detail {
  display: block;
  border: 1px solid var(--color-main);
  padding: 10px 10px;
  margin-bottom: 20px;
  background-color: whitesmoke;
}
.box-news-detail .info-news-detail {
  font-weight: 400;
  font-size: 16px;
  padding: 5px 0;
  margin: 0;
}
.box-news-detail .info-news-detail i {
  color: var(--color-main);
}
.box-news-detail .contact-news-detail {
  display: block;
  background: var(--color-main);
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 7px 10px;
  margin-top: 11px;
  transition: all 0.3s ease;
}
.box-news-detail .contact-news-detail:hover {
  background: var(--color-hover);
}
.box-news-detail .title-related h2 {
  font-size: 20px;
  font-family: var(--font-playfair);
  font-weight: 600;
  color: var(--color-main);
}

.news-item-detail {
  position: relative;
  text-align: center;
}
.news-item-detail .news-photo {
  margin-bottom: 0.75rem;
}
.news-item-detail .news-photo .scale-img {
  border-radius: 10px;
}
.news-item-detail .news-info .news-name {
  color: #282828;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  font-family: var(--font-playfair);
}
.news-item-detail .news-info .news-name:hover {
  color: var(--color-main);
}
.news-item-detail .news-info .news-desc {
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0;
}

/* Sort */
.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-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 .sort-select-main p {
  border-bottom: 1px solid #f1f1f1;
  margin: 0px;
  order: 2;
}
.sort-select .sort-select-main p:has(.check) {
  order: 1;
}
.sort-select .sort a {
  color: #000;
  font-size: 14px;
  line-height: 17px;
  padding: 11px 3px;
  display: block;
  cursor: pointer;
}
.sort-select .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-select .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);
}
.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;
}

/* Category list */
.left-product {
  position: sticky;
  top: 60px;
}

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

.category-product-list {
  background: #fff;
  box-shadow: 0 0 10px 0 #e0e0e0;
  border: 1px solid #e0e0e0;
  border-top: 0;
  padding: 10px;
}
.category-product-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-product-list ul li {
  position: relative;
  padding: 10px 0;
}
.category-product-list ul li:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
}
.category-product-list ul li a {
  position: relative;
  display: block;
  color: #2c2c2c;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.category-product-list ul li a .btn-toggle {
  border: 0;
  outline: 0;
  box-shadow: none;
  position: absolute;
  width: 40px;
  height: 40px;
  top: calc(50% - 20px);
  right: 0;
  line-height: 1;
  display: grid;
  place-items: center;
  color: #333;
}
.category-product-list ul li a .btn-toggle:hover {
  color: var(--color-main);
}
.category-product-list ul li a:hover,
.category-product-list ul li a.active {
  color: var(--color-main);
}
.category-product-list ul li ul {
  display: none;
  padding: 0 20px !important;
}
.category-product-list ul li ul li a {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

/* Product Detail */
.grid-properties {
  display: flex;
  gap: 10px;
  margin: 10px 0px;
  position: relative;
}
.grid-properties span {
  position: relative;
  border: 1px solid #ddd;
  padding: 5px 15px;
  cursor: pointer;
}
.grid-properties span:hover,
.grid-properties span.active {
  border: 1px solid #f00;
  color: #f00;
}
.grid-properties span:hover:after,
.grid-properties span.active:after {
  content: "";
  border: 0.9375rem solid transparent;
  position: absolute;
  background: url(../images/check-cart.png) no-repeat;
  width: 13px;
  height: 13px;
  bottom: -2px;
  right: -2px;
}
.grid-properties span.outstock {
  pointer-events: none;
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.26);
  cursor: not-allowed;
}

.filter {
  cursor: pointer;
  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;
  border: 1px solid #ddd;
  display: none;
}

.attr-pro-detail {
  list-style: none;
  padding: 0px;
}
.attr-pro-detail li {
  margin-bottom: 0.5rem;
}
.attr-pro-detail li .attr-label-pro-detail {
  font-weight: 700;
  margin-bottom: 0;
}
.attr-pro-detail li .attr-content-pro-detail {
  font-weight: 400;
}
.pro-dl-pr span:nth-child(2) {
  font-size: 20px;
  color: #e30613;
  font-weight: 700;
}

.pro-dl-pr span:nth-child(3) {
  font-size: 17px;
  color: #666666;
  font-weight: 400;
  text-decoration: line-through;
}

/* Detail */
.quantity-pro-detail {
  width: 100%;
  max-width: 110px;
  line-height: normal;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quantity-pro-detail span {
  line-height: 25px;
  padding: 0px;
  width: 30px;
  height: 30px;
  color: #5f5f5f;
  cursor: pointer;
  font-size: 22px;
  border: 1px solid #cccccc;
}
.quantity-pro-detail span.quantity-plus-pro-detail {
  border-left: 0px;
}
.quantity-pro-detail span.quantity-minus-pro-detail {
  border-right: 0px;
}
.quantity-pro-detail input {
  height: 30px;
  border: 1px solid #cccccc;
  width: calc(100% - 60px);
  text-align: center;
  font-size: 14px;
  padding: 5px;
  padding-left: 20px;
}

.attr-pro-detail .cart-pro-detail a {
  cursor: pointer;
  width: auto;
  text-align: center;
  color: #fff;
  padding: 8px 15px;
  text-transform: uppercase;
  border-radius: 3px;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  background-color: var(--color-main) !important;
}
.attr-pro-detail .cart-pro-detail a:hover {
  background-color: var(--color-hover) !important;
  box-shadow: 0 2px 10px var(--color-hover);
}
.attr-pro-detail .cart-pro-detail a.addnow {
  background: var(--color-main);
  margin-right: 0 !important;
}
.attr-pro-detail .cart-pro-detail a.buynow {
  background: var(--color-hover);
}
.attr-pro-detail .cart-pro-detail a i {
  vertical-align: top;
  margin-top: 3px;
  margin-right: 8px;
}

.tabs-pro-detail .nav-tabs {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}
.tabs-pro-detail .nav-tabs .nav-link.active {
  border-top-color: #9d9d9d;
  color: #000;
}
.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
  border-top-color: #9d9d9d;
}

/* Pagination */
.pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.pagination .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 .page-item .page-link:hover {
  color: #333;
  background: #fbd93e;
  border-color: #fbd93e;
}
.pagination .page-item.active .page-link {
  color: #333;
  background: #fbd93e;
  border-color: #fbd93e;
}
.pagination .page-item.disabled .page-link {
  pointer-events: none;
}
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  font-size: 0 !important;
}
.pagination .page-item:first-child .page-link::before,
.pagination .page-item:last-child .page-link::before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 14px;
}
.pagination .page-item:first-child .page-link::before {
  content: "\f053";
}
.pagination .page-item:last-child .page-link::before {
  content: "\f054";
}

/* Footer */
.footer-phone {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
}

.footer-container {
  position: relative;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
}

.footer-article {
  position: relative;
  background: #105e0f;
}
.footer-article .footer-title {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 25px;
  margin-bottom: 12px;
}
.footer-article .footer-name {
  font-family: Mistral;
  font-size: 83px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: linear-gradient(90deg, #bd9535 0%, #f4d981 54%, #c5a556 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-article .footer-desc {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
}
.footer-article .footer-content {
  color: #fff;
  font-family: "Playfair Display";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.footer-article .footer-content p {
  margin-bottom: 8px;
}
.footer-article .footer-ul {
  list-style: disc;
  padding: 0;
  margin: 0;
  font-size: 8px;
  padding-left: 14px;
}
.footer-article .footer-ul li:not(:last-child) {
  margin-bottom: 0;
}
.footer-article .footer-ul h3 {
  text-transform: capitalize;
  margin-bottom: 0;
  transition: all 0.3s ease;
  color: #fff;
  font-family: "Playfair Display";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
}
.footer-article .footer-ul h3:hover {
  color: yellow;
}
.footer-article .footer-maps-iframe {
  position: relative;
  height: 225px;
  border-radius: 10px;
  overflow: hidden;
}
.footer-article .footer-maps-iframe iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.footer-powered {
  text-align: center;
  background: #105e0f;
}
.footer-powered .wrap-content {
  border-top: 1px solid #fff;
  padding: 24px 0;
}

/* Contact */
.contact-form .contact-input {
  color: #333;
}

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

/* Card fixed */
.cart-fixed {
  position: fixed;
  right: 20px;
  bottom: 400px;
  z-index: 10;
  display: none;
}

/* Btn Frame */
.btn-frame {
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.btn-frame i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  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%;
  opacity: 0.5;
}
.btn-frame .zoomIn {
  animation-name: zoomIn;
}
.btn-frame .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.btn-frame .kenit-alo-circle-fill {
  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 .pulse {
  animation-name: pulse;
}

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

/* 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%;
}

/* Toc */
.box-readmore {
  padding: 8px 15px;
  border: 1px solid #dedede;
  margin-bottom: 2rem;
  border-radius: 5px;
  background-color: #eeeeee;
}
.box-readmore ul {
  list-style-type: none;
  counter-reset: item;
  margin-bottom: 0;
  padding-left: 0 !important;
  margin-top: 8px;
}
.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;
}
.box-readmore li ul > li {
  margin: 0;
  margin-bottom: 8px;
}
.box-readmore li ul > li:before {
  content: counters(item, ".") " ";
}

/*Map*/
#ban-do iframe {
  width: 100%;
  height: 450px;
}

.item-toa-do {
  background: var(--color-main);
  padding: 10px;
  margin-bottom: 10px;
  color: white;
}

.item-toa-do.active {
  background: var(--color-hover);
}

.info-map h3 {
  font-size: 15px;
  font-family: "Roboto";
}

.desc-map p {
  margin-bottom: 5px;
}

/* Neon Blink */
@keyframes neon-blink {
  0% {
    text-shadow: 0 0 5px #2cffff, 0 0 10px #2cffff, 0 0 15px #2cffff,
      0 0 20px #2cffff, 0 0 25px #2cffff, 0 0 30px #2cffff;
  }
  100% {
    text-shadow: 0 0 20px #2cffff, 0 0 30px #2cffff, 0 0 40px #2cffff,
      0 0 50px #2cffff, 0 0 60px #2cffff, 0 0 70px #2cffff;
  }
}
@keyframes neon-blink-img {
  0% {
    filter: drop-shadow(0 0 5px #2cffff) drop-shadow(0 0 10px #2cffff);
  }
  100% {
    filter: drop-shadow(0 0 20px #2cffff) drop-shadow(0 0 30px #2cffff);
  }
}
@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;
  }
}
.section-newsSeller .newsSeller-photo .embla__container {
  padding: 0;
}
.menu .menu-main > li > a {
  color: #fff;
}
.footer-article .wrap-content {
  grid-template-columns: 15% 30% 20% 20%;
}
.slogan-procart-desc {
  padding: 10px;
  border: 1px solid #c0c0bf;
  margin-top: 15px;
}

/* tool bar app */
.toolbar-app {
  width: 100%;
  bottom: 0;
  position: fixed;
  z-index: 500;
  left: 0;
  -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
  -moz-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
  -ms-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
  -o-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
}

.toolbar-app.is-active .list-phone {
  display: block;
  -webkit-animation: quickShow 0.2s cubic-bezier(0.66, 0.45, 0.76, 1.53)
    forwards;
  animation: quickShow 0.2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards;
}

@keyframes quickShow {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.toolbar-app .list-phone {
  position: absolute;
  bottom: 100%;
  left: 30px;
  opacity: 0;
  transform: scale(0);
  transform-origin: 50% 100%;
  display: none;
  min-width: 185px;
}

.toolbar-app .list-phone a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  max-width: 240px;
  padding: 10px;
  margin: 10px 0;
  border-radius: 50px;
}

.toolbar-app .list-phone svg {
  max-width: 30px;
  max-height: 30px;
}

.toolbar-app .list-phone span {
  display: block;
  width: calc(100% - 40px);
  color: #333;
  font-weight: 700;
}

.toolbar-app .phone {
  position: relative;
  width: 50px;
  height: 50px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  margin: 0 0 -25px 30px;
  transition: transform 0.2s ease-in-out;
}

.toolbar-app .phone span {
  color: #333;
  display: block;
  position: relative;
}

.toolbar-app .phone span:after,
.toolbar-app .phone span:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  width: 30px;
  height: 3px;
  border-radius: 2rem;
  background-color: var(--color-main);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.toolbar-app .phone span:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.toolbar-app .phone svg {
  max-width: 27px;
  max-height: 27px;
  display: block;
  position: relative;
  fill: var(--color-main);
}

.toolbar-app.is-active .phone {
  transform: rotate(-180deg);
}

.toolbar-app.is-active .phone svg {
  opacity: 0;
}

.toolbar-app.is-active .phone span:after,
.toolbar-app.is-active .phone span:before {
  opacity: 1;
}

.toolbar-app ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  --size: 33px;
  -webkit-mask: radial-gradient(var(--size) at 55px 0, #0000 99%, #fff 101%)
    100%;
  background: #fff;
  padding: 10px 0;
  padding-left: 100px;
  border-radius: 10px 10px 0 0;
}

.toolbar-app ul li {
  text-align: center;
  width: 25%;
  line-height: 1;
}

.toolbar-app ul li a {
  display: block;
  width: 100%;
  font-size: 27px;
  color: var(--color-main);
}

.toolbar-app ul li .icon {
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.toolbar-app ul li a span {
  display: none;
  font-weight: 400;
  font-size: 11px;
  margin-top: 5px;
  color: #333;
  text-transform: capitalize;
}

.toolbar-app ul li a img,
.toolbar-app ul li svg {
  max-height: 30px;
  fill: var(--color-main);
  width: 100%;
}

.toolbar-app .phone svg {
  animation: tada 1.2s infinite;
  fill: var(--color-main);
}

.tada {
  animation: tada 1.2s infinite;
}

.lang-toolbar-app {
  display: flex;
  justify-content: center;
  align-items: center;
}

.toolbar-app ul li.lang-toolbar-app a {
  display: inline-block;
  width: unset;
  margin: 0 2px;
  font-size: unset;
}

.toolbar-app ul li.lang-toolbar-app a img {
  height: 10% !important;
}

.ex6 path {
  stroke: var(--color-main);
  stroke-width: 0.5;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  -webkit-animation: dash 5s ease forwards;
  animation: dash 5s ease forwards;
}
.info-question {
  display: none;
}
.see-more {
  text-align: center;
  font-family: "Playfair Display";
  font-size: 20px;
  margin-top: 10px;
}

.see-more:hover {
  color: #008001;
  text-decoration: underline;
}
