* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --white-opacity-70: rgba(255, 255, 255, 0.7);
  --white-opacity-20: rgba(255, 255, 255, 0.2);
  --background: #2b2522;
  --light-brown: #a08257;
  --middle-brown: #2c2623;
  --main-background: #342e2a;
  --text-home: #ffdab0;
  --black-brown: #282624;
  --bg-header: #24201e;
  --footer: #24201e;
  --color-header-right: #776f68;
  --color-header-left: #917f6c;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--main-background);
  color: var(--white-opacity-70);
user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.container {
  width: 1240px;
  margin: 0 auto;
}

header {
  background-color: var(--footer);
}

nav {
  cursor: pointer;
}

.header_item_mg .menu-desktop .menu-desktop-list {
  list-style: none;
  display: flex;
  gap: 20px;
  text-align: center;
  justify-content: space-between;
}

.header_item_mg .menu-desktop .menu-desktop-list li a {
  text-decoration: none;
  color: var(--light-brown);
  font-size: 14px;
  padding: 5px 0px;
  display: block;
}

.header_item_mg .menu-desktop .menu-desktop-list li {
  text-transform: uppercase;
}

.header_item_mg .menu-desktop .menu-desktop-list li:hover {
  border-bottom: 1px solid var(--light-brown);
}

.header_item_mg .menu-desktop .menu-desktop-list li:active {
  border-bottom: 1px solid var(--light-brown);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--light-brown);
  margin: 6px 0;
}

.menu-close {
  display: none;
  background: none;
  border: none;
  color: var(--light-brown);
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

.mobile-menu {
  display: none;
}

/* ---------------------------------------------------BANNER--------------------------------------------------- */
.banner {
  width: 100%;
  max-width: 1920px;
  margin: 0px auto;
  position: relative;
}

.banner img {
  width: 100%;
  height: 400px;
  -o-object-position: 50% 63%;
     object-position: 50% 63%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 50%;
}

.banner .banner_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.banner .banner_txt h3 {
  font-size: 48px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-weight: 700;
}

.banner .banner_txt p {
  font-size: 24px;
  font-weight: 400;
}

/* ---------------------------------------------------FOOTER--------------------------------------------------- */
footer {
  background-color: #24201e;
  color: white;
  padding: 40px 10px;
  width: 100%;
}

a {
  text-decoration: none;
  color: var(--white-opacity-70);
}

footer .container .content_foot {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
}

footer .container .content_foot .info ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .container .content_foot .search {
  display: flex;
  padding-top: 30px;
  flex-direction: column;
  justify-content: start;
  gap: 20px;
  align-items: center;
  width: 100%;
}

footer .container .content_foot .search .input_search {
  background-color: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
  width: 60%;
}

footer .container .content_foot .search .input_search input {
  width: 80%;
  border: none;
  background: transparent;
  padding: 12px 12px;
  outline: none;
  border: none;
}

footer .container .content_foot .search .ul-1 {
  display: flex;
  gap: 20px;
  text-transform: uppercase;
  font-size: 14px;
  align-items: center;
  margin-top: 20px;
}

footer .container .content_foot .search .ul-2 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  text-transform: uppercase;
  font-size: 12px;
}

footer .container .content_foot .search .ul-2 a li::after {
  content: "|";
  margin: 10px;
  color: #d9d9d9;
  opacity: 20%;
}

/* ---------------------------------------------------MAIN--------------------------------------------------- */
main {
  position: relative;
  z-index: 1;
}

/* ---------------------------------------------------HOME PAGE--------------------------------------------------- */
/* SECTION 1 */
main .section_1 {
  background-color: var(--middle-brown);
  position: relative;
}

main .section_1 .container .item_1 {
  display: flex;
  justify-content: space-around;
  padding-top: 65px;
  padding-bottom: 15px;
  position: relative;
  gap: 16px;
}

