@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Spectral+SC:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Italianno&display=swap");

:root {
  --primary: #ce9e56;
  --secondary: #222a3e;
  /* --secondaryGradient: linear-gradient(
    90deg,
    rgba(34, 42, 62, 1) 0%,
    rgba(12, 18, 32, 1) 40%
  ); */
  --secondaryGradient: linear-gradient(1.12deg, #cb8e3f -55%, #144fe2 65.08%);

  --secondaryGradientLight: linear-gradient(
    180deg,
    rgba(249, 251, 255, 0.5) 4.44%,
    #f9fbff 110.38%
  );
  --black: #000000;
  --white: #ffffff;
  --bgLight: #ebf3ff;
  --textDark: #404e5c;
  --bgDark: #404e5c;
  --textLight: #999999;
  --textgreen: #31a591;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 24px;
  background: var(--bgLight);
}

input:focus {
  outline: 0;
}

.font_tenor {
  font-family: "Tenor Sans", sans-serif;
}

.font_rubik {
  font-family: "Rubik", sans-serif;
}

.font_spectral {
  font-family: "Spectral SC", serif;
}

.italianno-regular {
  font-family: "Italianno", cursive;
}

.text_light {
  color: var(--textLight);
}

.text_dark {
  color: var(--textDark);
}

.text_white {
  color: var(--white);
}

.text_primary {
  color: var(--primary);
}

.text_secondary {
  color: var(--secondary);
}

.bg_primary {
  background: var(--primary);
}

.bg_secondary {
  background: var(--secondary);
}

.bg_light {
  background: var(--bgLight);
}

.bgGradient {
  background: var(--secondaryGradient);
}

h1,
.h1 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
  font-family: "Tenor Sans", sans-serif;
}

h2,
.h2 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}

h3,
.h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
}

h4,
.h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

h5,
.h5 {
  font-size: 15px;
  line-height: 22px;
  font-weight: 600;
}

h6,
.h6 {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}

p {
  font-size: 18px;
  line-height: 29px;
  color: var(--textDark);
  font-weight: 400;
}

.text_14 {
  font-size: 14px !important;
  line-height: 20px !important;
}

.text_16 {
  font-size: 14px !important;
  line-height: 25px !important;
}

.text_18 {
  font-size: 16px !important;
  line-height: 26px !important;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: 0.5s ease;
}

a:hover {
  color: var(--secondary);
}

.fw_100 {
  font-weight: 100;
}

.fw_200 {
  font-weight: 200;
}

.fw_300 {
  font-weight: 300;
}

.fw_400 {
  font-weight: 400;
}

.fw_500 {
  font-weight: 500;
}

.fw_600 {
  font-weight: 600;
}

.fw_700 {
  font-weight: 700;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

/* img,
svg {
  vertical-align: initial;
} */

.btn_border_secondary,
.btn_border,
.btn_primary,
.btn_secondary {
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 11px 25px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 5;
  gap: 12px;
}

.btn_border_secondary,
.btn_border {
  border: 1px solid #f9fbff;
  background-color: transparent;
}

.btn_border_secondary {
  border-color: var(--textDark);
}

.btn_border_secondary i,
.btn_border i,
.btn_primary i,
.btn_secondary i {
  margin-right: 5px;
}

.btn_border_secondary:before,
.btn_border:before,
.btn_primary:before,
.btn_secondary:before {
  background-color: var(--secondary);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  width: 0;
  z-index: -1;
  -webkit-transform: skew(50deg);
  -moz-transform: skew(50deg);
  -o-transform: skew(50deg);
  transform: skew(50deg);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  transform-origin: top left;
  -ms-transition: 0.4s;
}

.btn_border:before {
  background-color: var(--primary);
}

.btn_border_secondary:before {
  background-color: var(--bgDark);
}

.btn_border_secondary:hover,
.btn_border:hover,
.btn_primary:hover,
.btn_secondary:hover {
  color: var(--white);
}

.btn_border:hover {
  border-color: var(--primary);
}

.btn_border_secondary:hover {
  border-color: var(--bgDark);
}

.btn_secondary:before {
  background: var(--primary);
}

.btn_border_secondary:hover:before,
.btn_border:hover:before,
.btn_primary:hover:before,
.btn_secondary:hover:before {
  height: 100%;
  width: 200%;
}

.btn_secondary {
  background: var(--secondaryGradient);
  color: var(--white);
}

.btn_border_secondary {
  color: var(--textDark);
}

.container {
  max-width: 1750px;
}

.top_header {
  padding: 15px 0 0;
}

.top_header ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top_header ul li {
  padding: 0 12px;
  border-left: 1px solid var(--bgDark);
  color: var(--textDark);
}

.top_header ul li:first-child {
  border: 0;
}

.top_header ul li:last-child {
  padding-right: 0;
}

.top_header ul li a {
  font-size: 16px;
  line-height: 20px;
  color: var(--textDark);
}

.top_header ul li a:hover {
  color: var(--primary);
}

.logo_part {
  padding: 15px 0;
}

.search_wrap {
  position: relative;
}

.search_wrap .form-control {
  box-shadow: none !important;
  border: 0;
  border-radius: 30px;
  padding: 9px 20px 9px 60px;
}

.search_wrap .btn_saerch {
  background: var(--primary);
  color: var(--white);
  font-size: 20px;
  border: 0;
  padding: 9px 15px;
  border-radius: 30px 0 0 30px;
  position: absolute;
  left: 0;
  top: 0;
}

.header_right_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header_right_wrapper .search_wrap {
  width: 100%;
  max-width: 580px;
  margin-right: 30px;
}

.btn_transparent {
  padding: 0;
  border: 0;
  background: transparent;
}

.account_wrapper {
  padding-left: 25px;
  margin-left: 25px;
  border-left: 1px solid var(--bgDark);
}

.account_wrapper ul {
  display: flex;
  align-items: center;
}

.account_wrapper ul li {
  padding: 0 16px;
}

.account_wrapper ul li:last-child {
  padding-right: 0;
}

.account_wrapper ul li a {
  position: relative;
}

.account_wrapper ul li a span {
  position: absolute;
  right: -13px;
  top: -11px;
  width: 19px;
  height: 19px;
  font-weight: 600;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
}

.language_wrapper .dropdown-toggle img {
  margin-right: 5px;
}

.menu_wrapper {
  background: var(--secondaryGradient);
  padding: 0;
}

.desktop_none {
  display: none;
}

.menu_wrapper .navbar-collapse > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.menu_wrapper .navbar-collapse > ul > li > a {
  padding: 15px 30px;
  display: block;
  color: var(--white);
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
}

.menu_wrapper .navbar-collapse > ul > li > a:before {
  content: "";
  position: absolute;
  left: 21px;
  bottom: 5px;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: 0.5s ease;
}

.menu_wrapper .navbar-collapse > ul > li > a.active:before,
.menu_wrapper .navbar-collapse > ul > li > a:hover:before {
  width: calc(100% - 41px);
}

.navbar {
  padding: 0;
}

.dropdown_wrapper {
  position: absolute;
  left: 0;
  width: 100%;
  /* top: 54px; */
  z-index: 9;
  background: var(--bgLight);
  display: none;
}

.menu_wrapper .navbar-collapse > ul > li:hover .dropdown_wrapper {
  display: block;
}

.top_menu_wrap {
  padding: 35px 0;
}

.sub_menu_wrapper h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 24px;
}

.sub_menu_wrapper ul li a {
  font-size: 18px;
  line-height: 28px;
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  color: var(--textDark);
  font-weight: 400;
}

.sub_menu_wrapper ul li a img {
  margin-right: 8px;
  width: 25px;
}

.sub_menu_wrapper ul li a:hover {
  color: var(--primary);
}

.btn_link {
  font-size: 20px;
  font-weight: 500;
  position: relative;
}

.btn_link:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transition: 0.5s ease;
}

.btn_link:hover:before {
  width: 0;
}

.view_all {
  margin-top: 15px;
}

