* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: DegularDisplay-regular;
}

@font-face {
  font-family: DegularDisplay-regular;
  src: url(../font/DegularDisplay/DegularDisplayRegular.otf);
}
@font-face {
  font-family: DegularDisplay-bold;
  src: url(../font/DegularDisplay/DegularDisplayBold.otf);
}
@font-face {
  font-family: DegularDisplay-semibold;
  src: url(../font/DegularDisplay/DegularDisplay-Semibold.otf);
}
a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  max-width: 100%;
}

.overflow-hiden {
  overflow: hidden;
}

.container-fluid {
  max-width: 1780px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 0;
  background: #fff9f2;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99999;
}
nav .logo-top {
  margin-bottom: 30px;
}
nav ol,
nav ul {
  padding: 0;
  margin: 0;
}

nav .navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding-top: 0;
  padding-bottom: 0;
}
nav .navbar .search-box {
  position: relative;
  width: 250px;
}
nav .navbar .search-box i {
  position: absolute;
  top: 24%;
  left: 7%;
  font-size: 18px;
  opacity: 0.9;
}
nav .navbar .search-box input {
  padding: 6px 0;
  border-radius: 29px;
  border: 1px solid #000;
  color: #000;
  font-size: 16px;
  font-style: normal;
  line-height: normal;
  padding-left: 40px;
  width: 100%;
}
nav .navbar .search-box input::placeholder {
  color: #000;
}

.navbar .logo .hide-on-desktop {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.navbar .logo .hide-on-mobile {
  display: none;
}

nav .navbar .nav-links {
  height: 100%;
}

nav .navbar .links {
  display: flex;
}

nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}

nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: var(--Neutrals-Neutrals700, #5a5555);
  font-size: 16px;
  font-weight: 400;
  position: relative;
}
nav .navbar .links li a::before, nav .navbar .links li a::after {
  transition: all 0.5s;
}
nav .navbar .links li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: ".";
  color: transparent;
  background: var(--Base-Base-Black, #0a0a0b);
  height: 1px;
}
nav .navbar .links li a:hover {
  color: var(--Base-Base-Black, #0a0a0b);
  font-weight: 600;
}
nav .navbar .links li a:hover::after {
  width: 100%;
}

.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

nav .navbar .links li .arrow {
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 90px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}

nav .navbar .links li .sub-menu {
  position: absolute;
  top: 90px;
  left: 0;
  line-height: 40px;
  background: #3e8da8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}

.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}

.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}

.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}

.navbar .nav-links .sidebar-logo {
  display: none;
}

.navbar .bx-menu {
  display: none;
}
.nav-links .mobile-contact {
              margin-top: 0 !important;
              display: none !important;
            }
            .nav-links .mobile-contact li {
              line-height: 40px;
            }
            .nav-links .mobile-contact li a {
              display: flex;
              align-items: center;
              gap: 6px;
            }
            .nav-links .mobile-contact li i {
              width: 20px;
              height: 20px;
              font-size: 18px;
              color: #000;
            }
            .nav-links .mobile-contact .social-mobile-header {
              display: flex;
              align-items: center;
              gap: 10px;
              justify-content: flex-start;
              margin-top: 10px;
            }
            nav .navbar .mobile-contact li a::after {
              content: none;
            }

@media (max-width: 920px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }
  nav .navbar .logo a {
    font-size: 27px;
  }
  nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a {
    font-size: 15px;
  }
}
@media (max-width: 1400px) {
  .logo-top {
    display: none;
  }
  .navbar .logo .hide-on-desktop {
    display: none;
  }
  .navbar .logo .hide-on-mobile {
    display: block;
  }
  nav .navbar .search-box {
    width: auto;
  }
	.nav-links .mobile-contact { 
		display: block !important;
	}
  nav {
    /* position: relative; */
    padding: 10px 0;
  }
  .navbar .bx-menu {
    display: block;
  }
  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: #fff9f2;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name {
    font-size: 25px;
    color: #fff;
  }
  .sidebar-logo i,
  .navbar .bx-menu {
    font-size: 25px;
    color: #000;
  }
  nav .navbar .links {
    display: block;
    margin-top: 20px;
    padding-left: 0;
  }
  nav .navbar .links li .arrow {
    line-height: 40px;
  }
  nav .navbar .links li {
    display: block;
  }
  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  nav .navbar .links li .sub-menu li {
    border-bottom: none;
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }
  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }
  .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }
  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }
  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }
  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }
  .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }
}
@media (max-width: 500px) {
  .navbar .search-box {
    position: relative;
    width: auto !important;
  }
  .navbar .search-box i {
    position: relative !important;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .navbar .search-box .input-box {
    position: absolute;
    right: 0;
    top: 20px;
    height: 60px;
    width: 300px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
  }
  .navbar.showInput .search-box .input-box {
    top: 30px;
    opacity: 1;
    pointer-events: auto;
  }
  .search-box .input-box::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
  }
  .search-box .input-box input {
    position: absolute;
    top: 80%;
    left: 52%;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 35px;
    width: 280px;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
  }
  nav .navbar .search-box input {
    padding-left: 14px;
  }
  nav .logo .hide-on-mobile {
    display: flex !important;
    justify-content: center;
    margin-right: 10px;
  }
  nav .logo .hide-on-mobile img {
    max-width: 80%;
  }
  body {
    padding-top: 56px !important;
  }
	
}
@media (max-width: 370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}
body {
  padding-top: 210px;
}