main .section_1 .container .item_1 .text {
  width: 345px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

main .section_1 .container .item_1 .text h1 {
  color: white;
  font-weight: 400;
  font-size: 50px;
}

main .section_1 .container .item_1 .text p {
  color: var(--white-opacity-70);
  font-size: 18px;
  line-height: 1.5;
  font-weight: normal;
}

main .section_1 .container .item_1 .text strong {
  color: var(--white);
  font-size: 30px;
  font-weight: 400;
}

main .section_1 .container .item_1 .text strong span {
  font-size: 14px;
  font-weight: lighter;
}

main .section_1 .container .item_1 .text a {
  text-decoration: none;
  color: var(--white-opacity-70);
  font-size: 12px;
  font-weight: lighter;
  padding: 10px 20px;
  width: 130px;
  border: 1px solid var(--light-brown);
  text-align: center;
  text-transform: uppercase;
}

.item_1 .text a:hover{
  background-color: var(--light-brown);
  color: var(--white);
}

main .section_1 .container .item_1 .iamge {
  position: relative;
}

main .section_1 .container .item_1 .image img {
  width: 100%;
  z-index: 1;
  position: relative;
}

main .section_1 .container .item_1 .image .img-1 {
  width: 392px;
  height: 524px;
  border: 1px solid var(--light-brown);
  position: absolute;
  top: 30%;
  left: 39%;
}

main .section_1 .container .item_1 .image .img-2 {
  width: 422px;
  height: 624px;
  border: 1px solid var(--light-brown);
  position: absolute;
  top: 23px;
  right: -1%;
}

/* SECTION 2 */
main .section_2 {
  padding-top: 150px;
  padding-bottom: 100px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .section_2 .container .title {
  text-align: center;
}

main .section_2 .container .title h3 {
  font-size: 36px;
  color: var(--white);
  letter-spacing: 4px;
}

main .section_2 .container .title p {
  font-size: 18px;
  color: var(--white-opacity-70);
  margin-top: 10px;
}

main .section_2 .container .icon {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-self: start;
  margin-top: 90px;
}

main .section_2 .container .icon img {
  width: 100%;
}

main .section_2 .container .icon .left {
  border-right: 1px solid var(--light-brown);
  padding-right: 30px;
}

main .section_2 .container .icon .left h3 {
  color: var(--text-home);
  font-size: 20px;
  font-weight: 400;
  text-transform: none;
  margin-left: 26px;
}

main .section_2 .container .icon .left ul,
.right ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  margin-top: 20px;
}

main .section_2 .container .icon .left ul .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

main .section_2 .container .icon .left ul .item p {
  font-size: 16px;
  color: var(--white-opacity-70);
  text-align: center;
  margin-top: 10px;
}

main .section_2 .container .icon .right h3 {
  color: var(--text-home);
  font-size: 20px;
  font-weight: 400;
  text-transform: none;
  margin-left: 12px;
}

main .section_2 .container .icon .right ul {
  margin-left: 12px;
}

main .section_2 .container .icon .right ul .item p {
  text-align: center;
  margin-top: 10px;
  color: var(--white-opacity-70);
  font-size: 16px;
}

/* SECTION 3 */
main .section_3 {
  margin-top: 50px;
}

main .section_3 .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 82%;
  margin: 0px auto;
}

main .section_3 .title h3 {
  font-size: 36px;
  font-weight: bold;
  color: var(--white);
}

main .section_3 .title p {
  font-size: 18px;
  color: var(--white-opacity-70);
  text-align: center;
}

main .section_3 .parent {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

main .section_3 .parent .div3 {
  grid-column: span 2/span 2;
}

main .section_3 .parent .div4 {
  grid-column: span 4/span 4;
  grid-row-start: 2;
}

main .section_3 .parent .div5 {
  grid-column: span 2/span 2;
  grid-row-start: 3;
}

main .section_3 .parent .div6 {
  grid-column-start: 3;
  grid-row-start: 3;
}

main .section_3 .parent .div7 {
  grid-column-start: 4;
  grid-row-start: 3;
}

main .section_3 .parent > div {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

main .section_3 .parent > div img {
  width: 100%;
  height: 636px;
  display: block;
  position: relative;
  opacity: 70%;
  -o-object-position: center;
     object-position: center;
}

main .section_3 .parent > div .text {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  white-space: nowrap;
  text-align: center;
}

main .section_3 .parent h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--white);
}

main .section_3 .parent a {
  font-size: 15px;
  font-weight: bold;
  color: var(--white);
  text-decoration: underline;
}
main .section_3 .parent a:hover{
  cursor: pointer;
  color: var(--light-brown);
}
/* SECTION 4 */
.section_4 {
  padding: 120px 0px;
}

main .section_4 .container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

main .section_4 .container .text {
  width: 590px;
  flex: 1;
}

main .section_4 .container .text h3 {
  text-transform: capitalize;
  font-size: 32px;
  border-bottom: 1px solid var(--light-brown);
  padding-bottom: 5px;
  font-weight: bold;
  color: var(--white);
}

main .section_4 .container .text p {
  color: var(--white-opacity-70);
  width: 584px;
  font-size: 20px;
  margin-top: 10px;
}

main .section_4 .container form {
  width: 542px;
}

main .section_4 .container form .item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--white-opacity-70);
  margin-bottom: 40px;
}

main .section_4 .container form label {
  color: var(--white);
  font-size: 20px;
  text-transform: uppercase;
}

main .section_4 .container form .item input {
  border: none;
  padding: 10px 0px;
  background-color: var(--main-background);
  margin: 5px;
  background: transparent;
  outline: none;
  color: white;
  font-size: 16px;
}

.section_4 .submit {
  display: flex;
  justify-content: center;
}

.btn-submit-form {
  padding: 20px 10px;
  background: var(--main-background);
  outline: none;
  border: 1px solid var(--white-opacity-70);
  color: var(--white-opacity-70);
  text-transform: uppercase;
  font-size: 16px;
}

/* SECTION 5 */
main .section_5 {
  background-color: var(--black-brown);
  padding-top: 80px;
}

main .section_5 .container h3 {
  font-size: 36px;
  color: var(--light-brown);
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

main .section_5 .container .parent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
  width: 100%;
  row-gap: 15px;
  padding-bottom: 50px;
}

main .section_5 .container .parent > div {
  border: 1px solid var(--white-opacity-20);
  height: auto;
}

main .section_5 .container .voucher {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 30px;
}

main .section_5 .container .voucher .item {
  display: flex;
  justify-content: center;
}

main .section_5 .container .parent > a div img {
  width: 100%;
}