.submenu_bottom_Wrap {
  padding: 15px 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.3);
}

.submenu_bottom_Wrap ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.submenu_bottom_Wrap ul li {
  padding: 0 25px;
  border-right: 1px solid var(--primary);
}

.submenu_bottom_Wrap ul li:last-child {
  border-right: 0;
}

.submenu_bottom_Wrap ul li a {
  font-size: 18px;
  line-height: 28px;
  display: inline-flex;
  align-items: center;
  color: var(--textDark);
  font-weight: 400;
}

.submenu_bottom_Wrap ul li a img {
  margin-right: 8px;
}

.banner_slide_wrap {
  position: relative;
}

.banner_text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 9;
  width: 100%;
}

.banner_inner_text_wrap {
  max-width: 800px;
  text-align: left;
}

.banner_inner_text_wrap h1 {
  font-size: 50px;
  line-height: 60px;
  margin: 0 0 30px;
  font-weight: 400;
}

.banner_slider .swiper-button-next:after,
.banner_slider .swiper-button-prev:after {
  color: #fff;
  font-size: 35px;
}

.banner_slider .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #57647b;
  opacity: 1;
}

.banner_slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background: var(--primary);
}

.shop_banner_inner a {
  display: block;
}

.shop_banner_inner h4 {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: var(--textDark);
  transition: 0.5s ease;
  margin: 24px 0 0;
}

.shop_banner_inner a:hover h4 {
  color: var(--primary);
}

.shop_banner_inner img {
  width: 100%;
  aspect-ratio: 7 / 3;
  object-fit: cover;
}

.service_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  position: relative;
  /* border-left: 1px solid var(--bgDark); */
}

.service_inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: var(--bgDark);
}

.searvice_wrap .row > div:first-child .service_inner:after {
  display: none;
}

.service_inner img {
  margin-right: 10px;
}

.service_inner h4 {
  font-weight: 400;
  font-size: 20px;
  margin: 0;
}

.title_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 30px;
}

.title_wrapper h2 {
  display: inline-block;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 10px;
  text-transform: uppercase;
  position: relative;
  color: #404e5c;
}

.title_wrapper h2:before {
  content: "";
  position: absolute;
  left: -55px;
  top: 50%;
  transform: translate(0, -50%);
  width: 45px;
  height: 5px;
  background: var(--secondary);
}

.title_wrapper h2:after {
  content: "";
  position: absolute;
  right: -55px;
  top: 50%;
  transform: translate(0, -50%);
  width: 45px;
  height: 5px;
  background: var(--secondary);
}

.category_box .category_img {
  width: 100%;
  overflow: hidden;
  margin-left: 40px;
}

@media (max-width: 767px) {
  .category_box .category_img {
    margin-left: 0;
  }
}

.category_box .category_img img {
  width: 100%;
  aspect-ratio: 7 / 8;
  object-fit: cover;
  transition: 0.5s ease;
}

.category_box .category_img:hover img {
  transform: scale(1.1);
}

.category_box .category_text {
  text-align: center;
}

.category_box .category_text h5 {
  font-size: 20px;
  font-weight: 400;
  margin: 25px 0 10px;
}

.category_box .category_text a {
  font-size: 16px;
}

.category_slider_wrapper .category_slider .swiper-wrapper {
  padding-left: calc(100% / 2 - 860px);
}

.collection_grid_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.collection_grid_wrapper .collection_grid.one,
.collection_grid_wrapper .collection_grid.three {
  width: calc(31% - 13px);
}

.collection_grid_wrapper .collection_grid.two {
  width: calc(38% - 14px);
}

.collection_box {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.collection_box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  z-index: 1;
  transition: 0.5s ease;
}

.collection_box:hover:before {
  opacity: 1;
}

.collection_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection_box.big {
  aspect-ratio: 12 / 13;
}

.collection_box.medium {
  aspect-ratio: 9 / 4;
}

.collection_box.small {
  aspect-ratio: 6 / 5;
}

.product_box .product_img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.product_box .product_img > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product_info {
  padding: 15px 0 0;
}

.product_info h6 {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

.product_info h6 a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
  color: var(--textDark);
}

.product_info h6 a:hover {
  color: var(--primary);
}

.product_info .price {
  display: flex;
}

.product_info .price p {
  font-size: 18px;
  font-weight: 500;
  color: var(--textDark);
  margin: 0;
}

.product_info .price p del {
  color: var(--textLight);
  padding: 0 10px;
}

.product_info .price p span {
  color: var(--primary);
}

.product_img ul {
  position: absolute;
  right: -50px;
  bottom: 60px;
  z-index: 9;
  transition: 0.5s ease;
}

.product_img .tag_Wrap {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 9;
  background: var(--primary);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 4px 25px;
  display: inline-block;
  text-transform: uppercase;
}

.product_box:hover .product_img ul {
  right: 20px;
}

.product_img ul li {
  margin: 0 0 10px;
}

.product_img ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 34px;
  background: var(--primary);
}

.product_img ul li a:hover {
  background: var(--secondary);
}

.custom_design_wrapper {
  background: url(/images/custom-design-bg.jpg);
  background-size: cover;
  padding: 110px 0;
}

.custom_design_inner h4 {
  color: var(--white);
  font-size: 35px;
  font-weight: 500;
  margin: 0 0 15px;
}

.custom_design_inner {
  max-width: 700px;
}

.custom_design_inner h4 span {
  color: var(--primary);
}

.custom_design_inner p {
  font-size: 20px;
  line-height: 35px;
  color: var(--white);
  margin: 0 0 30px;
}

.product_box.two .product_img {
  aspect-ratio: 8 / 9;
}

.product_box.two .product_img img {
  transition: 0.5s ease;
}

.product_box.two:hover .product_img img {
  transform: scale(1.1);
}

.product_box.two .product_info h6 a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.offer_banner {
  position: sticky;
  top: 10px;
}

.appointment_wrapper {
  background: url(/images/appointment-bg.jpg);
  background-size: cover;
  padding: 70px 0;
}

.appointment_inner_box {
  padding: 80px 80px 80px 100px;
  position: relative;
  border-radius: 0 15px 15px 0;
  max-width: 720px;
  margin-left: auto;
  z-index: 100;
}

.appointment_inner_box img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  filter: drop-shadow(#83d0e3ac -10px 10px);
}

/* .appointment_inner_box::before {
  content: '';
} */

.appointment_inner_box h4 {
  font-size: 35px;
  font-weight: 500;
  margin: 0 0 15px;
  color: #404e5c;
}

.appointment_inner_box p b {
  font-weight: 500;
}

.title_two {
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  color: var(--textDark);
  font-family: "Tenor Sans", sans-serif;
  margin: 0 0 50px;
  text-align: center;
}

.gift_box {
  position: relative;
}

.gift_box .gift_img {
  aspect-ratio: 5 / 6;
  border-radius: 10px;
  overflow: hidden;
  z-index: 9;
  position: relative;
}

.gift_box .gift_img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(/images/shadow.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.gift_box .gift_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.gift_box:hover .gift_img img {
  transform: scale(1.1);
}

.gift_box .gift_text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 50px 30px;
  z-index: 10;
}

.gift_box .gift_text h4 {
  font-family: "Tenor Sans", sans-serif;
  font-size: 40px;
  line-height: 42px;
  color: var(--white);
  font-weight: 400;
  margin: 0 0 12px;
}

.gift_box .gift_text a {
  font-size: 20px;
  font-weight: 600;
}

.gift_box .gift_text a:hover {
  color: var(--white);
}

.gift_box .gift_text a img {
  width: 20px;
}

.title_three h2 {
  position: relative;
  font-family: "Spectral SC", serif;
  font-size: 35px;
  line-height: 42px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  margin: 0;
}

.title_three h2:before {
  content: "";
  position: absolute;
  right: -140px;
  top: 50%;
  width: 120px;
  height: 1px;
  background: var(--bgDark);
}