.ngau-title {
  font-size: 96px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: linear-gradient(80deg, #57351e 33.59%, #000 94.27%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline;
  font-family: DegularDisplay-semibold;
}
.ngau-title img {
  position: absolute;
  top: 0;
  right: 0;
}

.ngau-sub-title {
  color: var(--Neutrals-Base-Black, #0a0a0b);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.ngau-btn {
  display: flex;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 5px;
  background: url(../img/btn-back.png) lightgray 50%/cover no-repeat;
  color: var(--Neutrals-Base-Black, #0a0a0b);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.ngau-btn:hover {
  opacity: 0.8;
}

.ngau-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ngau-title-row .ngau-subtitle-in-row {
  color: var(--Neutrals-Neutrals600, #726c6c);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.homepage #hero {
  overflow: hidden;
}
.each-slide {
	display: flex !important;
	align-items: center;
}
.each-slide .hero-content-left {
	width: 50%;
}
.each-slide .hero-content-right {
	width: 50%;
}
.homepage #hero .hero-swiper .swiper-wrapper {
	align-items: end;
}
.homepage #hero .hero-content-left {
  padding-left: 140px;
}
.homepage #hero .hero-content-left .limited {
  color: var(--Base-Base-Black, #0a0a0b);
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.homepage #hero .hero-content-left .sale-percent {
  font-size: 80px;
  font-style: normal;
  font-weight: 300;
  line-height: 90px; /* 93.75% */
  background: linear-gradient(80deg, #57351e 3.71%, #000 94.27%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.homepage #hero .hero-content-left .sale-percent span {
  font-family: DegularDisplay-semibold;
}
.homepage #hero .hero-content-left .header-btn {
  display: inline-flex;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 5px;
  background: var(--Gradient-2, linear-gradient(80deg, #57351e 3.71%, #000 94.27%));
  color: var(--Neutrals-Base-White, #fafafa);
  font-size: 20px;
  font-style: normal;
  line-height: normal;
  margin-top: 40px;
}
.homepage #hero .hero-content-left .header-btn:hover {
  opacity: 0.8;
}
.homepage #hero .hero-content-right img {
  width: 100%;
}
.homepage #hero .hero-content-right .swiper-pagination .swiper-pagination-bullet-active {
  background: #000;
}
.homepage #hero .hero-content-right .swiper-slide {
  position: relative;
}
.homepage #hero .hero-content-right .swiper-slide .product-info {
  position: absolute;
  bottom: 6%;
  left: 5%;
  background: rgba(255, 255, 255, 0.5);
  padding: 0 20px;
}
.homepage #hero .hero-content-right .swiper-slide .product-info .product-name {
  color: var(--Neutrals-Base-Black, #0a0a0b);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.homepage #hero .hero-content-right .swiper-slide .product-info .product-price {
  display: flex;
  align-items: center;
  gap: 18px;
}
.homepage #hero .hero-content-right .swiper-slide .product-info .product-price .old-price {
  color: var(--Neutrals-Neutrals700, #5a5555);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  text-decoration: line-through;
}
.homepage #hero .hero-content-right .swiper-slide .product-info .product-price .current-price {
  color: var(--Neutrals-Base-Black, #0a0a0b);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.homepage #exclusive_offer {
  padding: 80px 0;
  background: #fff9f2;
}
.homepage #exclusive_offer .col-left {
  position: relative;
}
.homepage #exclusive_offer .col-left .swiper-slide {
  position: relative;
}
.homepage #exclusive_offer .col-left .swiper-slide img {
  transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
}
.homepage #exclusive_offer .col-left .swiper-slide .product-img1 {
  position: absolute;
  left: 0;
  top: 0;
}
.homepage #exclusive_offer .col-left .swiper-slide .product-img2 {
  left: 0;
  top: 0;
  opacity: 0;
}
.homepage #exclusive_offer .col-left .swiper-slide:hover {
  cursor: pointer;
}
.homepage #exclusive_offer .col-left .swiper-slide:hover .product-img1 {
  position: relative;
  opacity: 0;
}
.homepage #exclusive_offer .col-left .swiper-slide:hover .product-img2 {
  position: absolute;
  opacity: 1;
}
.homepage #exclusive_offer .col-left .swiper-slide .product-info {
  position: absolute;
  bottom: 2%;
  left: 4%;
  z-index: 3;
}
.homepage #exclusive_offer .col-left .swiper-slide .product-info .product-name {
  color: var(--Base-Base-White, #fafafa);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.homepage #exclusive_offer .col-left .swiper-slide .product-info .product-price {
  color: var(--Base-Base-White, #fafafa);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.homepage #exclusive_offer .col-left .swiper-slide .sale-percent {
  position: absolute;
  top: 2%;
  left: 4%;
  display: inline-flex;
  padding: 4px 18px;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  background: var(--Gradient-3, linear-gradient(321deg, #8fd3d1 3.41%, #83c0e9 25.4%, #a182bc 47.38%, #e484b6 69.37%, #fac2a1 91.36%));
  color: var(--Backgrounds-Primary, #fff);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.homepage #exclusive_offer .col-left .arrow-prev,
.homepage #exclusive_offer .col-left .arrow-next {
  position: absolute;
  z-index: 2;
}
.homepage #exclusive_offer .col-left .arrow-prev:hover,
.homepage #exclusive_offer .col-left .arrow-next:hover {
  cursor: pointer;
  opacity: 0.8;
}
.homepage #exclusive_offer .col-left .arrow-prev {
  left: 0;
  top: 46%;
}
.homepage #exclusive_offer .col-left .arrow-next {
  right: 0;
  top: 46%;
}
.homepage #exclusive_offer .col-right {
  border-left: 2px solid #c6c6c6;
  height: 100%;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.homepage #exclusive_offer .col-right .ngau-title {
  display: inline-block;
  margin-bottom: 10px;
  line-height: 100px;
}
.homepage #exclusive_offer .col-right .ngau-title img {
  top: -10%;
  right: 20%;
}
.homepage #exclusive_offer .col-right .ngau-btn {
  margin-top: auto;
}
.homepage #miidle_banner {
  background-image: url(../img/middle-banner.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.homepage #miidle_banner .slogan {
  color: var(--Neutrals-Base-Black, #0a0a0b);
  font-size: 64px;
  font-weight: 500;
}
.homepage #miidle_banner .sub-slogan {
  color: var(--Neutrals-Base-Black, #0a0a0b);
  font-size: 32px;
  font-weight: 400;
}
.homepage #miidle_banner .ngau-btn {
  background: var(--Neutrals-Neutrals900, #2b2829);
  color: #fff;
  padding: 10px 60px;
  margin-top: 30px;
}
.homepage #jewellery_collection {
  padding: 80px 0 0 0;
  background: #fff9f2;
}
.homepage #jewellery_collection .jewellery-left {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.homepage #jewellery_collection .jewellery-left .jewellery-stonehide-1 {
  position: absolute;
  bottom: -26%;
  left: -23%;
  z-index: 1;
}
.homepage #jewellery_collection .jewellery-left .ngau-sub-title {
  margin-bottom: 40px;
  z-index: 2;
}
.homepage #jewellery_collection .jewellery-left .ngau-btn {
  z-index: 2;
}
.homepage #jewellery_collection .jewellery-left .ngau-title {
  line-height: 100px;
  z-index: 2;
}
.homepage #jewellery_collection .jewellery-left .ngau-title img {
  top: -10%;
  right: -6%;
}
.homepage #jewellery_collection .jewellery-slider-box {
  position: relative;
  display: flex;
  align-items: center;
}
.homepage #jewellery_collection .jewellery-slider-box .jewellery-stonehide-2 {
  position: absolute;
  bottom: 10%;
  left: 0;
}
.homepage #jewellery_collection .jewellery-slider-box .wrapper {
  display: flex;
}
.homepage #jewellery_collection .jewellery-slider-box .demo-wrap {
  position: relative;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap {
  max-width: 100%;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap {
  width: 500px;
  height: 450px;
  margin: 0 auto;
  position: relative;
  /* overflow: hidden; */
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap li {
  display: none;
  width: 300px;
  position: absolute;
  z-index: 0;
  overflow: hidden;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap .inner {
  position: relative;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap .inner .product-info {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap .inner .product-info .product-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap .inner .product-info .product-info-row .product-name {
  color: var(--Neutrals-Neutrals800, #433e3f);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap .inner .product-info .product-info-price {
  display: flex;
  gap: 10px;
  padding: 0 25px;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap .inner .product-info .product-info-price .old-price {
  color: var(--Neutrals-Neutrals400, #9f9c9c);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: line-through;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap .inner .product-info .product-info-price .current-price {
  color: var(--Neutrals-Neutrals900, #2b2829);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap .inner a {
  text-decoration: none;
  border: none;
  outline: none;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap img {
  width: 100%;
  border: none;
  outline: none;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos1 {
  display: block;
  top: 0;
  left: 0;
  z-index: 1;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos2 {
  display: block;
  top: 35px;
  left: 14%;
  z-index: 2;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos3 {
  display: block;
  top: 15%;
  left: 35%;
  z-index: 3;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos4 {
  display: block;
  top: 35px;
  right: -14%;
  z-index: 2;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos5 {
  display: block;
  top: 0;
  right: -25%;
  z-index: 1;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap .inner {
  overflow: hidden;
  position: relative;
}
.homepage #jewellery_collection .jewellery-slider-box .arrow {
  border-radius: 50%;
  color: #454545;
  position: absolute;
  top: 20%;
  z-index: 10;
  cursor: pointer;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  font-style: normal;
  opacity: 0.9;
}
.homepage #jewellery_collection .jewellery-slider-box .prev {
  left: -3% !important;
}
.homepage #jewellery_collection .jewellery-slider-box .next {
  right: -28% !important;
}
.homepage #expert_craftspeople {
  padding: 80px 0;
  background: #fff9f2;
}
.homepage #expert_craftspeople .expert_craftspeople-content {
  position: relative;
}
.homepage #expert_craftspeople .expert_craftspeople-content .expert-stonehide {
  position: absolute;
  width: 22%;
  left: -7%;
  bottom: -15%;
  z-index: 1;
}
.homepage #expert_craftspeople .expert_craftspeople-content .expert-left {
  padding: 20px 20px 30px 40px;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  position: relative;
  z-index: 2;
}
.homepage #expert_craftspeople .expert_craftspeople-content .ec-right-img {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.homepage #expert_craftspeople .expert_craftspeople-content .ngau-title {
  line-height: 100px;
}
.homepage #expert_craftspeople .expert_craftspeople-content .ngau-title img {
  top: -13%;
  right: 49%;
}
.homepage #expert_craftspeople .expert_craftspeople-content .ngau-sub-title {
  margin: 25px 0 50px 0;
}
.homepage #expert_craftspeople .expert_craftspeople-content .ngau-btn {
  padding: 10px 0;
  width: 45%;
}
.homepage #asian_fengshui_decoration {
  padding: 0 0 5rem 0;
  background: #fff9f2;
  overflow: hidden;
}
.homepage #asian_fengshui_decoration .center-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.homepage #asian_fengshui_decoration .center-column .ngau-title img {
  right: auto;
}
.homepage #asian_fengshui_decoration .ngau-btn {
  padding: 10px 0;
  width: 20%;
}
.homepage #asian_fengshui_decoration .ngau-sub-title {
  margin: 20px 0 30px 0;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider {
  margin-top: 40px;
  position: relative;
  padding-right: 0;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .swiper-scrollbar {
  bottom: -8%;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .fengshui-box {
  position: relative;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .fengshui-box img {
  transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .fengshui-box .product-img1 {
  position: absolute;
  left: 0;
  top: 0;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .fengshui-box .product-img2 {
  left: 0;
  top: 0;
  opacity: 0;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .fengshui-box:hover {
  cursor: pointer;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .fengshui-box:hover .product-img1 {
  position: relative;
  opacity: 0;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .fengshui-box:hover .product-img2 {
  position: absolute;
  opacity: 1;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .fengshui-box .product-info {
  position: absolute;
  bottom: 2%;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 3;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .fengshui-box .product-info .product-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .fengshui-box .product-info .product-info-row .product-name {
  color: var(--Neutrals-Neutrals800, #433e3f);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  font-family: DegularDisplay-semibold;
  line-height: normal;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .fengshui-box .product-info .product-info-price {
  display: flex;
  gap: 10px;
  padding: 0 25px;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .fengshui-box .product-info .product-info-price .old-price {
  color: var(--Neutrals-Neutrals400, #9f9c9c);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: line-through;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .fengshui-box .product-info .product-info-price .current-price {
  color: var(--Neutrals-Neutrals900, #2b2829);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .arrow-next-afd,
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .arrow-prev-afd {
  position: absolute;
  z-index: 2;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .arrow-next-afd:hover,
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .arrow-prev-afd:hover {
  opacity: 0.8;
  cursor: pointer;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .arrow-next-afd {
  right: 0;
  top: 46%;
}
.homepage #asian_fengshui_decoration .asian_fengshui_decoration-slider .arrow-prev-afd {
  left: 0;
  top: 46%;
}
.homepage #gemstone_stories {
  background: #fff9f2;
  padding-bottom: 80px;
}
.homepage #gemstone_stories .ngau-title img {
  right: auto;
}
.homepage #gemstone_stories .container-fluid {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.homepage #gemstone_stories .gemstone-stories-box {
  position: relative;
}
.homepage #gemstone_stories .gemstone-stories-box:hover {
  cursor: pointer;
}
.homepage #gemstone_stories .gemstone-stories-box:hover .stories-tip {
  display: flex;
}
.homepage #gemstone_stories .gemstone-stories-box .stories-time {
  position: absolute;
  top: 5%;
  left: 5%;
  border-radius: 10px;
  background: var(--Backgrounds-Primary, #fff);
  display: flex;
  width: 70px;
  height: 70px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: -5px;
  flex-shrink: 0;
}
.homepage #gemstone_stories .gemstone-stories-box .stories-tip {
  position: absolute;
  bottom: 5%;
  left: 5%;
  display: none;
  flex-direction: column;
  gap: 5px;
}
.homepage #gemstone_stories .gemstone-stories-box .stories-tip .stories-tip-text {
  color: var(--Neutrals-Base-White, #fafafa);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.homepage #gemstone_stories .gemstone-stories-box .stories-tip .stories-tip-title {
  color: var(--Neutrals-Base-White, #fafafa);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.homepage #gemstone_stories .gemstone-stories-box .stories-tip .stories-readmore {
  text-decoration: underline;
  color: var(--Neutrals-Base-White, #fafafa);
  font-size: 20px;
}
.homepage #gemstone_stories .ngau-btn {
  margin-top: 60px;
}
.homepage #testimoninals {
  background: #fff9f2;
  padding: 80px 0;
}
.homepage #testimoninals .slider {
  width: 100%;
  margin: 50px auto;
}
.homepage #testimoninals .slick-slide {
  margin: 0px 20px;
}
.homepage #testimoninals .slick-slide img {
  max-width: 100%;
}
.homepage #testimoninals .slick-prev:before,
.homepage #testimoninals .slick-next:before {
  color: black;
}
.homepage #testimoninals .slick-slide {
  transition: all ease-in-out 0.3s;
}
.homepage #testimoninals .testimoninals-box {
  border-radius: 20px;
  border: 2px solid #d6d6d6;
  padding: 30px 80px 30px 80px;
  position: relative;
}
.homepage #testimoninals .testimoninals-box .hidden-slider {
  overflow: hidden;
  padding-bottom: 30px;
}
.homepage #testimoninals .testimoninals-box .custom-next,
.homepage #testimoninals .testimoninals-box .custom-prev {
  position: absolute;
}
.homepage #testimoninals .testimoninals-box .custom-next:hover,
.homepage #testimoninals .testimoninals-box .custom-prev:hover {
  cursor: pointer;
  opacity: 0.8;
}
.homepage #testimoninals .testimoninals-box .custom-prev {
  left: 2%;
  bottom: 30%;
}
.homepage #testimoninals .testimoninals-box .custom-next {
  right: 2%;
  bottom: 30%;
}
.homepage #testimoninals .testimoninals-box .ngau-title {
  color: #000;
  -webkit-text-fill-color: #000;
  display: block;
}
.homepage #testimoninals .testimoninals-box .ngau-sub-title {
  margin-bottom: 40px;
}
.homepage #testimoninals .testimoninals-box .regular .testimoninals-each {
  position: relative;
  border-radius: 10px;
  border: 2px solid #d9d9d9;
  background: #fff9f2;
  padding: 36px 25px;
}
.homepage #testimoninals .testimoninals-box .regular .fb-beauty-bottom,
.homepage #testimoninals .testimoninals-box .regular .fb-beauty-top {
  position: absolute;
}
.homepage #testimoninals .testimoninals-box .regular .fb-beauty-top {
  top: -10%;
  left: 0;
}
.homepage #testimoninals .testimoninals-box .regular .fb-beauty-bottom {
  bottom: -10%;
  right: 0;
}
.homepage #testimoninals .testimoninals-box .regular .testimoninals-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}
.homepage #testimoninals .testimoninals-box .regular .testimoninals-detail .five-star {
  display: flex;
}
.homepage #testimoninals .testimoninals-box .regular .testimoninals-detail .info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.homepage #testimoninals .testimoninals-box .regular .testimoninals-detail .info .name {
  color: var(--Neutrals-Neutrals900, #2b2829);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}
.homepage #testimoninals .testimoninals-box .regular .testimonials-content {
  margin-top: 20px;
  color: var(--Neutrals-Neutrals400, #9f9c9c);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#loose_gemstone {
  padding-top: 20px;
  padding-bottom: 100px;
  background: #fff9f2;
  overflow: hidden;
}
#loose_gemstone .loose_gemstone-slider,
#loose_gemstone .related-product-slider {
  position: relative;
  padding-right: 0;
}
#loose_gemstone .loose_gemstone-slider .swiper-scrollbar,
#loose_gemstone .related-product-slider .swiper-scrollbar {
  bottom: -8%;
}
#loose_gemstone .loose_gemstone-slider .loose-gemstone-box,
#loose_gemstone .related-product-slider .loose-gemstone-box {
  position: relative;
}
#loose_gemstone .loose_gemstone-slider .loose-gemstone-box img,
#loose_gemstone .related-product-slider .loose-gemstone-box img {
  transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
}
#loose_gemstone .loose_gemstone-slider .loose-gemstone-box .product-img1,
#loose_gemstone .related-product-slider .loose-gemstone-box .product-img1 {
  position: absolute;
  left: 0;
  top: 0;
}
#loose_gemstone .loose_gemstone-slider .loose-gemstone-box .product-img2,
#loose_gemstone .related-product-slider .loose-gemstone-box .product-img2 {
  left: 0;
  top: 0;
  opacity: 0;
}
#loose_gemstone .loose_gemstone-slider .loose-gemstone-box:hover,
#loose_gemstone .related-product-slider .loose-gemstone-box:hover {
  cursor: pointer;
}
#loose_gemstone .loose_gemstone-slider .loose-gemstone-box:hover .product-img1,
#loose_gemstone .related-product-slider .loose-gemstone-box:hover .product-img1 {
  position: relative;
  opacity: 0;
}
#loose_gemstone .loose_gemstone-slider .loose-gemstone-box:hover .product-img2,
#loose_gemstone .related-product-slider .loose-gemstone-box:hover .product-img2 {
  position: absolute;
  opacity: 1;
}
#loose_gemstone .loose_gemstone-slider .loose-gemstone-box .product-info,
#loose_gemstone .related-product-slider .loose-gemstone-box .product-info {
  position: absolute;
  bottom: 2%;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 3;
}
#loose_gemstone .loose_gemstone-slider .loose-gemstone-box .product-info .product-info-row,
#loose_gemstone .related-product-slider .loose-gemstone-box .product-info .product-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
}
#loose_gemstone .loose_gemstone-slider .loose-gemstone-box .product-info .product-info-row .product-name,
#loose_gemstone .related-product-slider .loose-gemstone-box .product-info .product-info-row .product-name {
  color: var(--Neutrals-Neutrals800, #433e3f);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-family: DegularDisplay-semibold;
}
#loose_gemstone .loose_gemstone-slider .loose-gemstone-box .product-info .product-info-price,
#loose_gemstone .related-product-slider .loose-gemstone-box .product-info .product-info-price {
  display: flex;
  gap: 10px;
  padding: 0 25px;
}
#loose_gemstone .loose_gemstone-slider .loose-gemstone-box .product-info .product-info-price .old-price,
#loose_gemstone .related-product-slider .loose-gemstone-box .product-info .product-info-price .old-price {
  color: var(--Neutrals-Neutrals400, #9f9c9c);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: line-through;
}
#loose_gemstone .loose_gemstone-slider .loose-gemstone-box .product-info .product-info-price .current-price,
#loose_gemstone .related-product-slider .loose-gemstone-box .product-info .product-info-price .current-price {
  color: var(--Neutrals-Neutrals900, #2b2829);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#loose_gemstone .loose_gemstone-slider .arrow-next-lg,
#loose_gemstone .loose_gemstone-slider .arrow-prev-lg,
#loose_gemstone .related-product-slider .arrow-next-lg,
#loose_gemstone .related-product-slider .arrow-prev-lg {
  position: absolute;
  z-index: 2;
}
#loose_gemstone .loose_gemstone-slider .arrow-next-lg:hover,
#loose_gemstone .loose_gemstone-slider .arrow-prev-lg:hover,
#loose_gemstone .related-product-slider .arrow-next-lg:hover,
#loose_gemstone .related-product-slider .arrow-prev-lg:hover {
  opacity: 0.8;
  cursor: pointer;
}
#loose_gemstone .loose_gemstone-slider .arrow-next-lg,
#loose_gemstone .related-product-slider .arrow-next-lg {
  right: 0;
  top: 46%;
}
#loose_gemstone .loose_gemstone-slider .arrow-prev-lg,
#loose_gemstone .related-product-slider .arrow-prev-lg {
  left: 0;
  top: 46%;
}
#loose_gemstone .ngau-title-row {
  margin-bottom: 46px;
}
#loose_gemstone .ngau-title-row .ngau-title img {
  right: -10%;
}
#loose_gemstone .ngau-title-row .ngau-title-row-right {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
#loose_gemstone .ngau-title-row .ngau-title-row-right .ngau-btn {
  width: 40%;
}