.div1 a,
.div2 a,
.div3 a,
.div4 a,
.div5 a,
.div6 a,
.div7 a,
.div8 a {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin: 10px;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.div1 strong,
.div2 strong,
.div3 strong,
.div4 strong,
.div5 strong,
.div6 strong,
.div7 strong,
.div8 strong {
  font-size: 16px;
  color: var(--light-brown);
  margin: 10px;
}

/* ---------------------------------------------------ABOUT US--------------------------------------------------- */
/* ABOUT */
.history_about {
  width: 100%;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  margin-top: 80px;
  padding: 20px;
}

.container .history_about p {
  font-size: 20px;
  font-weight: 200;
  opacity: 70%;
}

.history_about .history_about_text {
  margin-top: 30px;
}

.history_about .history_about_text ul {
  color: white;
  opacity: 70%;
  font-size: 20px;
  font-weight: lighter;
  letter-spacing: 1px;
  margin-bottom: 70px;
}

.history_about .history_about_text .history_about_img {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

/* SLOGAN */
.slogan {
  background-color: #2c2623;
  padding: 80px 0;
}

.slogan .item {
  margin: 0px auto;
  display: flex;
  justify-content: space-evenly;
}

.slogan .slogan-left {
  margin-top: 100px;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 585px;
  margin-bottom: 80px;
}

.slogan .slogan-left h3 {
  font-size: 36px;
}

.slogan .slogan-left h4 {
  font-size: 20px;
  font-weight: 600;
  opacity: 80%;
  width: 453px;
  line-height: 36px;
  vertical-align: middle;
}

.slogan .slogan-left p {
  font-size: 20px;
  font-weight: lighter;
  width: 505px;
  line-height: 24px;
}

.slogan .slogan-left img {
  width: 506px;
}

.slogan .slogan-right {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.slogan .slogan-right img {
  width: 506px;
  height: 575px;
  -o-object-fit: cover;
     object-fit: cover;
}

.slogan .slogan-right .item_1 {
  border: 1px solid #a08257;
  width: 392px;
  height: 524px;
  position: absolute;
  top: 120px;
  left: -55px;
  z-index: -1;
}

.slogan .slogan-right .item_2 {
  border: 1px solid #a08257;
  width: 392px;
  height: 524px;
  position: absolute;
  top: -55px;
  right: -80px;
  z-index: -1;
}

/* MESSAGE */
.message {
  max-width: 82%;
  margin: 0px auto;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: white;
  margin-bottom: 60px;
}

.message h3 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

.message p {
  opacity: 70%;
  font-weight: 200;
  font-size: 20px;
  text-align: center;
  vertical-align: middle;
}

/* WARRANTY */
.warranty {
  background-color: #2c2623;
  width: 100%;
  height: auto;
  padding: 24px 0;
}

.warranty-title {
  font-size: 36px;
  color: white;
  line-height: 54px;
  text-transform: uppercase;
}

.warranty .content {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.warranty .content h3 {
  width: 490px;
  margin-top: 40px;
}

.warranty .content hr {
  border: 1px solid #a08257;
  height: 270px;
  margin: 60px 34px 60px 6px;
  opacity: 50%;
}

.warranty .content .text {
  width: 630px;
  color: #fff;
  opacity: 70%;
  margin-top: 50px;
  font-size: 20px;
  font-weight: 200;
}

.warranty .content .text p {
  margin-bottom: 20px;
}

.warranty .content ul {
  letter-spacing: 1px;
  font-size: 18px;
  list-style: inside;
}

/* ---------------------------------------------------CATEGORY INTERIOR--------------------------------------------------- */
/* CATEGORY */
main .container .parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  padding-bottom: 40px;
  position: relative;
}

main .container .parent a {
  text-decoration: none;
  color: var(--white-opacity-70);
}

main .container .parent a > div {
  text-align: center;
}

main .container .parent a > div .item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

main .container .parent a > div h1 {
  margin-top: 20px;
  margin-bottom: 20px;
}

main .container .parent a > div .item img {
  width: 100%;
  display: block;
}

main .container .parent a > div .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(36, 32, 30, 0.4117647059);
  width: 100%;
  height: 50%;
  transform: translateY(100%);
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s;
  opacity: 0;
  padding: 20px;
  font-size: 20px;
}

main .container .parent a > div .item:hover .text {
  transform: translateY(0);
  opacity: 1;
  border-radius: 20px;
}

/* SUGGEST */
main .section2 {
  background-color: var(--middle-brown);
  padding: 60px;
}

main .section2 h3 {
  text-align: center;
  font-size: 32px;
  color: var(--white);
  font-weight: bold;
}

main .container .suggest {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 40px;
}

main .container .suggest > .item {
  position: relative;
  overflow: hidden;
max-width:260px;
}

main .container .suggest > .item img {
  width: 100%;
  display: block;
height: 360px;
}

main .container .suggest > .item img:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: transform 0.3s;
}

main .container .suggest > .item .text {
  background-color: rgb(216, 216, 216);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s;
  opacity: 0;
}

main .container .suggest > .item .text img {
  width: 40%;
}

main .container .suggest > .item .text h3 {
  font-size: 28px;
  color: var(--light-brown);
  font-weight: bold;
  cursor: pointer;
}

main .container .suggest > .item .text p {
  color: var(--light-brown);
  font-weight: bold;
  font-size: 22px;
}

main .container .suggest > .item .text a {
  color: var(--light-brown);
}

main .container .suggest > .item .text span {
  font-size: 10px;
}

main .container .suggest > .item .text .item-link {
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid var(--light-brown);
  color: var(--light-brown);
}

main .container .suggest > .item .text .item-link:hover {
  cursor: pointer;
  background-color: var(--middle-brown);
  color: var(--white-opacity-70);
}

main .container .suggest > .item:hover .text {
  transform: translateX(0);
  opacity: 1;
}

main .section1 {
  border-top: 1px solid var(--white-opacity-70);
  border-bottom: 1px solid var(--white-opacity-70);
}

main .section1 .container .partent_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

main .section1 .container .partent_grid .item1 {
  border-right: 1px solid var(--white-opacity-70);
  padding: 30px;
}

main .section1 .container .partent_grid .item1 h3 {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 20px;
  color: var(--white);
}

main .section1 .container .partent_grid .item1 p {
  font-size: 20px;
  font-weight: lighter;
  line-height: 30px;
  color: var(--white-opacity-70);
  margin-bottom: 20px;
}

main .section1 .container .partent_grid .item1 a {
  text-decoration: none;
  font-size: 20px;
  font-weight: lighter;
  line-height: 30px;
  color: var(--white-opacity-70);
  letter-spacing: 3px;
  border-bottom: 1px solid var(--white-opacity-70);
}

main .section1 .container .partent_grid .item2 {
  padding: 10px 0px 10px 50px;
  display: flex;
  align-items: center;
}

/* DETAIL PRODUCT */
main .section1 .container .partent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

main .section1 .container .partent .item1 .thumbnail img {
  max-width: 100px;
  margin: 10px 10px 10px 0px;
}

main .section1 .container .partent .item1 .thumbnail img:hover {
  cursor: pointer;
  transition: all 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transform: scale(1.05);
  will-change: transform, box-shadow;
  box-shadow: 0 5px 15px rgba(200, 200, 200, 0.438);
}

main .section1 .container .partent .item2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-items: center;
}