.title_three h2:after {
  content: "";
  position: absolute;
  right: -150px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background: var(--bgDark);
  border-radius: 50%;
}

.title_three h2 span {
  font-size: 50px;
  color: var(--primary);
  display: block;
}

.promise_wrapper ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 60px;
}

.promise_wrapper ul li {
  width: 20%;
  padding: 0 12px;
  text-align: center;
}

.promise_wrapper ul li .icon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: 0.5s ease;
}

.promise_wrapper ul li:hover .icon {
  background: var(--primary);
}

.promise_wrapper ul li:hover .icon img {
  filter: brightness(0) invert(1);
}

.promise_wrapper ul li h6 {
  font-size: 20px;
  color: var(--textDark);
  line-height: 29px;
  margin: 15px 0 0;
}

.review_title .star_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.review_title .star_wrap img {
  margin: 0 9px;
}

.review_box .review_img {
  aspect-ratio: 9/8;
  margin: 0 0 20px;
}

.review_box .review_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review_text .user_info {
  display: flex;
}

.review_text .user_info .icon {
  width: 20px;
}

.review_text .user_info .text {
  width: calc(100% - 20px);
  padding-left: 15px;
}

.review_text .user_info .text p {
  margin: 0;
  line-height: 28px;
}

.review_text .user_info .text p span {
  display: block;
}

.review_slider .swiper-button-next,
.review_slider .swiper-button-prev {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary);
  top: 32%;
}

.review_slider .swiper-button-next {
  right: 0;
}

.review_slider .swiper-button-prev {
  left: 0;
}

.review_slider .swiper-button-next:after,
.review_slider .swiper-button-prev:after {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}

.review_slider_Wrapper {
  padding: 0 30px;
  position: relative;
}

.review_slider_Wrapper .review_slider {
  position: initial;
}

.association_inner_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.association_inner_wrap .association_title {
  width: 280px;
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid var(--bgDark);
}

.association_inner_wrap .association_title h2 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 400;
}

.association_logo_wrap {
  width: calc(100% - 320px);
}

.association_logo img {
  height: 110px;
  width: 100%;
  object-fit: contain;
}

.insta_slider_Wrapper .insta_slider .swiper-wrapper {
  padding-left: calc(100% / 2 - 860px);
}

.insta_post {
  aspect-ratio: 6/7;
  overflow: hidden;
}

.insta_post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.insta_post:hover img {
  transform: scale(1.1);
}

.footer_top_wrap {
  border-top: 1px dashed rgba(0, 0, 0, 0.3);
}

.title_footer h2 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 5px;
}

.title_footer p {
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}
.vertical-border {
  border-right: 1px solid #404e5c;
  height: 100%;
  padding-right: 50px;
}

.form-group {
  position: relative;
}

.form-group .icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translate(0, -50%);
  /* z-index: 9; */
}

.form-group textarea,
.form-group .form-select,
.form-group .form-control {
  padding: 14px 20px 14px 48px;
  background: transparent;
  border: 1px solid var(--bgDark);
  box-shadow: none !important;
  border-radius: 0;
  width: 100%;
}