#service {
  background: #fff9f2;
}
#service .container-fluid {
  border-top: 1px solid;
  padding-top: 40px;
  padding-bottom: 40px;
}
#service .serive-box .service-title {
  color: var(--Neutrals-Neutrals1000, #151314);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-top: 20px;
  font-family: DegularDisplay-semibold;
}
#service .serive-box .serivce-des {
  color: var(--Neutrals-Neutrals700, #5a5555);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.booking_appointment {
  padding-bottom: 70px;
  background: #fff9f2;
}
.booking_appointment .container-fluid .row {
  border-radius: 10px;
  border-right: 3px solid #dddddc;
  border-top: 3px solid #dddddc;
  border-bottom: 3px solid #dddddc;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.booking_appointment .booking-right-content .booking-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.booking_appointment .booking-right-content .booking-form .form-title {
  margin-bottom: 10px;
  font-size: 92px;
}
.booking_appointment .booking-right-content .booking-form .form-title img {
  top: -18%;
  right: 2%;
}
.booking_appointment .booking-right-content .booking-form .form-row {
  width: 90%;
}
.booking_appointment .booking-right-content .booking-form .form-row input,
.booking_appointment .booking-right-content .booking-form .form-row textarea {
  border-radius: 10px;
  border: 2px solid #d9d9d9;
  display: flex;
  padding: 18px 30px;
  align-items: center;
  color: var(--Neutrals-Neutrals600, #726c6c);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: #fff9f2;
}
.booking_appointment .booking-right-content .booking-form .booking-btn {
  display: flex;
  padding: 18px 40px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  border-radius: 5px;
  background: var(--Gradient-2, linear-gradient(80deg, #57351e 3.71%, #000 94.27%));
  color: var(--Neutrals-Base-White, #fafafa);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 90%;
}

.product-page .product-loose-gemstone {
  background-image: url(../img/product/loosegemstone-bg.png);
}
.product-page .product-jewellery {
  background-image: url(../img/product/jc-bg.png);
}
.product-page .product-asianfengshui {
  background-image: url(../img/product/fengshui-bg.png);
}
.product-page .gemstone-story {
  background-image: url(../img/product/gemstone-story-bg.png);
}
.product-page .contact-us {
  background-image: url(../img/product/contact-us-bg.png);
}
.product-page .about-us {
  background-image: url(../img/product/about-us-bg.png);
}
.product-page .product-describe {
  color: var(--Backgrounds-Primary, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  width: 40%;
}
.product-page .product-hero {
  background-repeat: no-repeat;
  background-size: cover;
  height: 900px;
  display: flex;
  justify-content: center;
}
.product-page .product-hero .container-fluid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.product-page .product-hero .product-owner {
  color: var(--Base-Base-White, #fafafa);
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.product-page .product-hero .product-name {
  color: var(--Backgrounds-Primary, #fff);
  font-size: 96px;
  font-style: normal;
  font-weight: 500;
  line-height: 90px; /* 93.75% */
  font-family: DegularDisplay-semibold;
  margin-bottom: 40px;
}
.product-page .list-product {
  padding: 60px 0;
  background: #fff9f2;
}
.product-page .list-product .over-list-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
.product-page .list-product .over-list-product .breadcrumb {
  margin-bottom: 0;
  color: var(--Neutrals-Neutrals600, #726c6c);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.product-page .list-product .over-list-product .breadcrumb span {
  color: var(--Neutrals-Neutrals900, #2b2829);
  font-family: DegularDisplay-semibold;
  margin-left: 6px;
}
.product-page .list-product .over-list-product .select-wrap {
  position: relative;
}
.product-page .list-product .over-list-product .select-wrap img {
  position: absolute;
  right: 5%;
  bottom: 22%;
}
.product-page .list-product .over-list-product .select-wrap select {
  background: #fff9f2;
  border-radius: 5px;
  border: 1px solid var(--Neutrals-Neutrals500, #898384);
  padding: 8px 40px 8px 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product-page .list-product .product-box {
  position: relative;
}
.product-page .list-product .product-box img {
  transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
}
.product-page .list-product .product-box .product-img1 {
  position: absolute;
  left: 0;
  top: 0;
}
.product-page .list-product .product-box .product-img2 {
  left: 0;
  top: 0;
  opacity: 0;
}
.product-page .list-product .product-box:hover {
  cursor: pointer;
}
.product-page .list-product .product-box:hover .product-img1 {
  position: relative;
  opacity: 0;
}
.product-page .list-product .product-box:hover .product-img2 {
  position: absolute;
  opacity: 1;
}
.product-page .list-product .product-box .product-info {
  position: absolute;
  bottom: 2%;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  z-index: 3;
}
.product-page .list-product .product-box .product-info .product-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}
.product-page .list-product .product-box .product-info .product-info-row .product-name {
  color: var(--Neutrals-Neutrals800, #433e3f);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  font-family: DegularDisplay-semibold;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.product-page .list-product .product-box .product-info .product-info-price {
  display: flex;
  gap: 10px;
  padding: 0 15px;
}
.product-page .list-product .product-box .product-info .product-info-price .old-price {
  color: var(--Neutrals-Neutrals400, #9f9c9c);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: line-through;
}
.product-page .list-product .product-box .product-info .product-info-price .current-price {
  color: var(--Neutrals-Neutrals900, #2b2829);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product-page .list-product .gemstory img {
  right: -10%;
  top: -10%;
}
.product-page .list-product .gemstone-stories-box {
  position: relative;
}
.product-page .list-product .gemstone-stories-box:hover {
  cursor: pointer;
}
.product-page .list-product .gemstone-stories-box .stories-time {
  position: absolute;
  top: 5%;
  left: 5%;
  border-radius: 10px;
  background: var(--Backgrounds-Primary, #fff);
  display: flex;
  width: 70px;
  height: 70px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: -5px;
  flex-shrink: 0;
}
.product-page .list-product .gemstone-stories-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 20px;
}
.product-page .list-product .gemstone-stories-info .topic {
  color: var(--Neutrals-Base-Black, #0a0a0b);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product-page .list-product .gemstone-stories-info .post-title {
  color: var(--Neutrals-Base-Black, #0a0a0b);
  font-family: DegularDisplay-semibold;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.product-page .list-product .gemstone-stories-info .post-des {
  color: var(--Neutrals-Base-Black, #0a0a0b);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.product-page .list-product .read-more {
  display: inline-flex;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 5px;
  background: var(--Neutrals-Base-Black, #0a0a0b);
  color: var(--Neutrals-Base-White, #fafafa);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.product-page .list-product .product-pagination {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 60px;
}
.product-page .list-product .product-pagination .pagination-page {
  border-radius: 5px;
  border: 1px solid var(--Neutrals-Neutrals700, #5a5555);
  display: flex;
  width: 50px;
  height: 50px;
  padding: 9px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--Neutrals-Neutrals700, #5a5555);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product-page .list-product .product-pagination .pagination-page:hover {
  cursor: pointer;
}
.product-page .list-product .product-pagination .pagination-active {
  background: var(--Neutrals-Neutrals800, #433e3f);
  color: #fff;
}
.product-page .list-product .about-us-row {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.product-page .list-product .about-us-row .odd-row {
  flex-direction: row-reverse;
}
.product-page .list-product .about-us-row .about-us-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-page .list-product .about-us-row .about-us-content .ngau-title {
  display: inline-block;
  line-height: 90px;
}
.product-page .list-product .about-us-row .about-us-content .ngau-title img {
  top: -18%;
  right: -12%;
}
.product-page .list-product .about-us-row .about-us-content .product-describe {
  color: #000;
  width: 80%;
  margin-top: 24px;
}
.product-page .list-product .about-us-row .about-us-content .ngau-btn {
  margin-top: 40px;
  width: 280px;
}
.product-page .list-product .about-us-row .about-us-img {
  position: relative;
}
.product-page .list-product .about-us-row .about-us-img .about-us-layer {
  position: absolute;
  width: 50%;
  bottom: -10%;
  left: -10%;
}
.product-page .list-product .post-content .post-title {
  font-size: 64px;
  font-family: DegularDisplay-semibold;
  font-style: normal;
  font-weight: 500;
  line-height: 90px;
  background: linear-gradient(80deg, #57351e 33.59%, #000 94.27%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 26px;
}
.product-page .list-product .post-content .post-info {
  color: #797979;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}
.product-page .list-product .post-content .heading {
  color: var(--Base-Base-Black, #0a0a0b);
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}
.product-page .list-product .post-content .post-text {
  color: var(--Base-Base-Black, #0a0a0b);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.8;
  margin-bottom: 20px;
}
.product-page .list-product .post-another .tag-part {
  display: flex;
  align-items: center;
}
.product-page .list-product .post-another .tag-part ul {
  padding: 0;
  margin: 0;
}
.product-page .list-product .post-another .tag-part .tag-name {
  color: var(--Base-Base-Black, #0a0a0b);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 10%;
}
.product-page .list-product .post-another .tag-part .tag-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.product-page .list-product .post-another .tag-part .tag-list li {
  border: 1px solid var(--Neutrals-Neutrals500, #898384);
  padding: 10px 20px;
  color: var(--Neutrals-Neutrals600, #726c6c);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.product-page .list-product .post-another .tag-part .tag-list li:hover {
  cursor: pointer;
}
.product-page .list-product .post-another .tag-part .share-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-page .list-product .post-nav {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  border-top: 1px solid #9f9c9c;
  border-bottom: 1px solid #9f9c9c;
  margin: 50px 0;
  position: relative;
}
.product-page .list-product .post-nav a {
  color: inherit;
}
.product-page .list-product .post-nav .over {
  color: var(--Neutrals-Neutrals600, #726c6c);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.product-page .list-product .post-nav .under {
  color: var(--Neutrals-Neutrals1000, #151314);
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.product-page .list-product .post-nav .post-next .over {
  text-align: right;
}
.product-page .list-product .post-nav .post-nav-seperate {
  width: 1px;
  background: var(--Neutrals-Neutrals400, #9f9c9c);
  position: absolute;
  top: 10%;
  height: 80%;
  left: 50%;
}
.product-page .list-product .post-comment .comment-count {
  color: var(--Neutrals-Neutrals1000, #151314);
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.product-page .list-product .post-comment .comment-content {
  display: flex;
  align-content: flex-start;
  gap: 30px;
}
.product-page .list-product .post-comment .comment-content .comment-info {
  display: flex;
  flex-direction: column;
}
.product-page .list-product .post-comment .comment-content .comment-info .name {
  color: var(--Neutrals-Neutrals1000, #151314);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.product-page .list-product .post-comment .comment-content .comment-info .datetime {
  color: var(--Neutrals-Neutrals1000, #151314);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product-page .list-product .post-comment .comment-content .comment-info .content {
  color: var(--Base-Base-Black, #0a0a0b);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 16px;
  margin-bottom: 10px;
}
.product-page .list-product .post-comment .comment-content .comment-info .reply-click {
  color: var(--Neutrals-Neutrals1000, #151314);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: underline;
}
.product-page .list-product .post-comment .reply-box {
  margin-top: 20px;
}
.product-page .list-product .post-comment .reply-box .comment-sub-heading {
  color: var(--Neutrals-Neutrals700, #5a5555);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 40px;
}
.product-page .list-product .post-comment .reply-box form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.product-page .list-product .post-comment .reply-box form .form-row {
  width: 100%;
}
.product-page .list-product .post-comment .reply-box form .form-row textarea,
.product-page .list-product .post-comment .reply-box form .form-row input {
  background: #fff9f2;
  padding: 18px 30px;
}
.product-page .list-product .post-comment .reply-box form .reply-btn {
  display: flex;
  padding: 10px 40px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  border-radius: 5px;
  background: #0a0a0b;
  color: var(--Neutrals-Base-White, #fafafa);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 40px;
}
.product-page .list-product .sidebar ul {
  padding: 0;
  margin: 0;
}
.product-page .list-product .sidebar .lastest-title {
  color: var(--Neutrals-Neutrals1000, #151314);
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.product-page .list-product .sidebar .latest-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid #9f9c9c;
}
.product-page .list-product .sidebar .latest-col .latest-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.product-page .list-product .sidebar .latest-col .latest-row .datetime {
  color: #797979;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 10px;
}
.product-page .list-product .sidebar .latest-col .latest-row .post-the-title {
  color: var(--Base-Base-Black, #0a0a0b);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.product-page .list-product .sidebar .border-bottom {
  border-bottom: 1px solid #9f9c9c !important;
}
.product-page .list-product .sidebar .social {
  padding: 40px 0;
}
.product-page .list-product .sidebar .social .title {
  color: var(--Neutrals-Neutrals1000, #151314);
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}
.product-page .list-product .sidebar .social .social-list {
  display: flex;
  align-items: center;
  gap: 26px;
}
.product-page .list-product .sidebar .social .tag-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.product-page .list-product .sidebar .social .tag-list li {
  border: 1px solid var(--Neutrals-Neutrals500, #898384);
  padding: 10px 20px;
  color: var(--Neutrals-Neutrals600, #726c6c);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.product-page .list-product .sidebar .social .tag-list li:hover {
  cursor: pointer;
}
.product-page .product-detail {
  background: #fff9f2;
}
.product-page .product-detail .product-imgs {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.product-page .product-detail .img-display {
  overflow: hidden;
  position: relative;
}
.product-page .product-detail .img-display .product-detail-nav-icon-next,
.product-page .product-detail .img-display .product-detail-nav-icon-prev {
  position: absolute;
  z-index: 1;
}
.product-page .product-detail .img-display .product-detail-nav-icon-next:hover,
.product-page .product-detail .img-display .product-detail-nav-icon-prev:hover {
  cursor: pointer;
  opacity: 0.8;
}
.product-page .product-detail .img-display .product-detail-nav-icon-prev {
  left: 0;
  top: 50%;
}
.product-page .product-detail .img-display .product-detail-nav-icon-next {
  right: 0;
  top: 50%;
}
.product-page .product-detail .img-showcase {
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
  height: 100%;
}
.product-page .product-detail .img-showcase img {
  min-width: 100%;
}
.product-page .product-detail .img-select {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-page .product-detail .img-item:hover {
  opacity: 0.8;
}
.product-page .product-detail .product-detail-info .product-name {
  font-size: 64px;
  font-style: normal;
  font-family: DegularDisplay-semibold;
  font-weight: 500;
  line-height: 90px; /* 140.625% */
  background: linear-gradient(80deg, #57351e 33.59%, #000 94.27%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.product-page .product-detail .product-detail-info .product-short-des {
  color: var(--Neutrals-Neutrals900, #2b2829);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product-page .product-detail .product-detail-info .product-price {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 30px 0;
}
.product-page .product-detail .product-detail-info .product-price .old-price {
  color: var(--Neutrals-Neutrals400, #9f9c9c);
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration: line-through;
}
.product-page .product-detail .product-detail-info .product-price .current-price {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-family: DegularDisplay-semibold;
}
.product-page .product-detail .product-detail-info .product-ingredient {
  border-radius: 10px;
  background: var(--Backgrounds-Primary, #fff);
  padding: 26px 35px;
  margin-bottom: 50px;
}
.product-page .product-detail .product-detail-info .product-ingredient .product-ingredient-row {
  color: var(--Neutrals-Neutrals900, #2b2829);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-family: DegularDisplay-semibold;
}
.product-page .product-detail .product-detail-info .product-ingredient .product-ingredient-row span {
  font-weight: 400;
  opacity: 0.8;
}
.product-page .product-detail .product-detail-info .ngau-btn {
  color: var(--Neutrals-Base-Black, #0a0a0b);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 5px;
  padding: 10px;
  background: var(--Gradient-3, linear-gradient(265deg, #c9fffd -1.27%, #c0e6ff 55.44%, #e484b6 112.15%));
}
.product-page .contact-booking {
  padding: 50px 0;
  background: #fff9f2;
  overflow: hidden;
}
.product-page .contact-booking .contact-booking-left {
  background: url(../img/product/contact-booking-form-bg.png) lightgray 50%/cover no-repeat;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 140px;
}
.product-page .contact-booking .contact-booking-left form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-page .contact-booking .contact-booking-left form .form-title {
  font-family: DegularDisplay-semibold;
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 90px; /* 140.625% */
  background: linear-gradient(80deg, #57351e 33.59%, #000 94.27%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.product-page .contact-booking .contact-booking-left form .form-title img {
  position: absolute;
  top: -20%;
}
.product-page .contact-booking .contact-booking-left form .form-row {
  width: 80%;
}
.product-page .contact-booking .contact-booking-left form .form-row input,
.product-page .contact-booking .contact-booking-left form .form-row textarea {
  border-radius: 10px;
  border: 2px solid var(--Neutrals-Neutrals900, #2b2829);
  color: var(--Neutrals-Neutrals600, #726c6c);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background-color: transparent;
  padding: 18px 30px;
}
.product-page .contact-booking .contact-booking-left form .booking-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  padding: 18px 30px;
  width: 80%;
  border-radius: 5px;
  background: var(--Gradient-2, linear-gradient(80deg, #57351e 3.71%, #000 94.27%));
  color: var(--Neutrals-Base-White, #fafafa);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product-page .contact-booking .contact-booking-right {
  padding-right: 140px;
  padding-left: 50px;
}
.product-page .contact-booking .contact-booking-right .contact-title {
  font-size: 64px;
  font-style: normal;
  font-weight: 500;
  line-height: 90px; /* 140.625% */
  background: linear-gradient(80deg, #57351e 33.59%, #000 94.27%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.product-page .contact-booking .contact-booking-right .contact-text {
  color: var(--Neutrals-Neutrals900, #2b2829);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px; /* 112.5% */
}
.product-page .contact-booking .contact-booking-right .info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.product-page .contact-booking .contact-booking-right .info .detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer {
  background: url(../img/footer-background.png) lightgray 50%/cover no-repeat;
  padding: 50px 0 20px 0;
}
footer ul {
  padding: 0;
  margin: 0;
}
footer .footer-logo img {
  margin-bottom: 40px;
}
footer .footer-col-title {
  color: #1d1d1d;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px; /* 135% */
  margin-bottom: 10px;
}
footer .footer-col-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer .footer-col-list .book {
  text-decoration: underline;
  color: #1d1d1d;
  margin-top: 20px;
}
footer .footer-col-list li a {
  color: #1d1d1d;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px; /* 150% */
}
footer .footer-col-list li a:hover {
  opacity: 0.8;
}
footer .footer-col-list li input {
  border-radius: 5px;
  border: 1px solid var(--Neutrals-Neutrals800, #433e3f);
  color: #1d1d1d;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  background: transparent;
  padding: 10px;
  width: 100%;
  line-height: 23.4px; /* 130% */
  margin-top: 20px;
}
footer .bottom-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .list-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .list-social a:hover {
  opacity: 0.8;
}
footer .copyright {
  color: #1d1d1d;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.2px; /* 185% */
}

.swiper-scrollbar-drag {
  background: var(--Gradient-3, linear-gradient(265deg, #c9fffd -1.27%, #c0e6ff 55.44%, #e484b6 112.15%)) !important;
}

@media screen and (max-width: 1920px) {
  .container-fluid {
    max-width: calc(100vw - 140px);
  }
  .homepage #hero .hero-content-left,
  .product-page .contact-booking .contact-booking-left {
    padding-left: 70px;
  }
  .product-page .contact-booking .contact-booking-right {
    padding-right: 70px;
  }
}
@media screen and (max-width: 1800px) {
  .booking_appointment .booking-right-content .booking-form .form-title {
    font-size: 70px;
    margin-bottom: 0;
  }
  .booking_appointment .booking-right-content .booking-form {
    align-items: center;
  }
  .booking_appointment .booking-right-content .booking-form .form-title img {
    top: -23%;
    right: -12%;
  }
  .booking_appointment .booking-right-content .booking-form {
    gap: 18px;
  }
}
@media screen and (min-width: 1600px) {
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap {
    width: 900px;
  }
  .homepage #jewellery_collection .jewellery-slider-box {
    justify-content: left;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos1 {
    left: 5%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos2 {
    left: 14%;
    top: 14%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos3 {
    top: 24%;
    left: 34%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos4 {
    right: 14%;
    top: 14%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos5 {
    right: 5%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .prev {
    left: 3% !important;
    top: 33%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .next {
    right: 3% !important;
    top: 33%;
  }
  .homepage #expert_craftspeople .expert_craftspeople-content .ngau-title img {
    right: 60%;
  }
  .homepage #jewellery_collection .jewellery-left .ngau-sub-title {
    width: 80%;
  }
}
@media screen and (max-width: 1600px) {
  body {
    padding-top: 176px;
  }
  nav .logo-top {
    margin-bottom: 10px;
  }
  nav .logo-top img {
    max-width: 16%;
  }
  nav .navbar .search-box {
    width: 150px;
  }
  .product-page .product-hero {
    height: auto;
    padding: 230px 0;
  }
  .product-page .list-product .product-box .product-info .product-info-row .product-name {
    font-size: 20px;
  }
  .booking_appointment .booking-right-content .booking-form .form-title {
    font-size: 60px;
  }
  .product-page .contact-booking .contact-booking-left form .form-row,
  .product-page .contact-booking .contact-booking-left form .booking-btn {
    width: 90%;
  }
  .product-page .contact-booking .contact-booking-right .contact-title {
    font-size: 50px;
  }
  .product-page .product-detail .product-detail-info .product-name {
    font-size: 46px;
    margin-bottom: 0;
  }
  .product-page .product-detail .product-detail-info .product-price .old-price,
  .product-page .product-detail .product-detail-info .product-price .current-price {
    font-size: 38px;
  }
  .homepage #exclusive_offer .col-right .ngau-title img {
    right: 0;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos1 {
    width: 200px;
    height: 236px;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos2 {
    width: 220px;
    height: 286px;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos3 {
    width: 300px;
    height: 390px;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos4 {
    width: 220px;
    height: 286px;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos5 {
    width: 200px;
    height: 236px;
  }
}
@media screen and (max-width: 1400px) {
  .container-fluid {
    max-width: calc(100vw - 70px);
  }
  .homepage #hero .hero-content-left,
  .product-page .contact-booking .contact-booking-left {
    padding-left: 40px;
  }
  .product-page .contact-booking .contact-booking-right {
    padding-right: 40px;
  }
  body {
    padding-top: 70px;
  }
  .homepage #hero {
    height: auto;
  }
  .homepage #hero .hero-content-left .sale-percent {
    font-size: 70px;
  }
  .homepage #exclusive_offer .col-right .ngau-title {
    margin-bottom: 0;
  }
  .ngau-title {
    font-size: 46px;
  }
  .homepage #exclusive_offer {
    padding: 50px 0;
  }
  .ngau-title-row {
    align-items: flex-start;
  }
  #loose_gemstone {
    padding-bottom: 50px;
  }
  .homepage #miidle_banner {
    padding: 100px 0;
    height: auto;
  }
  .homepage #expert_craftspeople {
    padding: 50px 0;
  }
  .homepage #asian_fengshui_decoration .ngau-sub-title {
    margin: 10px 0 20px 0;
  }
  .homepage #gemstone_stories .gemstone-stories-box .stories-tip .stories-tip-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .homepage #gemstone_stories .ngau-btn {
    margin-top: 40px;
  }
  .homepage #gemstone_stories {
    padding-bottom: 50px;
  }
  #service .container-fluid {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .homepage #expert_craftspeople .expert_craftspeople-content .ngau-title .seperate {
    display: none;
  }
  .homepage #jewellery_collection .jewellery-left .ngau-title {
    line-height: normal;
  }
  .homepage #jewellery_collection .jewellery-left .ngau-title .seperate {
    display: none;
  }
  .homepage #testimoninals {
    padding: 0 0 50px 0;
  }
  #loose_gemstone .ngau-title-row .ngau-title img {
    top: -40%;
    right: -20%;
  }
  .homepage #jewellery_collection .jewellery-left .ngau-title img,
  .homepage #expert_craftspeople .expert_craftspeople-content .ngau-title img {
    right: auto;
  }
  .homepage #asian_fengshui_decoration .center-column .ngau-title img,
  .homepage #gemstone_stories .ngau-title img {
    top: -40%;
  }
  .homepage #jewellery_collection .jewellery-slider-box {
    justify-content: normal;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap {
    width: 400px;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos4 {
    right: -30%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos5 {
    right: -46%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .prev {
    left: -3% !important;
  }
  .homepage #jewellery_collection .jewellery-slider-box .next {
    right: -49% !important;
  }
  .homepage #exclusive_offer .col-right .ngau-title img {
    top: -14%;
    right: -24%;
  }
  .hero-content-right .product-info .product-name {
    font-size: 30px !important;
  }
  .hero-content-right .product-info .product-price .old-price {
    font-size: 30px !important;
  }
  .hero-content-right .product-info .product-price .current-price {
    font-size: 30px !important;
  }
  .product-page .product-hero {
    padding: 190px 0;
  }
  .product-page .product-hero .product-name {
    font-size: 80px;
    margin-bottom: 20px;
  }
  .about-us-content .ngau-title .seperate {
    display: none;
  }
  .product-page .list-product .about-us-row .about-us-content .ngau-title img {
    top: -26%;
    right: -15%;
  }
  .product-page .list-product .about-us-row .about-us-content .product-describe {
    margin-top: 0;
  }
  .product-page .list-product .sidebar .latest-col .latest-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-page .list-product .post-content .post-title {
    font-size: 50px;
    margin-bottom: 0;
  }
  .product-page .list-product .gemstory img {
    right: -20%;
    top: -50%;
  }
  .product-page .product-detail .product-detail-info .product-name {
    font-size: 36px;
  }
  .product-page .product-detail .product-detail-info .product-short-des {
    font-size: 20px;
  }
  .product-page .product-detail .product-detail-info .product-price {
    margin: 10px 0;
  }
  .product-page .product-detail .product-detail-info .product-ingredient {
    margin-bottom: 26px;
  }
  .product-page .list-product .read-more {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .homepage #expert_craftspeople .expert_craftspeople-content .ngau-btn {
    width: 50%;
  }
  #loose_gemstone .ngau-title-row .ngau-title-row-right {
    width: 60%;
  }
  .homepage #jewellery_collection .jewellery-left .ngau-sub-title {
    margin-bottom: 20px;
  }
  .homepage #expert_craftspeople .expert_craftspeople-content .ngau-sub-title {
    margin: 0 0 10px 0;
  }
  .booking_appointment .container-fluid .row {
    border: none;
  }
  .booking-content-left img {
    display: none;
  }
  .ngau-title img,
  .form-title img {
    display: none;
  }
  .homepage #jewellery_collection .jewellery-left {
    width: 100%;
  }
  .homepage #jewellery_collection .jewellery-right {
    width: 100%;
  }
  .homepage #jewellery_collection .jewellery-slider-box {
    justify-content: center;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap,
  .homepage #jewellery_collection .jewellery-slider-box .wrapper,
  .homepage #jewellery_collection .jewellery-slider-box .demo-wrap {
    width: 100%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos1 {
    left: 15%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos2 {
    left: 24%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos4 {
    right: 26%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos5 {
    right: 16%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .prev {
    left: 14% !important;
  }
  .homepage #jewellery_collection .jewellery-slider-box .next {
    right: 15% !important;
  }
  .homepage #hero .hero-content-left .sale-percent {
    font-size: 60px;
    line-height: 60px;
  }
  .product-page .product-hero {
    padding: 150px 0;
  }
  .product-page .product-hero .product-name {
    font-size: 66px;
    margin-bottom: 10px;
  }
  .booking_appointment .booking-right-content {
    border: 1px solid #dddddc;
    padding: 20px 0 50px 0;
    border-radius: 10px;
  }
  .service-seperate {
    display: none;
  }
  .product-page .contact-booking .contact-booking-left form .form-title {
    font-size: 50px;
  }
  .product-page .contact-booking .contact-booking-left {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .product-page .contact-booking .contact-booking-left form .form-row input,
  .product-page .contact-booking .contact-booking-left form .form-row textarea,
  .product-page .contact-booking .contact-booking-left form .booking-btn {
    padding: 10px 20px;
  }
  .product-page .list-product .post-nav .under {
    font-size: 24px;
  }
  .product-page .list-product .post-nav .over {
    font-size: 20px;
  }
  .product-page .list-product .post-nav {
    padding: 24px 0;
  }
  .product-page .product-detail .product-detail-info .product-name {
    font-size: 30px;
    line-height: 40px;
  }
  .product-page .product-detail .product-detail-info .product-price .old-price,
  .product-page .product-detail .product-detail-info .product-price .current-price {
    font-size: 26px;
  }
  .product-page .product-detail .product-detail-info .product-short-des {
    font-size: 18px;
  }
  .product-page .product-detail .product-detail-info .product-ingredient .product-ingredient-row {
    font-size: 18px;
  }
  .product-page .product-detail .product-detail-info .product-ingredient {
    padding: 20px;
  }
  .product-page .list-product {
    padding: 30px 0;
  }
}
@media screen and (max-width: 990px) {
  .homepage #hero .saleoff-header {
    line-height: normal;
    font-size: 60px;
  }
  .homepage #hero .saleoff-header {
    margin-bottom: 20px;
  }
  .homepage #exclusive_offer .col-right {
    border: none;
    padding-left: 0;
  }
  #exclusive_offer .ngau-sub-title {
    margin-bottom: 10px;
  }
  #loose_gemstone .ngau-title-row {
    flex-wrap: wrap;
  }
  #loose_gemstone .ngau-title-row .ngau-title-row-right {
    width: 100%;
    align-items: flex-start;
  }
  #loose_gemstone {
    padding-top: 0;
  }
  .homepage #miidle_banner {
    padding: 80px 0;
  }
  .homepage #miidle_banner .slogan {
    font-size: 40px;
    line-height: normal;
  }
  .homepage #miidle_banner .sub-slogan {
    font-size: 26px;
  }
  .homepage #miidle_banner .ngau-btn {
    margin-top: 10px;
  }
  .homepage #expert_craftspeople .expert_craftspeople-content {
    padding-left: 0;
  }
  .homepage #expert_craftspeople .expert_craftspeople-content .expert-left {
    min-height: 350px;
    justify-content: start;
    padding: 20px 40px;
  }
  .homepage #expert_craftspeople .expert_craftspeople-content .expert-left .ngau-btn {
    margin-top: auto;
  }
  .homepage #expert_craftspeople .expert_craftspeople-content .ec-right-img {
    border-radius: inherit;
    -webkit-border-radius: inherit;
    -moz-border-radius: inherit;
    -ms-border-radius: inherit;
    -o-border-radius: inherit;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .homepage #expert_craftspeople .expert_craftspeople-content .ngau-sub-title {
    margin: 10px 0;
  }
  .homepage #expert_craftspeople .expert_craftspeople-content .expert-left {
    border-radius: inherit;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .homepage #asian_fengshui_decoration .ngau-btn {
    width: 30%;
  }
  .homepage #asian_fengshui_decoration {
    padding-bottom: 50px;
  }
  .homepage #testimoninals .testimoninals-box {
    padding: 0;
    border: none;
  }
  .homepage #testimoninals .testimoninals-box .testimoninals_slide .arrow-next-fb {
    right: -4%;
  }
  .homepage #testimoninals .testimoninals-box .testimoninals_slide .arrow-prev-fb {
    left: -4%;
  }
  .homepage #testimoninals .testimoninals-box .testimoninals_slide .testimoninals-each {
    padding: 36px 25px 50px 25px;
  }
  .homepage #expert_craftspeople .expert_craftspeople-content .expert-stonehide {
    width: 30%;
    top: 28%;
    left: -13%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos1 {
    left: 10%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos2 {
    left: 20%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos4 {
    right: 21%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos5 {
    right: 11%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .prev {
    left: 8% !important;
  }
  .homepage #jewellery_collection .jewellery-slider-box .next {
    right: 9% !important;
  }
  .product-page .product-hero {
    padding: 100px 0;
  }
  .product-page .product-hero .product-name {
    font-size: 50px;
    line-height: 50px;
  }
  .booking_appointment .booking-right-content .booking-form {
    gap: 10px;
  }
  .booking_appointment .booking-right-content .booking-form .form-row input,
  .booking_appointment .booking-right-content .booking-form .form-row textarea {
    padding: 10px 20px;
    font-size: 20px;
  }
  .booking_appointment .booking-right-content .booking-form .booking-btn {
    padding: 10px 20px;
  }
  .product-page .product-describe {
    width: 100% !important;
  }
  .product-page .list-product .about-us-row .about-us-img .about-us-layer {
    display: none;
  }
  .product-page .list-product .sidebar .latest-col {
    flex-direction: row;
    gap: 10px;
    padding-bottom: 40px;
    margin-top: 20px;
  }
  .product-page .list-product .sidebar .latest-col .latest-row .datetime {
    margin-bottom: 0;
  }
  .product-page .product-detail .product-detail-info .product-name {
    font-size: 22px;
    line-height: 30px;
  }
  .product-page .product-detail .product-detail-info .product-short-des {
    font-size: 14px;
  }
  .product-page .product-detail .product-detail-info .product-ingredient {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 900px) {
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos1 {
    left: 5%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos2 {
    left: 15%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos3 {
    left: 31%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos4 {
    right: 16%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos5 {
    right: 6%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .prev {
    left: 3% !important;
  }
  .homepage #jewellery_collection .jewellery-slider-box .next {
    right: 4% !important;
  }
  .homepage #hero .hero-content-right .swiper-slide .product-info .product-price .old-price,
  .homepage #hero .hero-content-right .swiper-slide .product-info .product-price .current-price,
  .homepage #hero .hero-content-right .swiper-slide .product-info .product-name {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 800px) {
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos1 {
    left: 3%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos2 {
    left: 13%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos3 {
    left: 29%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos4 {
    right: 14%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos5 {
    right: 4%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .prev {
    left: 1% !important;
  }
  .homepage #jewellery_collection .jewellery-slider-box .next {
    right: 2% !important;
  }
}
@media screen and (max-width: 767px) {
  .homepage #hero .saleoff-header {
    font-size: 40px;
    margin-bottom: 0;
  }
	.each-slide {
	flex-direction: column;
	}
	.each-slide .hero-content-left {
	width: 100%;
	}
	.each-slide .hero-content-right {
	width: 100%;
	}
  .seperate {
    display: none;
  }
  .ngau-title {
    font-size: 30px;
  }
  .ngau-sub-title {
    font-size: 20px;
  }
  .ngau-title-row .ngau-subtitle-in-row {
    font-size: 24px;
  }
  .homepage #exclusive_offer .container-fluid .row {
    flex-direction: column-reverse;
  }
  #loose_gemstone .ngau-title-row .ngau-title-row-right {
    gap: 10px;
  }
  .homepage #miidle_banner .slogan {
    font-size: 30px;
  }
  .homepage #asian_fengshui_decoration .ngau-sub-title {
    margin: 10px 0;
  }
  .homepage #expert_craftspeople .expert_craftspeople-content .expert-left {
    padding: 0 30px 30px 30px;
    min-height: auto;
  }
  .homepage #hero .hero-content-left {
    padding-top: 80px;
    padding-bottom: 70px;
  }
  .homepage #hero .hero-content-left .sale-percent {
    font-size: 46px;
  }
  .homepage #hero .hero-content-left .header-btn {
    margin-top: 20px;
  }
  .homepage #hero .hero-content-left .limited {
    font-size: 20px;
  }
  .homepage #hero .hero-content-left .sale-percent {
    font-size: 36px;
  }
  .product-page .product-hero {
    padding: 80px 0;
  }
  .product-page .product-hero .product-name {
    font-size: 40px;
  }
  .product-page .product-detail .product-imgs {
    flex-direction: column-reverse;
  }
  .product-page .product-detail .img-select {
    flex-direction: row;
  }
}
@media screen and (max-width: 700px) {
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos1 {
    left: 1%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos2 {
    left: 11%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos3 {
    left: 25%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos4 {
    right: 12%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos5 {
    right: 2%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .prev {
    left: -1% !important;
  }
  .homepage #jewellery_collection .jewellery-slider-box .next {
    right: 0% !important;
  }
}
@media screen and (max-width: 600px) {
  .homepage #testimoninals .testimoninals-box .testimoninals_slide .arrow-next-fb {
    right: 0;
  }
  .homepage #testimoninals .testimoninals-box .testimoninals_slide .arrow-prev-fb {
    left: 0;
  }
  .homepage #asian_fengshui_decoration .ngau-btn {
    width: 50%;
  }
  #loose_gemstone .ngau-title-row .ngau-title-row-right .ngau-btn {
    width: 50%;
  }
  .homepage #miidle_banner {
    padding: 50px 20px;
    text-align: center;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos1 {
    left: 1%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos2 {
    left: 7%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos3 {
    left: 22%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos4 {
    right: 8%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos5 {
    right: 2%;
  }
  .container-fluid {
    max-width: calc(100vw - 10px);
  }
  .homepage #hero .hero-content-left .header-btn {
    margin-top: 0;
    padding: 8px 26px;
    font-size: 18px;
    margin-top: 20px;
  }
  .product-page .product-hero {
    padding: 50px 0;
  }
  .product-page .product-hero .product-name {
    font-size: 30px;
  }
  .booking_appointment .booking-right-content .booking-form .form-title {
    font-size: 40px;
  }
  .booking_appointment .booking-right-content .booking-form .form-row input,
  .booking_appointment .booking-right-content .booking-form .form-row textarea {
    padding: 6px 10px;
  }
  .booking_appointment .booking-right-content .booking-form .booking-btn {
    padding: 6px 10px;
  }
  .booking_appointment .booking-right-content {
    padding: 20px 0;
  }
  .booking_appointment {
    padding-bottom: 30px;
  }
  .product-page .contact-booking .contact-booking-left form .form-title {
    font-size: 40px;
  }
  .product-page .contact-booking .contact-booking-left form {
    gap: 10px;
  }
  .product-page .contact-booking .contact-booking-right .contact-title {
    font-size: 40px;
    margin-bottom: 0;
    line-height: 60px;
  }
  .product-page .list-product .post-content .post-title {
    font-size: 36px;
    line-height: normal;
  }
  .product-page .list-product .post-content .heading {
    font-size: 24px;
  }
  .product-page .list-product .post-another .tag-part {
    flex-wrap: wrap;
    gap: 20px;
  }
  .product-page .list-product .post-comment .reply-box form .reply-btn {
    margin-top: 0;
  }
  .product-page .list-product .post-content .post-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos1 {
    left: 0;
    width: 0;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos2 {
    left: 2%;
    width: 0;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos3 {
    left: 50% !important;
    transform: translate(-50%, -50%);
    top: 50% !important;
    right: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos4 {
    right: 2%;
    width: 0;
  }
  .homepage #jewellery_collection .jewellery-slider-box .slide-wrap .pos5 {
    right: 0;
    width: 0;
  }
  .homepage #jewellery_collection .jewellery-slider-box .prev {
    top: 35%;
  }
  .homepage #jewellery_collection .jewellery-slider-box .next {
    top: 35%;
  }
  .homepage #hero .hero-content-left {
    padding-right: 90px;
  }
  .homepage #hero .hero-content-left .sale-percent {
    font-size: 40px;
    line-height: 40px;
    font-family: DegularDisplay-semibold;
    margin-top: 10px;
  }
  .homepage #exclusive_offer {
    padding: 0 0 30px 0;
  }
  .homepage #jewellery_collection {
    padding-top: 30px;
  }
  .homepage #expert_craftspeople {
    padding-top: 0;
    padding-bottom: 30px;
  }
  #service .container-fluid {
    padding: 30px 10px;
  }
  .homepage #testimoninals .testimoninals-box .ngau-sub-title {
    margin-bottom: 0;
  }
  .slick-dots {
    bottom: -16% !important;
  }
  .homepage #testimoninals {
    padding: 0;
  }
  .homepage #hero .hero-content-right .swiper-slide .product-info {
    bottom: 8%;
  }
  .product-page .product-hero .ngau-btn {
    padding: 10px;
    font-size: 16px;
    gap: 10px;
  }
  .booking_appointment .booking-right-content .booking-form .form-title {
    font-size: 30px;
  }
  .product-page .list-product {
    padding: 30px 0;
  }
  .product-page .list-product .over-list-product {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .product-page .list-product .over-list-product img {
    bottom: 22%;
    right: 3%;
  }
  .product-page .list-product .over-list-product .breadcrumb {
    font-size: 18px;
  }
  .product-page .list-product .over-list-product select {
    font-size: 14px;
  }
  .product-page .contact-booking .contact-booking-left form .form-title {
    line-height: 50px;
  }
  .product-page .contact-booking .contact-booking-right .contact-text {
    font-size: 20px;
  }
  .product-page .contact-booking .contact-booking-right .contact-title {
    font-size: 30px;
  }
  .product-page .product-describe {
    font-size: 18px;
    line-height: 22px;
  }
  .product-page .list-product .about-us-row .about-us-content .ngau-title {
    line-height: normal;
  }
  .product-page .list-product .about-us-row .about-us-content .ngau-btn {
    margin-top: 20px;
  }
}

/*# sourceMappingURL=style.css.map */


.product-page .list-product .product-box .product-info {
	padding: 0.4rem 0;
	background: #fff; 
	opacity: 0.5;
	bottom: 0;
}
#loose_gemstone .loose_gemstone-slider .loose-gemstone-box .product-info, #loose_gemstone .related-product-slider .loose-gemstone-box .product-info {
	padding: 0.4rem 0;
	background: #fff; 
	opacity: 0.5;
	bottom: 0;
}
.homepage #jewellery_collection .jewellery-slider-box .slide-wrap .inner .product-info {
	padding: 0.4rem 0 1rem 0;
	background: #fff; 
	opacity: 0.5;
	bottom: 0;
}