main .section1 .container .partent .item2 h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--white);
  border-bottom: 1px dashed var(--white-opacity-20);
  padding: 20px 0px;
}

main .section1 .container .partent .item2 strong {
  font-size: 16px;
  font-weight: bold;
  color: var(--white-opacity-70);
  border-bottom: 1px dashed var(--white-opacity-20);
  padding: 20px 0px;
}

main .section1 .container .partent .item2 p {
  font-size: 16px;
  font-weight: bold;
  color: var(--white-opacity-70);
  border-bottom: 1px dashed var(--white-opacity-20);
  padding: 30px 0px;
  line-height: 1.5;
}

main .section1 .container .partent .item2 p span {
  padding: 10px;
  background-color: var(--light-brown);
  border: 1px solid var(--white-opacity-70);
}

main .section1 .container .partent .item2 .quantity {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  max-width: 150px;
  background-color: white;
  margin: 10px 0px;
}

main .section1 .container .partent .item2 .quantity .box {
  padding: 5px;
  color: #24201e;
}

main .section1 .container .partent .item2 .quantity button {
  padding: 5px 11px;
  background-color: rgb(203, 201, 201);
  border: none;
}

main .section1 .container .partent .item2 a {
  text-decoration: none;
  color: var(--white-opacity-70);
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 20px;
  border: 1px solid var(--white-opacity-70);
  margin-bottom: 10px;
}

main .section1 .container .partent .item2 ul {
  margin-left: 20px;
}

main .section1 .container .partent .item2 ul li {
  list-style: none;
  padding: 5px 0px;
  color: var(--white-opacity-70);
}

main .section1 .container .detail {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
}

main .section1 .container .detail .div1 {
  display: flex;
  border: 1px solid var(--white-opacity-70);
  gap: 5px;
}

main .section1 .container .detail .div1 p {
  padding: 10px 20px;
  font-size: 20px;
  color: var(--white-opacity-70);
}

main .section1 .container .detail .div2 {
  border: 1px solid var(--white-opacity-70);
  margin-bottom: 50px;
}

main .section1 .container .detail .div2 h3 {
  font-size: 24px;
  font-weight: bold;
  padding: 10px;
  color: var(--white);
}

main .section1 .container .detail .div2 p {
  font-size: 20px;
  font-weight: lighter;
  padding: 10px;
  color: var(--white-opacity-70);
  line-height: 1.5;
}

main .section1 .container .detail .div2 ul > li {
  padding: 10px 20px;
  font-size: 20px;
  color: var(--white-opacity-70);
}

/* ---------------------------------------------------NEW--------------------------------------------------- */
main .container .parent_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

main .container .parent_grid a > div p {
  font-size: 16px;
}

main .container .parent_grid a > div h3 {
  font-size: 20px;
  font-weight: lighter;
  text-align: start;
  text-transform: capitalize;
}

main .container .parent_grid a > div img {
  width: 100%;
}

main .container .parent_grid .div5 {
  grid-column: span 3/span 3;
  grid-row-start: 2;
}

main .container .parent_grid > a div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 20px;
  align-items: center;
  margin-top: 20px;
}

main .container .parent_grid .div5 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

main .container .parent_grid .div5 h1 {
  color: var(--white);
}

main .container .parent_grid .div5 img {
  width: 45%;
}

main .container .parent_grid .div5 .input {
  border-bottom: 1px solid var(--white);
  width: 100%;
  margin-bottom: 60px;
}