.form-group .form-select {
  background-image: url(/images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.form-group.form-group_wrap textarea,
.form-group.form-group_wrap .form-select,
.form-group.form-group_wrap .form-control {
  padding: 20px;
  background-color: var(--white);
  margin-bottom: 30px;
}

.form-group.form-group_wrap label {
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.form_wrapper {
  max-width: 1140px;
  margin: 0 auto;
}

ul.social_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.social_wrap li {
  padding: 0 12px;
}

ul.social_wrap li a img {
  width: 40px;
  height: 40px;
}

.main_footer_Wrapper {
  background: linear-gradient(1.12deg, #0c1220 -55%, #222a3e 65.08%);
}

.address_wrapper p {
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  color: var(--white);
}

.address_wrapper p b {
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  display: block;
  margin: 0 0 5px;
}

.address_wrapper p span {
  display: block;
}

.address_wrapper p a {
  color: var(--white);
}

.address_wrapper p a:hover {
  color: var(--primary);
}

.map_wrapper iframe {
  border-radius: 10px;
}

.footer_link {
  margin: 0 0 20px;
}

.footer_link h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  margin: 0 0 20px;
}

.footer_link ul li a {
  color: var(--white);
  font-weight: 300;
  font-size: 16px;
  line-height: 32px;
}

.footer_link ul li a:hover {
  color: var(--primary);
}

.footer_link.download_app_wrap a img {
  max-width: 230px;
}

.copyright_wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.payment_card {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.shop_filter_wrap {
  background: #404e5c;
  padding: 15px 0;
}

.btn_white_border {
  background: transparent;
  color: #fff;
  border: 1px solid #bababa;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 24px;
  display: inline-block;
  border-radius: 5px;
}

.sorting_wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.sorting_wrap li {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 0 15px;
  border-right: 1px solid #fff;
  display: flex;
  align-items: center;
}

.sorting_wrap li:last-child {
  border-right: 0;
  padding-right: 0;
}

.sorting_wrap li label {
  white-space: nowrap;
  padding-right: 20px;
}

.sorting_wrap li .form-select {
  border-radius: 0;
  box-shadow: none !important;
  outline: 0 !important;
  padding: 4px 36px 4px 9px;
}

.order_buy_wrapper {
  background: linear-gradient(90deg, #404e5c -12.05%, #222a3e 107.87%);
  padding: 80px 150px;
}

.product_buy_img {
  position: relative;
  text-align: right;
}

.product_absolute {
  position: absolute;
  bottom: 40px;
  left: 130px;
}

.product_buy_text h4 {
  color: var(--primary);
  font-size: 40px;
  line-height: 45px;
  font-weight: 400;
}

.product_buy_text h2 {
  font-weight: 400;
  color: var(--white);
}

.product_buy_text p {
  margin: 20px 0;
  color: var(--white);
}

.talk_Gemologist_heading {
  font-family: "Spectral SC";
  font-size: 35px;
  font-weight: 500;
}

.tabs_wrapper .nav {
  justify-content: center;
  gap: 50px;
  margin-bottom: 80px;
}

.tabs_wrapper .nav .nav-item .nav-link.active {
  background-color: var(--white);
}

.tabs_wrapper .nav .nav-item .nav-link {
  color: var(--textDark);
  font-size: 18px;
  line-height: 28px;
  padding: 10px 40px;
  border-radius: 10px;
}

.accordion-item {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--bgDark);
  margin-bottom: 25px;
}

.accordion-body {
  padding: 20px 20px 30px 40px;
  /* border-bottom: 1px solid var(--bgDark); */
}

.accordion-body p {
  margin: 0;
  max-width: 800px;
}

.accordion-button:not(.collapsed),
.accordion-button {
  font-size: 21px;
  line-height: 30px;
  font-weight: 400;
  color: var(--bgDark);
  background-color: transparent;
  border: 0;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  content: "\f078";
  background-image: none;
  background-color: var(--white);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-position: center;
  background-size: 19px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  font-size: 19px;
  text-align: center;
  line-height: 30px;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  color: var(--white);
  background-color: var(--primary);
}

.diamond_ring_text {
  text-align: center;
  max-width: 1340px;
  margin: 0 auto;
}

.diamond_ring_text h1 {
  font-size: 50px;
  line-height: 65px;
  font-weight: 400;
  font-family: "Tenor Sans", sans-serif;
}

.diamond_shap_wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.diamond_shap_wrapper a {
  display: block;
}

.diamond_shap_wrapper .diamond_shap_txt {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  text-align: center;
}

.diamond_shap_wrapper .diamond_shap_txt h3 {
  color: var(--white);
  font-weight: 400;
}

.diamond_shap_wrapper .diamond_shap_txt h3 span i {
  color: var(--white);
}

.diamond_shap_wrapper .diamond_shap_txt h3 span {
  margin-left: 10px;
  transform: rotate(-31deg);
  display: inline-block;
}

.custom-ring-txt {
  background-color: #2f384b;
  height: 121%;
}

.coustom_ring_txt_wrap {
  max-width: 670px;
  margin: 0 auto;
  display: inline-flex;
  flex-direction: column;
  height: 100%;
  padding-right: 30px;
  justify-content: center;
}

.coustom_ring_txt_wrap h2 {
  color: var(--white);
  text-align: left;
}

.coustom_ring_txt_wrap p {
  color: var(--white);
  text-align: left;
  margin: 20px 0 30px;
}

.coustom_ring_txt_wrap .btn_primary {
  width: fit-content;
}

.category_wrapper h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 20px;
}

.category_wrapper ul li a {
  text-decoration: underline;
  font-size: 18px;
  line-height: 38px;
  font-weight: 400;
  color: var(--bgDark);
}

.diamond_rarrings_section {
  background-color: var(--bgDark);
}

.diamond_rarrings_section .title_two {
  color: var(--white);
}

.earrings_right_txt p {
  margin: 0;
  color: var(--white);
}

.diamond_details_wrap h3 {
  font-size: 28px;
  line-height: 40px;
  font-weight: 400;
}

.diamond_details_wrap {
  margin-bottom: 40px;
}

.diamond_details_wrap:last-child {
  margin-bottom: 0;
}

.diamond_details_wrap h5 {
  color: var(--bgDark);
  font-size: 20px;
  line-height: 28px;
}

.diamond_details_wrap ul {
  padding-left: 20px;
}

.diamond_details_wrap ul li {
  list-style: disc;
  color: var(--bgDark);
  font-size: 20px;
  line-height: 28px;
}

.diamond_details_wrap p {
  margin: 0;
}

.gift_img_wrapper {
  background: var(--secondaryGradient);
  overflow: hidden;
}

/* .gift_img_wrapper img{
    filter: blur(10px);
} */

.chackbox_wrapper {
  margin-bottom: 60px;
}

.chackbox_wrapper ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.form-check {
  padding: 0;
}

.form-check input {
  display: none;
}

.form-check label {
  position: relative;
  padding-left: 30px;
  margin-bottom: 0;
}

.form-check label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 3px solid var(--textDark);
  border-radius: 50%;
}

.form-check label::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
}

.form-check input:checked + label::before {
  opacity: 1;
  visibility: visible;
}

.btn_wrapper {
  display: flex;
  gap: 50px;
}

.step_section {
  background: linear-gradient(
    180deg,
    rgba(249, 251, 255, 0.5) 4.44%,
    #f9fbff 110.38%
  );
}

.max-content {
  max-width: 710px;
  margin: 0 auto;
}

.step_txt {
  text-align: center;
  margin-top: 30px;
}

.step_txt h2 {
  color: var(--textDark);
  font-size: 26px;
  line-height: 36px;
  font-weight: 400;
}

.step_txt p {
  color: var(--textDark);
  font-size: 24px;
  line-height: 33px;
  font-weight: 400;
  margin-bottom: 0;
  padding: 0 30px;
}

.step_main_wrapper {
  margin-bottom: 150px;
}

.reset_txt {
  margin: 20px 0;
}

.reset_txt h5 {
  color: var(--textDark);
  font-weight: 500;
}

.only_txt {
  color: var(--textDark);
  font-size: 18px;
  line-height: 25px;
  text-decoration: underline;
}

.only_txt:hover {
  color: var(--primary);
}

.ring_size_center p {
  font-size: 18px;
  line-height: 30px;
  margin: 12px auto 0;
  max-width: 500px;
}

.ring_size_center h3 {
  font-size: 24px;
  line-height: 34px;
  color: var(--textDark);
  margin: 0;
}

.ring_size_center h2 {
  font-size: 44px;
  line-height: 55px;
  font-weight: 400;
  font-family: "Tenor Sans";
  color: var(--textDark);
  margin: 30px 0;
}

.table_wrapper table {
  width: 100%;
}

.table_wrapper table tbody tr td,
.table_wrapper table thead tr th {
  padding: 10px 20px;
  background-color: #f9fbff;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  border: 1px solid #404e5c1a;
}

.table_wrapper {
  width: 100%;
  overflow: auto;
}

.table_wrapper table tbody tr td {
  background-color: var(--white);
  padding: 13px 23px;
}

.cutom-ring-img {
  position: relative;
}

.absolute_img {
  position: absolute;
  top: 50%;
  left: -110px;
  transform: translate(00, -50%);
  height: auto !important;
}

.cutom-ring-img img,
.cutom-ring-img {
  height: 110%;
}

.left_to_right_ring .coustom_ring_txt_wrap {
  padding-left: 120px;
  padding: 40px;
  max-width: 780px;
}

.left_to_right_ring .coustom_ring_txt_wrap h2 {
  font-weight: 400;
}

.diamond_details_wrap .ul_description li {
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 10px;
}

.inner_banner_bg {
  background-color: var(--secondary);
  padding: 130px 30px;
}

.inner_banner_txt h1 {
  font-size: 50px;
  line-height: 65px;
  color: var(--white);
}

.inner_banner_txt p {
  color: var(--white);
}

.inner_banner_txt {
  max-width: 900px;
  margin: 0 auto;
}

.diamond_collection_wrap {
  background-image: url(/images/diamond_collection.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.diamond_collection_inner {
  max-width: 620px;
  margin: 0 auto;
}

.yellow_txt {
  color: var(--primary);
  font-size: 20px;
  line-height: 35px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.diamond_collection_inner h2 {
  color: var(--white);
  font-family: "Tenor Sans";
  font-size: 50px;
  line-height: 65px;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 1px;
}

.diamond_collection_inner h3 {
  color: var(--white);
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
}

.diamond_collection_inner h3::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 156px;
  height: 1px;
  background-color: var(--white);
}

.diamond_collection_inner p {
  color: var(--white);
  margin-bottom: 35px;
}

.chack_diamond_wrapper {
  background-color: var(--white);
  padding: 20px;
}

.chack_diamond h3 {
  font-weight: 400;
  color: var(--textDark);
  margin: 10px 0 0;
}

.chack_diamond img {
  width: 64px;
  height: 64px;
  /* filter: brightness(0.4); */
}
.chack_diamond.shape-con img {
  filter: brightness(0.4);
}

.chack_diamond input {
  display: none;
}

/* fency........................................ */
.chack_diamond_fency h3 {
  font-weight: 400;
  color: var(--textDark);
  margin: 10px 0 0;
}

.chack_diamond_fency img {
  width: 64px;
  height: 64px;
  /* filter: brightness(0.4); */
}

.chack_diamond_fency input {
  display: none;
}

.chack_diamond_wrapper ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chack_diamond_wrapper ul li {
  text-align: center;
}

.chack_diamond input:checked + label h3 {
  color: var(--primary);
}

.chack_diamond input:checked + label img {
  filter: brightness(0.4);
}
.chack_diamond.shape-con input:checked + label img {
  filter: inherit !important;
}
.diamond_size_section {
  background: linear-gradient(
    180deg,
    rgba(249, 251, 255, 0.5) 4.44%,
    #f9fbff 110.38%
  );
}

.diamond_size_wrapper {
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}

.diamond_size_wrapper h2 {
  /* font-size: 50px;
    line-height: 65px; */
  color: var(--textDark);
  font-weight: 400;
  font-family: "Tenor Sans";
  margin-bottom: 20px;
}

.why_choos_diamond h2 {
  color: var(--textDark);
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
}

.why_choos_diamond img {
  width: 80px;
  height: 120px;
  margin-bottom: 30px;
}

.why_choos_diamond {
  padding: 0 60px;
}

.what_are_wrapper {
  padding: 85px 30px;
  background-image: url(/images/what-diamond.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.what_diamond_txt .title_two {
  margin-bottom: 10px;
  text-align: left;
  color: var(--white);
}

.what_diamond_txt p {
  color: var(--white);
}

.diamond_category_wrapper h2 {
  color: var(--textDark);
  text-align: center;
  margin-top: 25px;
  font-weight: 400;
  text-transform: uppercase;
}

.diamond_category_wrapper a {
  display: block;
  overflow: hidden;
}

.diamond_category_wrapper a:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}

.diamond_category_wrapper a img {
  transition: 0.5s;
}

.diamond_category_wrapper {
  margin-bottom: 40px;
}

.natural_inner_wrapper {
  padding: 50px;
  text-align: center;
  background: linear-gradient(90deg, #404e5c -12.05%, #222a3e 107.87%);
}

.natural_inner_wrapper p {
  max-width: 1280px;
  margin: 0 auto !important;
}

.natural_inner_wrapper p,
.natural_inner_wrapper h2 {
  color: var(--white);
}

.made_text ul {
  padding-left: 23px;
}

.made_text ul li {
  font-size: 18px;
  line-height: 28px;
  color: var(--textDark);
  font-weight: 700;
  list-style: auto;
}

.diamond_made_section {
  background: linear-gradient(
    180deg,
    rgba(249, 251, 255, 0.5) 4.44%,
    #f9fbff 110.38%
  );
}

.made_text {
  padding-left: 40px;
}

.lab_natural_right {
  background: linear-gradient(
    180deg,
    rgba(249, 251, 255, 0.5) 4.44%,
    #f9fbff 110.38%
  );
  padding: 60px;
  position: relative;
}

.lab_natural_right_wrap {
  max-width: 470px;
  margin: 0 auto;
  text-align: center;
}

.lab_natural_right_wrap h2 {
  font-weight: 400;
  text-transform: uppercase;
  color: var(--textDark);
  margin-bottom: 30px;
}

.vs_text span {
  display: inline-block;
  width: 100px;
  height: 100px;
  border: 5px solid #ebf3ff;
  background-color: #aed7ff;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  line-height: 45px;
  font-family: "Tenor Sans", sans-serif;
}

.vs_text {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translate(-50%, 0);
}

.natural_lab_wrap {
  margin-bottom: 20px;
}

.white_box {
  background-color: var(--white);
  padding: 20px;
}

.diamond-search-section .chack_diamond img {
  /* width: 40px;
  height: 40px; */
}

.diamond_search_wrap {
  display: flex;
  gap: 20px;
}

.chack_diamond_wrapper.min_width {
  width: calc(100% - 210px);
}

.chack_diamond_wrapper.max_width {
  width: 170px;
  height: fit-content;
}

.shape_wrapper h2 {
  color: var(--textDark);
  font-weight: 400;
  text-transform: uppercase;
}

.collapse_wrapper .chack_diamond_wrapper ul {
  flex-wrap: wrap;
  justify-content: left;
  gap: 20px 0;
  margin-top: 20px;
}

.collapse_wrapper .card {
  border: 0;
}

.collapse_wrapper .chack_diamond_wrapper ul li {
  width: 96px;
}

.diamond_collapse {
  width: 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diamond_collapse img {
  width: 20px;
}

.cut_wrapper ul li .form-group.form-group_wrap .form-select {
  padding: 8px 20px;
  border-radius: 10px;
}

.cut_wrapper ul {
  display: flex;
  gap: 16px;
}

.cut_wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.shape_wrapper .white_box {
  min-height: 120px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

/* swith btn css */

.btn-container {
  display: flex;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner {
  margin: 0px;
  width: 95px;
  height: 46px;
  /* background: #e0e0e0; */
  border: 1px solid var(--textDark);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
  /*box-shadow: 0px 0px 8px 0px rgba(17, 17, 17, 0.34) inset;*/
  display: block;
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:before {
  content: "ON";
  position: absolute;
  font-size: 20px;
  line-height: 30px;
  color: var(--textDark);
  font-weight: 500;
  top: 50%;
  right: 14px;
  transform: translate(0, -50%);
}

.btn-color-mode-switch > label.btn-color-mode-switch-inner:after {
  content: "OFF";
  width: 36px;
  height: 36px;
  background: var(--primary);
  font-size: 15px;
  line-height: 28px;
  color: var(--white);
  border-radius: 26px;
  position: absolute;
  left: 4px;
  top: 4px;
  text-align: center;
  transition: all 0.3s ease;
  padding: 5px 0px;
}

.btn-color-mode-switch > .alert {
  display: none;
  background: #ff9800;
  border: none;
  color: #fff;
}

.btn-color-mode-switch input[type="checkbox"] {
  cursor: pointer;
  width: 50px;
  height: 25px;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 1;
  margin: 0px;
}

.btn-color-mode-switch
  input[type="checkbox"]:checked
  + label.btn-color-mode-switch-inner:after {
  content: "ON";
  left: inherit;
  right: 4px;
  background: var(--primary);
}

.btn-color-mode-switch
  input[type="checkbox"]:checked
  + label.btn-color-mode-switch-inner:before {
  content: "OFF";
  right: auto;
  left: 9px;
}

.btn-color-mode-switch input[type="checkbox"]:checked ~ .alert {
  display: block;
}

/* swith btn css end */
.light_txt h3 {
  color: #bababa;
  font-weight: 400;
}

.cut_wrapper ul.toggle_ul {
  gap: 10px;
  width: 130px;
}

.cut_wrapper .select_ul {
  width: calc(100% - 145px);
}

.cut_wrapper ul li {
  flex: 1;
}

.carat_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  gap: 40px;
}

.max_input {
  width: 100%;
  max-width: 290px;
  position: relative;
}

.max_input h3 {
  color: var(--textDark);
  font-weight: 400;
  margin: 0;
  top: 6px;
  position: absolute;
}

.max_input input {
  border: 0;
  width: 100%;
  border-bottom: 1px solid var(--textDark);
  padding: 10px 50px 6px 50px;
}

.max_input .min_txt {
  left: 0;
}

.max_input .ct_txt {
  right: 15px;
}

.carat_wrapper span {
  font-size: 20px;
  line-height: 30px;
  color: var(--textDark);
  font-weight: 400;
}

.lab_wrapper ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.lab_wrapper ul li .chack_diamond label {
  font-size: 20px;
  line-height: 30px;
  color: var(--textDark);
  font-weight: 400;
  width: 45px;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--textDark);
  padding: 10px 0;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .pie-cut {
    margin-left: 12px !important;
  }
}
@media (min-width: 1400px) {
  .pie-cut {
    margin-left: 0 !important;
  }
}
@media (min-width: 1772px) {
  .pie-cut {
    width: 133px !important;
    margin-left: 0 !important;
  }
}

.lab_wrapper .chack_diamond input:checked + label {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.lab_wrapper.color_wrapper ul li .chack_diamond label {
  width: 100px;
}

.lab_wrapper.color_wrapper ul {
  gap: 24px;
}

.carat_wrapper.depth_wrapper .max_input input {
  padding: 10px 50px 6px 10px;
}

.lab_wrapper.clarity_wrapper ul li .chack_diamond label {
  width: 150px;
  max-width: 150px;
}

.clarity_wapper .max_input input {
  padding: 10px 50px 6px 76px;
}

.back-result a h2,
.result_txt h3 {
  font-weight: 400;
  color: var(--textDark);
}

.back-result a h2 {
  text-transform: uppercase;
}

.back-result a {
  display: flex;
  align-items: center;
  gap: 20px;
}

.back_search_wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.resut_head .btn_wrapper {
  gap: 20px;
}

.ac_btn_wrapper {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: transparent;
  border: 0;
}

.nav-tabs,
.nav-tabs .nav-link {
  border: 0;
}

.nav-link {
  padding: 0 13px;
}

.resut_head {
  padding-bottom: 25px;
  border-bottom: 1px solid #d9d9d9;
}

.result_details {
  padding-top: 33px;
}

.result_details h3 {
  color: var(--textDark);
  font-weight: 400;
  text-align: center;
  margin-bottom: 10px;
}

.list_view_wrapper table {
  width: 100%;
}

.list_view_wrapper {
  background-color: var(--white);
  width: 100%;
  overflow: auto;
}

.list_view_wrapper table thead tr th {
  padding: 22px 15px 14px;
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  border-bottom: 1px solid #ebf3ff;
  white-space: nowrap;
}

.list_view_wrapper table tbody tr td {
  padding: 13px;
  /* text-align: center; */
  font-size: 17px;
  line-height: 30px;
  white-space: nowrap;
  font-weight: 400;
}

.list_view_wrapper table tbody tr:hover {
  background-color: #e7e7e7;
}

.squar_chack_box input {
  display: none;
}

.squar_chack_box label {
  width: 31px;
  height: 31px;
  border: 2px solid var(--textDark);
  border-radius: 5px;
  position: relative;
}

.squar_chack_box label::before {
  content: "\f00c";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 20px;
  height: 22px;
  font-family: "Font Awesome 6 free";
  font-weight: 900;
  color: var(--primary);
  display: none;
  font-size: 19px;
}

.squar_chack_box input:checked + label::before {
  display: block;
}

.product-info_price,
.view_box_wrap .price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-info_price {
  margin-bottom: 14px;
}

.warnnig_icon i {
  color: var(--primary);
  font-size: 28px;
}

.product-info_price h6 {
  font-size: 18px;
  line-height: 26px;
}

.view_box_wrap .price p {
  font-size: 23px;
  line-height: 33px;
}

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

.view_diamond_img a:hover img {
  transform: scale(1.1);
  transition: all 0.5s;
}

.view_diamond_img a img {
  transition: all 0.5s;
}

.squar_chack_box {
  position: absolute;
  top: 24px;
  right: 24px;
}

.about-us-wrap p {
  margin-bottom: 30px;
}

.about-us-wrap p:last-child {
  margin-bottom: 0;
}

.left-txt {
  padding-left: 60px;
}

.left-txt h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 25px;
  color: var(--textDark);
}

.left-right-wrapper {
  margin-bottom: 80px;
}

.left-right-wrapper:last-child {
  margin-bottom: 0;
}

.left-txt.right-txt {
  padding-left: 0;
  padding-right: 60px;
}

.promise_txt ul {
  list-style: disc;
  padding-left: 30px;
}

.promise_txt ul li p {
  margin-bottom: 10px;
}

.certify_wrapper ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.certify_wrapper ul li {
  /* flex: 1; */
  text-align: center;
}

.product-details-right {
  background: linear-gradient(
    180deg,
    rgba(249, 251, 255, 0.5) 4.44%,
    #f9fbff 110.38%
  );
  padding: 30px 50px;
}

.product_name h2 {
  color: var(--textDark);
  font-weight: 400;
  text-transform: uppercase;
}

.product_name h4 {
  font-weight: 300;
  color: var(--textDark);
  margin: 12px 0;
}

del {
  color: var(--textLight);
}

.product_name .price p {
  display: flex;
  gap: 25px;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 22px;
}

.ratting_wrapper ul {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ratting_wrapper ul li i {
  color: var(--primary);
  font-size: 20px;
}

.ratting_wrapper ul li h3 {
  color: var(--secondary);
  font-size: 25px;
  line-height: 34px;
  font-weight: 500;
  margin: 0;
}

.text-green {
  color: var(--textgreen);
  font-weight: 400;
}

.discount_txt {
  margin-top: 20px;
}

.share_wrap {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
}

.share_wrap i {
  font-size: 22px;
  color: var(--white);
}

.like_share_wrapper ul {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: flex-end;
}

.hike_txt {
  text-align: end;
  margin-top: 44px;
}

.hike_txt a {
  font-size: 20px;
  line-height: 30px;
  text-decoration: underline;
}

.product-details-inner {
  margin-bottom: 55px;
}

.product-size-head h2 {
  color: var(--textDark);
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
}

.product-size-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.product-size-head img {
  width: 37px;
  /* height: 37px; */
}

.product-size_wrapper {
  margin-bottom: 80px;
}

.product-size_wrapper:last-child {
  margin-bottom: 0;
}

.product-size_wrapper .form-group.form-group_wrap .form-select {
  padding: 15px;
}

.flex_lable {
  display: flex;
  justify-content: space-between;
}

.product-size_wrapper .form-group.form-group_wrap label {
  font-size: 20px;
  line-height: 30px;
}

.line_select {
  margin-bottom: 10px;
}

.line_select:last-child {
  margin-bottom: 0;
}

.gift_inner_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gift_inner_wrap .squar_chack_box {
  position: relative;
  top: 0;
  right: 0;
}

.get_gift_wrapper {
  margin-top: 40px;
}

.timing_txt {
  display: flex;
  /* align-items: center; */
  /* justify-content: space-between; */
  /* gap: 90px; */
  margin-bottom: 40px;
}

.timing_txt h3 {
  color: var(--textDark);
  font-weight: 400;
}

/* .custom_jewellery_txt a{
    font-size: 20px;
    line-height: 20px;
} */

.diamension_wrap {
  padding: 30px;
  background: linear-gradient(
    180deg,
    rgba(249, 251, 255, 0.5) 4.44%,
    #f9fbff 110.38%
  );
}

.diamension_wrap h2 {
  color: var(--textDark);
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.ring_sizing_wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ring_sizing_wrap:last-child {
  margin-bottom: 0;
}

.ring_sizing_wrap h3 {
  color: var(--textDark);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}

.ring_width_height {
  margin-top: 60px;
  padding-bottom: 54px;
  margin-bottom: 34px;
  border-bottom: 1px dashed #bababa;
}

.ring_height h3 {
  color: var(--textDark);
  font-weight: 400;
  margin-top: 40px;
}

.only-txt h3 {
  color: var(--textDark);
  font-weight: 400;
  text-align: center;
  max-width: 470px;
  margin: 0 auto;
}

.price_accodion {
  background: linear-gradient(
    180deg,
    rgba(249, 251, 255, 0.5) 4.44%,
    #f9fbff 110.38%
  );
  height: 100%;
}

.price_accodion .accordion-button {
  background-color: var(--bgLight);
}

.price_accodion .accordion-item {
  border: 0;
}

.price_accodion .ring_sizing_wrap {
  border-bottom: 1px dashed #bababa;
  padding: 0 0 10px;
}

.price_accodion .ring_sizing_wrap:last-child {
  border-bottom: 0;
  padding: 0;
}

.price_accodion .accordion-body {
  padding: 20px 20px 0 40px;
}

.price_accodion .accordion-button {
  padding: 10px 20px;
}

.flex_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex_head h2 {
  /* font-size: 35px;
    line-height: 45px; */
  color: var(--textDark);
  font-weight: 500;
}

.flex_head a {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
}

.purchase_section {
  background: linear-gradient(180deg, #222a3e -13%, #0c1220 423.25%);
}

.purchase-include-heading {
  text-align: center;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.purchase_wrapper {
  max-width: 1600px;
  margin: 0 auto;
}

.purchase_txt h3 {
  color: var(--white);
  font-weight: 200;
  font-size: 16px;
  margin: 0;
}

.purchase_inner_wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

.purchase-image {
  width: 80px;
}

.purchase_wrapper ul {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 0;
}

.purchase_wrapper ul li {
  width: 33.3333%;
}

.rating_section .review_title {
  border-bottom: 1px dashed #bababa;
}

.average_rating_wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.average_rating_wrapper h2 {
  color: var(--textDark);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.average_rating_wrapper h3 {
  color: var(--textDark);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 50px;
  line-height: 60px;
  font-family: "Tenor Sans";
}

.recomnded_product {
  padding: 12px;
  background-color: var(--white);
  border-radius: 42px;
  max-width: 545px;
  margin: 0 auto;
}

.ratting_star ul li h3,
.review_txt h2,
.rating_total h2,
.rating_star h2 {
  color: var(--textDark);
  font-weight: 400;
  margin: 0;
}

.rating_total {
  width: 80px;
  text-align: center;
}

.rating_star {
  display: flex;
  gap: 15px;
  align-items: center;
}

.rating_star img {
  width: 20px;
  height: 20px;
}

.rating_prosses {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.rating_prosses:last-child {
  margin-bottom: 0;
}

.rating_prosses_bar {
  flex: 1;
}

.progress-bar {
  background-color: var(--primary);
  border-radius: 10px;
}

.progress {
  height: 6px;
  border-radius: 10px;
}

.ratting_star ul li img {
  width: 23px;
}

.ratting_star ul {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review_txt h2 {
  text-transform: uppercase;
}

.review_name_date {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0;
}

.review_name h3 {
  color: var(--textDark);
  font-weight: 400;
  margin-bottom: 0;
}

.review_name h4 {
  color: var(--textDark);
  font-weight: 300;
  margin-bottom: 0;
}

.review_type ul li {
  background-color: var(--white);
  padding: 7px 30px;
  border-radius: 46px;
}

.review_type ul li h3 {
  color: var(--textDark);
  font-weight: 400;
  margin: 0;
}

.review_type ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.review_type {
  margin-top: 30px;
}

.review_main_box {
  border-bottom: 1px dashed #bababa;
  padding-bottom: 40px;
  margin-bottom: 80px;
}

.opinion_product {
  border-top: 1px dashed #bababa;
  padding: 60px 30px 0;
  margin-top: 100px;
}

.opinion_product h2 {
  color: var(--textDark);
  font-weight: 400;
  text-transform: uppercase;
  max-width: 450px;
  margin: 0 auto;
}

.cart_inner {
  background: linear-gradient(
    180deg,
    rgba(249, 251, 255, 0.5) 4.44%,
    #f9fbff 110.38%
  );
  padding: 15px 20px;
  margin-bottom: 20px;
}

.car_product_head h2 {
  color: var(--textDark);
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

.car_product_head a {
  text-decoration: underline;
}

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

.cart_product_color ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.cart_product_color ul li h3 {
  color: var(--textDark);
  font-weight: 400;
}

.cart_product_color {
  margin: 20px 0;
}

.cart_product_details .price p {
  font-size: 28px;
  line-height: 26px;
}

.cart_product_details .price p del {
  margin-left: 20px;
}

.chart_product_wrap {
  display: flex;
  /* align-items: center; */
  gap: 20px;
}

.cart_product_img {
  width: 250px;
  height: 250px;
}

.cart_product_details {
  width: calc(100% - 250px);
}

.cart_product_details .price {
  display: flex;
  align-items: center;
  gap: 70px;
}

.number input {
  border: 0;
  width: 100%;
  text-align: center;
  font-size: 28px;
  line-height: 36px;
  background-color: transparent;
}

.number {
  border: 1px solid #0000004d;
  width: 125px;
  display: flex;
  align-items: center;
  padding: 6px 15px;
}

.plus {
  font-size: 28px;
  color: var(--primary);
}

.minus {
  font-size: 38px;
  color: var(--primary);
}

.gradiant_bg {
  background: linear-gradient(
    180deg,
    rgba(249, 251, 255, 0.5) 4.44%,
    #f9fbff 110.38%
  );
  padding: 30px 40px;
}

.gradiant_bg h2 {
  color: var(--textDark);
  font-weight: 400;
  text-transform: uppercase;
}

.coupencode_wrapper .form-group.form-group_wrap .form-control {
  padding: 8px 16px;
  background-color: var(--white);
  margin-bottom: 20px;
}

.coupencode_wrapper p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
  margin: 0;
}

.coupencode_wrapper p i {
  color: var(--textgreen);
}

.insurance_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.insurance_wrap .squar_chack_box {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
}

.summary_table ul li.green h4 {
  color: var(--textgreen);
}

.summary_table ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.summary_table ul li h4 {
  color: var(--textDark);
  font-weight: 400;
}

.total_summary {
  border-top: 1px dashed #bababa;
  padding-top: 20px;
}

.assistance_wrap p a {
  text-decoration: underline;
}

.cart_wrapper h3,
.assistance_wrap h3 {
  margin-bottom: 20px;
  color: var(--textDark);
  font-weight: 400;
}

.cart-head-img {
  background-color: var(--textDark);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.cart_head_wrapper ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 140px;
  position: relative;
}

.cart_head_wrapper ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -250px;
  width: 100%;
  height: 10px;
  background-image: url(/images/dashed-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  filter: grayscale(1);
  transform: translate(0, -50%);
}

.cart_head_wrapper ul li:last-child:after {
  display: none;
}

.cart_head_wrapper ul li.filled .cart-head-img {
  background-color: var(--primary);
}

.cart_head_wrapper ul li.filled h2 {
  color: var(--primary);
}

.cart_head_wrapper ul li h2 {
  color: var(--textDark);
  font-weight: 400;
  margin: 0;
}

.cart_head_wrapper ul {
  display: flex;
  justify-content: center;
}

.lab_button_wrap {
  background-color: var(--primary);
  border-radius: 10px;
  padding: 30px;
  transition: 0.5s;
}

.lab_button_wrap:hover {
  background-color: var(--textDark);
  transition: 0.5s;
}

.lab_button_wrap.natural_button_wrap {
  background-color: var(--textDark);
  transition: 0.5s;
}

.lab_button_wrap.natural_button_wrap:hover {
  background-color: var(--primary);
  transition: 0.5s;
}

.lab_button_wrap h2 {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
}

.lab_button_wrap h2 i {
  margin-left: 10px;
  transform: rotate(315deg);
}

.thumb_slider_wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px;
}

.thumb_slider_wrapper .main_swiper {
  width: 560px;
  margin: 0;
}

/* .thumb_slider_wrapper .thumb_swiper_slider .swiper-wrapper{
    flex-direction: column;
} */
.thumb_swiper_slider {
  width: 130px;
  margin: 0;
}

/* .thumb_slider_wrapper .thumb_swiper_slider .swiper-wrapper .swiper-slide{
    width: 100% !important;
} */
.thumb_swiper_slider .swiper-slide {
  height: 430px !important;
}
.swiper-slide {
  background-color: transparent !important;
}

.thumb_swiper_slider .swiper-slide img {
  width: 100%;
  height: 100%;
}

.bg_gradiant {
  background: var(--secondaryGradientLight);
}

.diamond_priview_right {
  padding: 40px;
}

.diamond_priview_right .product-size-head {
  border-bottom: 1px solid #bababa;
  padding-bottom: 10px;
}

.stock_wrapper ul li h2 {
  color: var(--textDark);
  font-weight: 400;
}

.stock_wrapper ul {
  display: flex;
  align-items: center;
  gap: 20px 0;
  flex-wrap: wrap;
}

.stock_wrapper ul li {
  width: 25%;
}

.diamond_priview_right .btn_wrapper {
  gap: 30px;
}

.modal-header,
.modal-footer {
  border: 0;
  padding: 00;
}

.modal-dialog {
  max-width: 970px;
  border-radius: 30px;
}

.modal-body {
  padding: 0;
}

.modal-content {
  border: 0;
  padding: 40px 50px;
  border-radius: 30px;
}

.modal.show .modal-dialog {
  padding: 0 10px;
}

.modal_input .form-group.form-group_wrap textarea,
.modal_input .form-group.form-group_wrap .form-select,
.modal_input .form-group.form-group_wrap .form-control {
  padding: 14px 20px;
  background-color: var(--white);
  margin-bottom: 30px;
  border-color: #bababa;
  border-radius: 10px;
}
.modal_head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.modal_head_logo {
  max-width: 350px;
}
.modal_head_left h2 {
  color: var(--primary);
  font-weight: 400;
}
.modal_head_left h3 {
  color: var(--textDark);
  font-weight: 400;
}
.gold_left_right .left-right-wrapper {
  padding: 50px;
  /* background-color: #fff; */
  background: linear-gradient(180deg, #f9fbff 50%, #f9fbff 100%);
}

.gold_left_right .left-txt h2 {
  margin-bottom: 0;
  text-transform: uppercase;
}

.gold_left_right .left-txt h4 {
  color: var(--primary);
  font-weight: 400;
  margin-top: 0;
}

.line_title h2 {
  position: relative;
}

.line_title h2::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  width: 190px;
  height: 1px;
  background-color: var(--textDark);
  transform: translate(-50%, 0);
}

.review_title .star_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.review_title .star_wrap img {
  margin: 0 9px;
}

.review_box .review_img {
  aspect-ratio: 9/8;
  margin: 0 0 20px;
}

.review_box .review_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review_text .user_info {
  display: flex;
}

.review_text .user_info .icon {
  width: 20px;
}

.review_text .user_info .text {
  width: calc(100% - 20px);
  padding-left: 15px;
}

.review_text .user_info .text p {
  margin: 0;
  line-height: 28px;
}

.review_text .user_info .text p span {
  display: block;
}

.diferent_wrapper {
  text-align: center;
  /* background-color: var(--white); */
  background: linear-gradient(180deg, #f9fbff 50%, #f9fbff 100%);
  padding: 40px;
}

.diferent_wrapper p {
  max-width: 680px;
  margin: 0 auto;
}

.diferent_wrapper h2 {
  text-transform: uppercase;
  max-width: 340px;
  margin: 20px auto;
  color: var(--textDark);
  font-weight: 400;
}

.diferent_wrapper img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.investment_wrapper {
  background: linear-gradient(
    180deg,
    rgba(249, 251, 255, 0.5) 4.44%,
    #f9fbff 110.38%
  );
  padding: 40px 60px 55px 150px;
  display: flex;
  position: relative;
  border-radius: 21px;
  height: 100%;
  margin-left: 80px;
}

.investment_wrapper h2 {
  text-transform: uppercase;
  color: var(--textDark);
  font-weight: 400;
}

.icon_wrapper {
  width: 126px;
  height: 126px;
  border: 1px solid #ebf3ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: -60px;
  transform: translate(0, -50%);
}

.investment_txt ul {
  list-style: disc;
}

.ring_size_wrapper h1 {
  margin-bottom: 80px;
  font-size: 50px;
  line-height: 60px;
  color: var(--textDark);
  font-weight: 400;
  text-align: center;
}

.custom_ring_bg {
  background-image: url(/images/bangles_bg.jpg);
  padding: 150px 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.custom_ring_bg .custom-ring-txt {
  background-color: transparent;
}

.custom_ring_bg .coustom_ring_txt_wrap h2 {
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 30px !important;
}

.diamond_care_wrapper h2 {
  color: var(--textDark);
  font-weight: 400;
  margin-bottom: 16px;
}

.diamond_care_wrapper ul {
  padding-left: 30px;
  list-style: disc;
}

.diamond_care_wrapper ul li {
  margin-bottom: 25px;
}

.diamond_care_wrapper ul li:last-child {
  margin-bottom: 0;
}

.diamond_care_wrapper ul.lass_margin li {
  margin-bottom: 5px;
}

.diamond_care_wrapper ul.lass_margin li p {
  margin-bottom: 0;
}

.diamond_care_wrapper {
  margin-bottom: 40px;
}

.diamond_care_wrapper:last-child {
  margin-bottom: 0;
}

.diffrent_table_wrapper table thead tr th {
  background-color: var(--textDark);
  text-align: center;
  width: 25%;
  color: var(--white);
  text-transform: uppercase;
}

.diffrent_table_wrapper table tbody tr td {
  background: linear-gradient(
    180deg,
    rgba(249, 251, 255, 0.5) 4.44%,
    #f9fbff 110.38%
  );
  text-align: center;
  color: var(--textDark);
  border: 0;
  text-transform: uppercase;
}

.diffrent_table_wrapper table {
  border-collapse: separate;
  border-spacing: 15px;
}

.chack_Out_wrapper {
  margin-bottom: 80px;
}

.chack_Out_wrapper:last-child {
  margin-bottom: 0;
}

.chack_Out_wrapper .form-check label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chack_Out_wrapper .form-check label h2 {
  color: var(--textDark);
  font-weight: 400;
  margin: 0;
  font-size: 18px;
  line-height: 26px;
}

.custom_accodion_head {
  padding: 15px 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px 10px 0 0;
  border: 1px solid #bababa;
}

.cutomize_accodion {
  background: linear-gradient(
    180deg,
    rgba(249, 251, 255, 0.5) 4.44%,
    #f9fbff 110.38%
  );
  border-radius: 10px;
}

.custom_accodion_head h2 {
  color: var(--textDark);
  font-weight: 400;
  margin: 0;
  font-size: 18px;
  line-height: 26px;
}

.custom_accodion_body {
  padding: 40px 60px;
}

.tip_inner_wrap {
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid #bababa;
  display: flex;
  width: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.tip_inner_wrap span {
  margin: 0 10px;
}

.tip_inner_wrap h2 {
  color: var(--textDark);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
}

/*Find Ring Css*/

.custom_ring_bg {
  background-image: url(/images/bangles_bg.jpg);
  padding: 150px 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.custom_ring_bg .custom-ring-txt {
  background-color: transparent;
}

.custom_ring_bg .coustom_ring_txt_wrap h2 {
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 30px !important;
}

.diamond_care_wrapper h2 {
  color: var(--textDark);
  font-weight: 400;
  margin-bottom: 16px;
}

.diamond_care_wrapper ul {
  padding-left: 30px;
  list-style: disc;
}

.diamond_care_wrapper ul li {
  margin-bottom: 25px;
}

.diamond_care_wrapper ul li:last-child {
  margin-bottom: 0;
}

.diamond_care_wrapper ul.lass_margin li {
  margin-bottom: 5px;
}

.diamond_care_wrapper ul.lass_margin li p {
  margin-bottom: 0;
}

.diamond_care_wrapper {
  margin-bottom: 40px;
}

.diamond_care_wrapper:last-child {
  margin-bottom: 0;
}

.diffrent_table_wrapper table thead tr th {
  background-color: var(--textDark);
  text-align: center;
  width: 25%;
  color: var(--white);
  text-transform: uppercase;
}

.diffrent_table_wrapper table tbody tr td {
  background: linear-gradient(
    180deg,
    rgba(249, 251, 255, 0.5) 4.44%,
    #f9fbff 110.38%
  );
  text-align: center;
  color: var(--textDark);
  border: 0;
  text-transform: uppercase;
}

.diffrent_table_wrapper table {
  border-collapse: separate;
  border-spacing: 15px;
}

.chack_Out_wrapper {
  margin-bottom: 80px;
}

.chack_Out_wrapper:last-child {
  margin-bottom: 0;
}

.chack_Out_wrapper .form-check label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chack_Out_wrapper .form-check label h2 {
  color: var(--textDark);
  font-weight: 400;
  margin: 0;
  font-size: 18px;
  line-height: 26px;
}

.custom_accodion_head {
  padding: 15px 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px 10px 0 0;
  border: 1px solid #bababa;
}

.cutomize_accodion {
  background: linear-gradient(
    180deg,
    rgba(249, 251, 255, 0.5) 4.44%,
    #f9fbff 110.38%
  );
  border-radius: 10px;
}

.custom_accodion_head h2 {
  color: var(--textDark);
  font-weight: 400;
  margin: 0;
  font-size: 18px;
  line-height: 26px;
}

.custom_accodion_body {
  padding: 40px 60px;
}

.tip_inner_wrap {
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid #bababa;
  display: flex;
  width: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.tip_inner_wrap span {
  margin: 0 10px;
}

.tip_inner_wrap h2 {
  color: var(--textDark);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
}

.custom_accodion_body .form-check label::before,
.custom_accodion_body .form-check label::after {
  display: none;
}

.custom_accodion_body .form-check label {
  padding: 0;
  border-radius: 10px;
}

.custom_accodion_body .form-check input:checked + label {
  background-color: var(--primary);
}