main .container .parent_grid form {
  flex: 1;
  border: 1px solid var(--light-brown);
  height: 100%;
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

main .container .parent_grid .div5 .input input {
  background: transparent;
  border: none;
  margin: 20px 0px;
  width: 100%;
  outline: none;
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
}

main .container .parent_grid .div5 button {
  padding: 10px 40px;
  background-color: #7e7067;
  border: 1px solid var(--white-opacity-70);
  border-radius: 10px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: bold;
}

main .container .parent_grid .div5 button:hover {
  cursor: pointer;
  background-color: var(--light-brown);
}

/* PARTNER */
main .section_partner {
  border: 6px solid var(--light-brown);
}

main .section_partner .partner {
  max-width: 1440px;
  margin: 0px auto;
  padding: 10px;
}

main .section_partner .partner .title {
  margin-bottom: 30px;
}

main .section_partner .partner h1 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

main .section_partner .partner p {
  font-size: 16px;
  color: var(--white-opacity-70);
  text-align: center;
}

main .section_partner .partner .item img {
  width: 100%;
}

main .section_partner .partner .info {
  display: flex;
  justify-content: space-between;
  width: 93%;
}

main .section_partner .partner .info button {
  background-color: var(--main-background);
  border: none;
}

main .section_partner .partner .info button:hover {
  cursor: pointer;
}

main .section_partner .partent .info .center {
  visibility: hidden;
}

.voucher-grids {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/** Fix bug **/
.section_7 {
  position: relative;
  min-height: 340px;
}
.section_7 iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}

.footer {
  color: var(--white-opacity-70);
}

.content_foot .logo-footer {
  margin-bottom: 20px;
}
.content_foot .content-footer p {
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.content_foot .info {
  width: 100%;
  max-width: 350px;
}
.content_foot .search {
  width: 100%;
}

.language-name {
  text-transform: uppercase;
  font-size: 12px;
  color: var(--color-header-right);
}

.language-global {
  display: flex;
  align-items: center;
}

.language .icon {
  position: relative;
  top: -1px;
}

.form-search {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 6px;
}
.form-search .icon {
  display: block;
  width: 14px;
  height: 14px;
}
.form-search-input {
  flex: 1;
}
.form-search input {
  background: transparent;
  border: none;
  text-transform: uppercase;
  outline: none;
  height: 29px;
  color: var(--color-header-right);
}

.form-search button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-header-right);
}

.header-top {
  background: var(--bg-header);
}
.header-top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}
.header-top .right {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
}
.header-top .hotline {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--color-header-left);
}


.language {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.line-center {
  background: #403d3a;
  height: 20px;
  width: 1px;
}

.header-bottom {
  border: 1px solid #000;
  background: var(--background);
  padding: 20px 0px;
}

.header_item_mg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

/** Product categories **/
.product-categories {
  padding: 160px 0px;
}

.product-heading-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.product-heading-title h2 {
  font-size: 36px;
  text-transform: uppercase;
  color: white;
}
.product-heading-title p {
  font-size: 18px;
}

.product-categories-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
.product-categories-wrapper .left {
  flex: 1;
  padding-right: 20px;
}
.product-categories-wrapper .right {
  flex: 1;
  padding-left: 20px;
}
.product-categories-wrapper .title {
  font-weight: 400;
  font-size: 20px;
  color: #ffdab0;
  text-transform: capitalize;
}
.product-categories-wrapper .line {
  background-color: #a08257;
  width: 1px;
}

.list-categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 20px;
  gap: 30px;
  list-style: none;
}
.list-categories li {
  width: 100%;
  max-width: 84px;
  transition: all 0.3s;
}
.list-categories li:hover {
  margin-top: -10px;
}
.list-categories a {
  color: var(--white-opacity-70);
  text-align: center;
  display: block;
}
.list-categories .name {
  font-weight: 400;
  font-size: 14px;
  margin-top: 12px;
}

/** Social footer **/
.footer-social {
  margin-top: 32px;
}
.footer-social h3 {
  font-size: 12px;
  color: #969493;
  margin-bottom: 10px;
  font-weight: 400;
}
.footer-social-list {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 19px;
}
.footer-social-list a {
  display: block;
  transition: all 0.3s;
}
.footer-social-list a:hover {
  opacity: 0.8;
}

.policy-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.policy-footer a {
  color: var(--white-opacity-70);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.4s;
  position: relative;
}
.policy-footer a:before {
  content: "";
  background: rgba(217, 217, 217, 0.2);
  height: 15px;
  width: 1px;
  position: absolute;
  right: -8px;
  top: 0px;
  z-index: 1;
}
.policy-footer a:last-child::before {
  display: none;
}
.policy-footer a:hover {
  color: white;
}

/** Search footer **/
.form-search-footer {
  display: flex;
  height: 54px;
  background: rgba(238, 238, 238, 0.87);
  border-radius: 50px;
  width: 100%;
  max-width: 448px;
  justify-content: start;
  align-items: center;
  padding: 10px;
}
.form-search-footer .btn-submit {
  width: 33px;
  height: 33px;
  cursor: pointer;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
.form-search-footer .input-search {
  background: transparent;
  border: none;
  height: 33px;
  line-height: 33px;
  flex: 1;
}
.form-search-footer .input-search:focus {
  outline: none;
  box-shadow: none;
}

/**  Menu footer **/
.menu-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.menu-footer a {
  color: var(--white-opacity-70);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400px;
  transition: all 0.3s;
}
.menu-footer a:hover {
  color: white;
}

/** Feedback **/
.customer-feedback {
  padding: 60px 0;
}

.feedback-title {
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 40px;
  color: white;
  text-transform: uppercase;
  text-align: center;
}

.feedback-wrapper {
  position: relative;
}

.feedback-item .thumb {
  overflow: hidden;
}
.feedback-item .thumb img {
  transition: all 0.3s;
}
.feedback-item:hover .thumb img {
  transform: scale(1.1);
}
.feedback-item .info {
  text-align: center;
  padding: 15px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.feedback-item .avatar {
  overflow: hidden;
  border-radius: 50px;
  max-width: 80px;
}
.feedback-item .name {
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
  color: white;
  margin-top: 10px;
  margin-bottom: 10px;
}
.feedback-item .desc {
  color: rgb(160, 130, 87);
  font-size: 18px;
  font-weight: normal;
}

#customer-review-prev,
#customer-review-next {
  height: 36px;
  width: 36px;
  cursor: pointer;
  background: transparent;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  top: calc(50% - 18px);
  z-index: 1;
  position: absolute;
  left: -60px;
}

#customer-review-next {
  right: -60px;
  left: auto;
}

/** product hot **/
.product-hot {
  background: rgb(40, 38, 36);
  padding: 60px 0;
}

.product-hot-title {
  text-align: center;
  color: rgb(160, 130, 87);
  font-size: 36px;
  line-height: 54x;
  text-transform: uppercase;
}

.product-hot-wrapper {
  margin-top: 36px;
}

.voucher-wrapper {
  margin-top: 36px;
}

.voucher-item a {
  display: block;
  color: initial;
  line-height: 1;
  overflow: hidden;
}
.voucher-item img {
  transition: all 0.3s;
}
.voucher-item:hover img {
  transform: scale(1.1);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.product-item {
  display: flex;
  flex-direction: column;
}
.product-item a {
  display: block;
  line-height: 1;
}
.product-item .thumb {
  overflow: hidden;
  max-height: 280px;
}
.product-item .thumb img {
  transition: all 0.3s;
}
.product-item:hover img {
  transform: scale(1.1);
}
.product-item .info {
  padding: 16px 10px;
  border: 1px solid #000;
  border-top: none;
}
.product-item .name {
  font-size: 20px;
  font-weight: 500;
}
.product-item .name a {
  color: white;
}
.product-item .price {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.product-item .price-text {
  color: rgb(160, 130, 87);
  font-size: 16px;
  font-weight: 700;
}
.product-item .prefix {
  font-size: 10px;
  color: rgb(160, 130, 87);
}

.btn-submit-form {
  cursor: pointer;
  transition: all 0.5s;
}
.btn-submit-form:hover {
  background: #a08257;
  color: white;
}

/** Core message **/
.core-message {
  padding: 50px 0;
}
.core-message-title {
  font-size: 36px;
  line-height: 42px;
  color: white;
  text-transform: uppercase;
  text-align: center;
}
.core-message-content {
  margin-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/** About history **/
.about-history {
  padding: 80px 0px;
}
.about-history-title {
  font-size: 36px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 10px;
  text-align: center;
}
.about-history-sub-title {
  font-size: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
.about-history-content {
  margin-top: 20px;
  font-size: 16px;
  text-align: start;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.about-history-content ul,
.about-history-content ol {
  margin-left: 17px;
}
.about-history-img {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/** Contact page **/
.contact-register-title {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(255, 255, 255);
}

.contact-register-name {
  font-size: 24px;
  text-transform: uppercase;
  line-height: 28px;
  color: white;
  margin-bottom: 32px;
}

.contact-form {
  padding: 100px 0px;
}

.flex-contact-form {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.contact-left {
  flex: 1;
}

.contact-right {
  flex: 1;
}

.contact-right {
  border: 1px solid white;
  padding: 24px;
}
.contact-right .item:not(:last-child) {
  margin-bottom: 36px;
}
.contact-right label {
  display: block;
  width: 100%;
  font-size: 20px;
  color: white;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.contact-right input {
  width: 100%;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  outline: none;
  padding: 5px 0px;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s;
}
.contact-right input:hover {
  border-bottom-color: white;
}
.contact-right .submit {
  display: flex;
  justify-content: center;
  align-items: center;
}

/** News page **/
.flex-news {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.pagination-form {
  display: flex;
  margin-top: 24px;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 24px;
}
.pagination-form .form-news {
  order: 1;
}
.pagination-form .owl-policy {
  order: 2;
}
.pagination-form .pagination {
  order: 3;
}

.form-news {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.form-news-img {
  width: 100%;
  max-width: 450px;
}
.form-news-img img {
  width: 100%;
  height: auto;
}

.form-news-register {
  flex: 1;
  border: 1px solid rgb(160, 130, 87);
  padding: 20px 40px;
  padding-top: 40px;
}
.form-news-register h2 {
  font-size: 24px;
  text-transform: capitalize;
  color: white;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.form-news-input input {
  background: transparent;
  color: white;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid white;
  width: 100%;
  height: 36px;
  transition: all 0.3s;
}
.form-news-input input:focus {
  outline: none;
  box-shadow: none;
}
.form-news-input input:hover {
  border-bottom-color: #2b2522;
}

.form-news-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}
.form-news-submit button {
  height: 64px;
  width: 100%;
  max-width: 230px;
  border-radius: 5px;
  background: #7e7067;
  border: 1px solid #7e7067;
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.form-news-submit button:hover {
  background: #000;
  border-color: #000;
}

.grid-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.new-item .thumb {
  overflow: hidden;
}
.new-item .thumb img {
  transition: all 0.3s;
}
.new-item:hover .thumb img {
  transform: scale(1.1);
}
.new-item a {
  display: block;
  color: initial;
}
.new-item .info {
  padding: 10px 0px;
}
.new-item .time {
  display: flex;
  justify-content: start;
  align-items: center;
  color: white;
  gap: 6px;
}
.new-item .news-name {
  margin-top: 16px;
  font-weight: lighter;
  font-size: 20px;
}
.new-item .news-name a {
  color: white;
}
.new-item .news-name a:hover {
  color: opacity(0.7);
}

.title-news {
  font-size: 24px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
  text-align: center;
}

.content_news {
  margin-top: 20px;
  display: flex;
  gap : 20px
}

.content_news article {
  max-width: 900px;
  padding: 16px;
  border: 1px solid var(--white-opacity-20);
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.309);
  border-radius: 20px;
}

.content_news aside {
  padding: 20px;
  border: 1px solid var(--white-opacity-20);
  box-shadow: 0 2px 4px rgba(255, 255, 255, 0.309);
  border-radius: 20px;
  max-height: 400px;
  overflow-y: auto;
}

.content_news aside ul {
  list-style:inside;
  font-size: 16px;
}

.content_news aside ul li {
  margin-top: 10px;
}

.content_news aside ul li a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.content_news aside ul li a:hover {
  color: white;
  cursor: pointer;
}

/** pagination **/
.pagination,
.pagination-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 0px;
}

.pagination-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  padding: 4px 6px;
  text-decoration: none;
  transition: color 0.3s;
  text-transform: uppercase;
}

.pagination-link:hover {
  color: #ffffff;
}

.pagination-active {
  font-weight: 600;
  color: #ffffff;
  font-size: 14px;
  padding: 4px 6px;
  text-transform: uppercase;
}

.pagination-disabled {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  padding: 4px 6px;
  cursor: not-allowed;
  text-transform: uppercase;
}

/** Breadcrumb **/
.breadcrumb-nav {
  background-color: var(--background);
  padding: 12px 20px;
}

.breadcrumb {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.separator {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.7);
}

.current {
  color: rgba(255, 255, 255, 0.7);
}

.home-icon {
  display: inline-block;
  font-size: 14px;
  margin-right: 4px;
}

.news-empty {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
  color: var(--white-opacity-70);
}

/** Project list **/
.grid-project {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.project-item-detail {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

.flex-project-item-detail {
  display: flex;
  justify-content: space-between;
}
.flex-project-item-detail .project-left {
  flex: 1;
  border-right: 1px solid black;
  padding: 30px;
}

.flex-project-item-detail .project-left a {
  margin-top: 10px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.flex-project-item-detail .project-right {
  flex: 1;
  padding: 30px;
  padding-left: 60px;
}
.flex-project-item-detail .project-left h3 a{
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  text-decoration: none;
  color:  var(--white-opacity-70);
}

.flex-project-item-detail .desc {
  margin: 10px 0px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
.flex-project-item-detail .view-detail {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 10px;
}
.flex-project-item-detail .view-detail a {
  color: rgb(204, 203, 202);
}
.flex-project-item-detail .view-detail a:hover {
  color: white;
}

/** Categories items **/
.grid-categories {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
position:relative;
}
.category-item-grid {
  position: relative;
  width: 100%;
}

.category-item-grid .thumb {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 16px;
}

.category-item-grid .thumb .text-description {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.44);
  color: white;
  width: 100%;
  border-radius: 20px;
  pointer-events: none;
}

.category-item-grid .thumb:hover .text-description {
  opacity: 1;
  width: 100%;
  height: 50%;
  transform: translateY(-28.5%);
}

.category-item-grid .thumb:hover img {
  transform: scale(1.1);
  transition: transform 0.3s;
}

.category-item-grid .thumb img {
  transition: all 0.3s;
  width: 100%;
  display: block;
}
.category-item-grid .info {
  text-align: center;
}
.category-item-grid .info h2 {
  font-size: 24px;
  line-height: 48px;
  font-weight: 600;
}
.category-item-grid .info a {
  color: rgb(194, 192, 191);
}

.flex-product-categories {
  display: flex;
  flex-direction: column-reverse;
}
.flex-product-categories .paginate {
  display: flex;
  justify-content: end !important;
  padding: 20px 0px;
  padding-right: 0px;
  margin-bottom: 20px;
}

/** Fiter product **/
.flex-breadcumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-product {
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 4px;
  max-width: 300px;
}

.filter-product > span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-dropdown {
  position: relative;
}

.dropdown-toggle {
  background-color: transparent;
  border: 1px solid #453c37;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.dropdown-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #888;
}

.dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #ffffff;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #4a4a4a;
  border: 1px solid #666;
  border-top: none;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.filter-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.filter-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #666;
  transition: background-color 0.2s ease;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.dropdown-item.active {
  background-color: rgba(255, 255, 255, 0.2);
}

/** Product detial **/
.MagicZoom {
  display: block;
  width: 100%;
  max-width: 560px;
}

.thumb-pro-detail {
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.thumb-pro-detail {
    display: inline-block;
    overflow: hidden;
    border-radius: 3px;
}

.thumb-pro-detail img {
    display: block;
    width: 100%;
    height: 102px;
    transition: transform 0.4s ease, filter 0.4s ease;
}
a[data-zoom-id] img, .mz-thumb img {
    padding-bottom: 0 !important;
}
.thumb-pro-detail:hover img {
    transform: scale(1.1);
    filter: brightness(1.05);
    cursor: pointer;
}

.flex-product-detail {
  overflow: hidden;
}

.flex-product-detail::after {
  content: "";
  display: table;
  clear: both;
}

.product-detail-left,
.product-detail-right {
  float: left;
  width: 100%;
  max-width: 560px;
}

.product-detail-left {
  margin-right: 40px;
}

.gallery-thumb-pro {
  margin-top: 15px;
}

.product-detail-page {
  margin-top: 32px;
}

.product-info {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.product-info li {
  border-bottom: 1px dotted rgb(223, 224, 225);
  padding: 10px 0px;
}
.product-info .li-name h1 {
  font-size: 24px;
  color: white;
  font-weight: 700;
  text-align: left;
}
.product-info .li-contact {
  border-bottom: none;
}
.product-info .li-contact a {
  border: 1px solid rgba(255, 255, 255, 0.7);
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}
.product-info .li-contact a:hover {
  background: rgba(255, 255, 255, 0.7);
  color: #000;
  border-color: rgba(255, 255, 255, 0.7);
}

.product-desc {
  margin-top: 16px;
}
.product-desc ul,
.product-desc ol {
  margin-left: 17px;
}
.product-desc ul li,
.product-desc ol li {
  margin-bottom: 0.5rem;
}

.li-price {
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}
.li-price span {
  text-decoration: underline;
}

.product-detail-content {
  border: 1px solid rgba(255, 255, 255, 0.7);
  margin: 40px 0px;
}

.product-tab {
  display: flex;
  justify-content: start;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.product-tab .btn-tab {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  font-size: 15px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}
.product-tab .btn-tab:focus {
  outline: none;
  box-shadow: none;
}
.product-tab .btn-tab.active {
  background: #443e3b;
  color: rgba(255, 255, 255, 0.7);
}

.product-tab-content {
  display: flex;
  justify-content: center;
}

.product-tab-content .tab-pane {
  margin-left: 17px;
  padding: 10px 0px;
}

.product-tab-content .tab-pane ul {
  line-height: 1.5;
}

.search-modal {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.search-modal form {
  border: 1px solid var(--white-opacity-20);
  background: transparent;
  padding : 4px 10px;
  border-radius: 20px;
  font-size: 16px;
  color: var(--white-opacity-70);
  display: flex;
  max-width: 300px;
}

.search-modal form input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white-opacity-70);
  width: 100%;
  padding: 10px;
}

.search-modal form button {
  background: transparent;
  border: none;
  color: var(--white-opacity-70);
  font-size: 16px;
  cursor: pointer;
  padding-left: 10px;
}

/** Menu desctop **/
#menuDesktop {
  flex: 1;
  padding-left: 24px;
}
#menuDesktop ul li {
  position: relative;
}
#menuDesktop .dropdown-content {
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: 10;
  flex-direction: column;
  min-width: 220px;
  text-align: left;
  gap: 0px;
  background: #453c37;
  opacity: 0;
  visibility: hidden;
  color: var(--white);
}
#menuDesktop .dropdown-content a {
  display: block;
  color: var(--light-brown);
}
#menuDesktop .dropdown-content li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding:10px 20px;
  list-style: none;
}
#menuDesktop .dropdown-content li:hover {
  background: var(--light-brown);
}
#menuDesktop .dropdown-content li:hover a {
  color: white;
}
#menuDesktop ul li:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}

/* google translate */
#google_language_translator {
	display: none;
}
#goog-gt-tt, .goog-te-balloon-frame, #goog-gt-feedback, #goog-gt-voting {
    display: none !important;
}
.language a {
    color: var(--color-header-right);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.language a:hover {
    background-color: var(--background);
    color: var(--text-home);
}

.language a:active {
    background-color: #e0e0e0;
    color: var(--text-home);
}
/* #google_language_translator .goog-te-gadget .goog-te-combo {
	height: 27px;
	outline: none;
	width: 155px;
	border-radius: 50px;
	background-color: #fff;
	border-color: rgba(0, 0, 0, 0.4);
	text-indent: 15px;
	color: #000;
	font-size: 16px;
	margin: 0px;
} */
.goog-logo-link {
    display:none !important;
    font-size:0px !important;
} 
    
.goog-te-gadget{
    color: transparent !important;
    font-size:0px !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd, .VIpgJd-ZVi9od-l4eHX-hSRGPd:link, .VIpgJd-ZVi9od-l4eHX-hSRGPd:visited, .VIpgJd-ZVi9od-l4eHX-hSRGPd:hover, .VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
    display: none;
}
.goog-te-gadget img{
    display:none !important;
}
body > .skiptranslate {
    display: none;
}
body {
    top: 0px !important;
}
/*# sourceMappingURL=desktop.css.map */