@charset "UTF-8";

/* ==========================================================
   VNIL Nuts — Brand Design System
   Source: assets/VNIL_Website_Project_Plan.docx
   ========================================================== */
:root {
  /* Brand color palette */
  --vnil-rose-gold:   #C9956B;   /* Primary — buttons, headings, icons, borders */
  --vnil-deep-black:  #1A1A1A;   /* Hero, navbar, footer bg */
  --vnil-light-gold:  #FAF6F0;   /* True neutral cream (was #E8C9A0 orange-tinted) — subheading, hover, highlights */
  --vnil-copper:      #B07D52;   /* Links, dividers, secondary CTA */
  --vnil-cream:       #F9F4EE;   /* Product cards, content sections */
  --vnil-white:       #FFFFFF;

  /* Surface + contrast accents */
  --vnil-nut-brown:   #5A3825;   /* Deep rich brown — product backgrounds, footer alt surface */
  --vnil-forest:      #2C5F3D;   /* Contrast accent — price tags, new badges, callouts */

  /* Semantic colors — for form validation, alerts, notifications */
  --vnil-success:     #2C7A4B;
  --vnil-error:       #B23A3A;
  --vnil-warning:     #C99100;
  --vnil-info:        #2C5F8C;

  /* Typography families */
  --vnil-font-serif:  "Playfair Display", Georgia, serif;
  --vnil-font-sans:   "DM Sans", system-ui, -apple-system, sans-serif;

  /* Numeric type scale */
  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 17px;
  --text-lg:   20px;
  --text-xl:   24px;
  --text-2xl:  32px;
  --text-3xl:  40px;
  --text-4xl:  48px;

  /* Spacing scale — use for padding, margin, gap */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-5:   24px;
  --space-6:   32px;
  --space-7:   40px;
  --space-8:   48px;
  --space-9:   64px;
  --space-10:  80px;
  --space-11:  96px;
  --space-12:  128px;

  /* Layout */
  --container-max: 1280px;

  /* Border radius */
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:   16px;

  /* Elevation / shadows */
  --shadow-card:  0 2px 8px  rgba(26, 26, 26, 0.06);
  --shadow-hover: 0 6px 18px rgba(26, 26, 26, 0.10);
  --shadow-modal: 0 16px 48px rgba(26, 26, 26, 0.18);
}

/* Dark-mode token plan — disabled until a full dark theme is shipped.
   Uncomment the inner :root block to activate. */
@media (prefers-color-scheme: dark) {
  /*
  :root {
    --vnil-deep-black: #0E0E0E;
    --vnil-cream:      #1F1A14;
    --vnil-light-gold: #2A241E;
    --vnil-white:      #F5EFE6;
  }
  */
}

/* Body uses DM Sans */
body {
  line-height: 1.7;
  font-family: var(--vnil-font-sans);
  font-size: 17px;
  font-weight: 400;
  color: #333;
  text-rendering: optimizelegibility;
}

/* All headings use Playfair Display */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--vnil-font-serif);
  color: var(--vnil-deep-black);
  line-height: 1.2;
}
h1, .h1 { font-size: clamp(40px, 5vw, 48px); font-weight: 700; }
h2, .h2 { font-size: clamp(28px, 3.5vw, 32px); font-weight: 700; }
h3, .h3 { font-size: clamp(20px, 2.5vw, 24px); font-weight: 700; }
h4, .h4 { font-size: 18px; font-weight: 700; }
h5, .h5 { font-size: 16px; font-weight: 700; }

p { font-size: 16px; }
small, .small, .caption { font-size: 13px; font-weight: 400; }

/* Hero / banner title gets the largest serif */
.banner_title h1,
.hero_title,
.cta_title,
.about_title {
  font-family: var(--vnil-font-serif);
  font-weight: 700;
}
  /* Social icon circle style — 44x44 to meet WCAG 2.1 touch-target minimum */
  .header_bottom_main .d-flex .fab {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background-color: #C9956B !important;
    color: #fff !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
  }

  .header_bottom_main .d-flex a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
    .header_bottom_main .navbar-nav .nav-item {
    display: flex !important;
    align-items: center !important;
  }

  .header_bottom_main .navbar-nav .nav-item + .nav-item::before {
    content: "|" !important;
    color: #ccc !important;
    padding-right: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    height: 100% !important;
    line-height: 1 !important;
  }
  /* Hover effect */
  .header_bottom_main .d-flex .fab:hover {
    background-color: #fff !important;
    color: #C9956B !important;
    border: 2px solid #C9956B !important;
  }

.banner_title h1 { font-size: clamp(40px, 6vw, 64px); }

/* Nav links — DM Sans, slightly smaller */
.navbar-nav .nav-link,
.main_menu_list .nav-link {
  font-family: var(--vnil-font-sans) !important;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--vnil-deep-black);
}
.navbar-nav .nav-link:hover,
.main_menu_list .nav-link:hover {
  color: var(--vnil-rose-gold);
}

/* Buttons — DM Sans, bold, Title Case (modern D2C convention) */
.btn,
.custom_btn,
button.btn {
  font-family: var(--vnil-font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: none;
}
.custom_btn {
  background-color: var(--vnil-rose-gold);
  border-color: var(--vnil-rose-gold);
}
.custom_btn:hover {
  background-color: var(--vnil-copper);
  border-color: var(--vnil-copper);
  color: #fff;
}

/* Button system v2 — primary (filled) + secondary (outline).
   Use .btn-primary-vnil for main CTAs, .btn-secondary-vnil for tertiary actions. */
.btn-primary-vnil {
  background-color: var(--vnil-rose-gold);
  border: 2px solid var(--vnil-rose-gold);
  color: var(--vnil-white);
  border-radius: var(--radius-md);
  padding: 12px 28px;
  transition: all 0.25s ease;
}
.btn-primary-vnil:hover,
.btn-primary-vnil:focus {
  background-color: var(--vnil-copper);
  border-color: var(--vnil-copper);
  color: var(--vnil-white);
  box-shadow: var(--shadow-hover);
}
.btn-secondary-vnil {
  background-color: transparent;
  border: 2px solid var(--vnil-copper);
  color: var(--vnil-copper);
  border-radius: var(--radius-md);
  padding: 12px 28px;
  transition: all 0.25s ease;
}
.btn-secondary-vnil:hover,
.btn-secondary-vnil:focus {
  background-color: var(--vnil-copper);
  color: var(--vnil-white);
  box-shadow: var(--shadow-hover);
}

/* Section subtitle eyebrow — small DM Sans uppercase */
.category_sub_title span,
.cta_eyebrow {
  font-family: var(--vnil-font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vnil-rose-gold);
}

/* Anchor default */
a { color: var(--vnil-copper); }
a:hover { color: var(--vnil-rose-gold); }

/* Selection */
::selection { color: var(--vnil-white); background-color: var(--vnil-rose-gold); }
::-moz-selection { color: var(--vnil-white); background-color: var(--vnil-rose-gold); }

/* Premium section padding: 5em desktop / 4em mobile (bumped from 2em / 3em).
   NOTE: class names like section-pad-md / sec_top_space_50 / sec_bottom_space_70 are
   template-historical — their visible padding does NOT match the number in the name.
   Renaming would touch every page, so the values are tuned here instead. */
.section-pad-md,
.section-pad-md,
.section-pad-sm {
  padding-top: 5em !important;
  padding-bottom: 5em !important;
}
.sec_top_space_50 { padding-top: 4em !important; }
.sec_bottom_space_70 { padding-bottom: 4em !important; }
.cta_wrap { padding-top: 4em !important; padding-bottom: 4em !important; }
.testimonial_section .testimonial_sec_content { padding-bottom: 4em !important; }
@media (max-width: 767px) {
  .section-pad-md,
  .section-pad-md,
  .section-pad-sm,
  .cta_wrap {
    padding-top: 4em !important;
    padding-bottom: 4em !important;
  }
}

/* Accessibility — honor prefers-reduced-motion (was missing entirely).
   Disables AOS reveal animations, Slick autoplay-implied transitions, and any
   transition/animation longer than instant. */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Signature microinteraction — product card subtle tilt + lift on hover.
   One distinctive motion across the site beats AOS-fade-up-on-everything. */
.product_card,
.product_box,
.product_item,
.product_inner {
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.35s ease;
}
.product_card:hover,
.product_box:hover,
.product_item:hover,
.product_inner:hover {
  transform: rotate(-2deg) translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* ========================================================== */

.body_wrap {
  overflow: hidden;
  position: relative;
}

iframe {
  border: none;
}

a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none !important;
  outline: 0px !important;
}

img:not([draggable]),
embed,
object,
video {
  height: auto;
  max-width: 100%;
}

img {
  border: none;
  height: auto;
  max-width: 100%;
}

a {
  outline: 0;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
a:active, a:focus, a:hover, a:visited {
  outline: 0;
  text-decoration: none;
}

button {
  padding: 0px;
  border: none;
  outline: none;
  background: none;
  display: inline-block;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
button:focus {
  outline: none;
}

*:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--vnil-deep-black);
}
h1, h2 { font-family: var(--vnil-font-serif); font-weight: 700; }
h3, h4, h5, h6 { font-family: var(--vnil-font-sans); font-weight: 700; }

p {
  font-weight: 400;
}

.collapse_dropdown {
  top: 100%;
  right: -80px;
  margin-top: 5px;
  min-width: 230px;
  position: absolute;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 10px 33.25px 1.75px rgba(0, 27, 103, 0.15);
          box-shadow: 0px 10px 33.25px 1.75px rgba(0, 27, 103, 0.15);
  z-index: 999999;
}
.collapse_dropdown .profile_info {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #f4f8fb;
}
.collapse_dropdown .profile_info .user_thumbnail {
  width: 60px;
  overflow: hidden;
  margin-right: 10px;
  border-radius: 100%;
}
.collapse_dropdown .profile_info .user_name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #2e2e2e;
}
.collapse_dropdown .profile_info .user_title {
  display: block;
  line-height: 1;
  font-size: 14px;
}
.collapse_dropdown .settings_options {
  padding: 10px 0px;
}
.collapse_dropdown .settings_options > li {
  line-height: 20px;
  display: block;
  list-style: none;
}
.collapse_dropdown .settings_options > li a {
  display: block;
  font-size: 16px;
  padding: 10px 20px;
  color: #6b6b6b;
}

.table > :not(:first-child) {
  border-top: none;
}

/* product action btns - start
================================================== */
.product_action_btns li:not(:last-child) {
  margin-right: 8px;
}
.product_action_btns a {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  color: #292929;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.07);
}
.product_action_btns a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: #C9956B;
}

/* product action btns - end
================================================== */
.form_item {
  position: relative;
}
.form_item input,
.form_item textarea {
  width: 100%;
  border: none;
  outline: none;
  display: block;
  border: 1px solid #e8e8e8;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.form_item input:focus,
.form_item textarea:focus {
  border-color: #C9956B;
}
.form_item input {
  height: 50px;
  padding: 0px 15px;
  background-color: #f3f4f6;
}
.form_item textarea {
  min-height: 130px;
  padding: 20px 30px;
}

.product_layout_content .product_image .pic-1 {
  -webkit-transition: 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_layout_content .product_image .pic-2 {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  max-width: 200px;
  overflow: hidden;
}
.product_layout_content:hover .product_image .pic-1 {
  visibility: hidden;
  opacity: 0;
}
.product_layout_content:hover .product_image .pic-2 {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 1.5s ease;
  transition: 1.5s ease;
  max-width: 200px;
}

/* all pages animation */
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.img_moving_anim1 {
  position: relative;
  -webkit-animation: glide1 2s ease-in-out alternate infinite;
          animation: glide1 2s ease-in-out alternate infinite;
}

@-webkit-keyframes glide1 {
  from {
    right: 0px;
    top: 0px;
  }
  to {
    right: 0px;
    top: 20px;
  }
}

@keyframes glide1 {
  from {
    right: 0px;
    top: 0px;
  }
  to {
    right: 0px;
    top: 20px;
  }
}
.img_moving_anim2 {
  position: relative;
  -webkit-animation: glide2 2s ease-in-out alternate infinite;
          animation: glide2 2s ease-in-out alternate infinite;
}

@-webkit-keyframes glide2 {
  from {
    left: 0px;
    bottom: 0px;
  }
  to {
    left: 0px;
    bottom: 20px;
  }
}

@keyframes glide2 {
  from {
    left: 0px;
    bottom: 0px;
  }
  to {
    left: 0px;
    bottom: 20px;
  }
}
.text-effect span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: rotateX(-90deg);
          transform: rotateX(-90deg);
  position: relative;
  top: -100px;
  -webkit-animation: text-effect 2s ease-in-out infinite;
          animation: text-effect 2s ease-in-out infinite;
}
.text-effect span:nth-child(1) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.text-effect span:nth-child(2) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.text-effect span:nth-child(3) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.text-effect span:nth-child(4) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.text-effect span:nth-child(5) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.text-effect span:nth-child(6) {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}
.text-effect span:nth-child(7) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.text-effect span:nth-child(8) {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}
.text-effect span:nth-child(9) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.text-effect span:nth-child(10) {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

@-webkit-keyframes "text-effect" {
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 1;
    -webkit-transform: rotateX(-360deg);
            transform: rotateX(-360deg);
    top: 0;
  }
  80% {
    opacity: 1;
    -webkit-transform: rotateX(-360deg);
            transform: rotateX(-360deg);
    top: 0;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    top: 100px;
  }
}

@keyframes "text-effect" {
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 1;
    -webkit-transform: rotateX(-360deg);
            transform: rotateX(-360deg);
    top: 0;
  }
  80% {
    opacity: 1;
    -webkit-transform: rotateX(-360deg);
            transform: rotateX(-360deg);
    top: 0;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    top: 100px;
  }
}
/* back to top button - start
================================================== */
.backtotop {
  right: 15px;
  z-index: 999;
  bottom: 60px;
  display: none;
  position: fixed;
}
.backtotop .scroll {
  z-index: 1;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  color: #C9956B;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 10px 33.25px 1.75px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 10px 33.25px 1.75px rgba(0, 0, 0, 0.15);
}

/* back to top button - end
================================================== */
.load_more_3 {
  margin-top: 3rem;
}

.load_more_1 {
  margin-top: 1rem;
}

.custom_btn {
  color: #fff;
  background: #C9956B;
  letter-spacing: 2px;
  padding: 10px 20px 11px;
  border: none;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.custom_btn:hover {
  color: #000 !important;
  background: #ffffff;
}
.custom_btn:hover:before {
  width: 100%;
  -webkit-transition: 800ms ease all;
  transition: 800ms ease all;
}
.custom_btn:hover:after {
  width: 100%;
  -webkit-transition: 800ms ease all;
  transition: 800ms ease all;
}
.custom_btn:hover .btn {
  color: #000 !important;
}
.custom_btn:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.custom_btn:before {
  content: "";
  background-color: #C9956B;
  height: 3px;
  width: 0;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}
.custom_btn:after {
  content: "";
  background-color: #C9956B;
  height: 3px;
  width: 0;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  top: auto;
  right: auto;
  left: 0;
  bottom: 0;
}
.custom_btn i {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.btn_wrap {
  padding: 35px;
}

.btns_group {
  padding: 0px 30px;
}
.btns_group li:not(:last-child) {
  margin-bottom: 10px;
}
.btns_group a {
  width: 100%;
  height: 55px;
  color: #ffffff;
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 55px;
  text-align: center;
  background-color: #C9956B;
  text-transform: uppercase;
  border: 2px solid transparent;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.btns_group a:hover {
  color: #000000;
  background-color: #ffffff;
  border: 2px solid #C9956B;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn_coupon {
  background-color: #C9956B;
}

.coupon_update_btn {
  font-size: 16px;
  font-weight: 700;
  background-color: #8799a3;
}

.comment_area_title {
  color: #252525;
  font-size: 32px;
}

.form_item input {
  padding: 35px 30px;
  background-color: #f3f4f6;
  border: none;
}
.form_item input::-webkit-input-placeholder {
  color: #8799a3;
  font-size: 16px;
  font-weight: 700;
}
.form_item input::-moz-placeholder {
  color: #8799a3;
  font-size: 16px;
  font-weight: 700;
}
.form_item input:-ms-input-placeholder {
  color: #8799a3;
  font-size: 16px;
  font-weight: 700;
}
.form_item input::-ms-input-placeholder {
  color: #8799a3;
  font-size: 16px;
  font-weight: 700;
}
.form_item input::placeholder {
  color: #8799a3;
  font-size: 16px;
  font-weight: 700;
}
.form_item textarea {
  border-radius: 30px;
  background-color: #f3f4f6;
}
.form_item textarea::-webkit-input-placeholder {
  color: #8799a3;
  font-size: 16px;
  font-weight: 700;
}
.form_item textarea::-moz-placeholder {
  color: #8799a3;
  font-size: 16px;
  font-weight: 700;
}
.form_item textarea:-ms-input-placeholder {
  color: #8799a3;
  font-size: 16px;
  font-weight: 700;
}
.form_item textarea::-ms-input-placeholder {
  color: #8799a3;
  font-size: 16px;
  font-weight: 700;
}
.form_item textarea::placeholder {
  color: #8799a3;
  font-size: 16px;
  font-weight: 700;
}

/* order & unorder list reset - start
================================================== */
.ul_li,
.ul_li_right,
.ul_li_center {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ul_li > li,
.ul_li_right > li,
.ul_li_center > li {
  list-style: none;
  display: inline-block;
}

.ul_li {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.ul_li_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ul_li_right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.ul_li_block {
  margin: 0px;
  padding: 0px;
  display: block;
}
.ul_li_block > li {
  display: block;
  list-style: none;
}

/* order & unorder list reset - end
================================================== */
/* pagination - start */
.pagination_nav {
  margin-top: 25px;
}
.pagination_nav li {
  padding: 3px;
  border: 1px solid #deecf0;
  border-radius: 6px;
}
.pagination_nav li:not(:last-child) {
  margin-right: 13px;
}
.pagination_nav a {
  height: 45px;
  min-width: 45px;
  font-size: 20px;
  font-weight: 500;
  color: #6c6c6c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.pagination_nav li:hover, .pagination_nav li.active {
  background-color: #C9956B;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.pagination_nav li:hover a, .pagination_nav li.active a {
  color: #ffffff;
}

/* pagination - end */
/* rating star - start
================================================== */
.rating_star li {
  color: #aeaeae;
  font-size: 12px;
}
.rating_star li:not(:last-child) {
  margin-right: 2px;
}
.rating_star li.active {
  color: #ffa900;
}

.rating_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rating_wrap .shop_review_text {
  color: #aeaeae;
  font-size: 12px;
  font-weight: 700;
  margin-left: 7px;
}

/* rating star - start */
.rating_star2 {
  margin-bottom: 15px;
}
.rating_star2 > li {
  color: #feb312;
  line-height: 1;
  font-size: 12px;
}
.rating_star2 > li:not(:last-child) {
  margin-right: 2px;
}

/* rating star - end */
/* rating star - end
================================================== */
.header_top_socials i:hover {
  color: #C9956B !important;
}

.footer_top_social a {
  width: 3rem;
  height: 3rem;
  color: #111c16;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 3rem;
  text-align: center;
  border-radius: 100%;
  background-color: #ffffff;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid transparent;
}
.footer_top_social a:hover {
  color: #ffffff;
  background-color: #111c16;
  border: 1px solid #C9956B;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.social_round {
  margin: -2px;
}
.social_round > li {
  padding: 2px;
}
.social_round a {
  width: 47px;
  height: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #1c1f23;
  font-size: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #e8e8e8;
}
.social_round a:hover {
  color: #ffffff;
  background-color: #C9956B;
}
.social_round a.bg_tumblr {
  background-color: #35465d;
}
.social_round a.bg_facebook {
  background-color: #3b5998;
}
.social_round a.bg_twitter {
  background-color: #1da1f2;
}
.social_round a.bg_youtube {
  background-color: #ff0000;
}
.social_round a.bg_google {
  background-color: #ea4335;
}

/* space - start
================================================== */
/* container width - start */
.container-fluid-full {
  max-width: 100%;
}

.container-fluid {
  max-width: 1920px;
}

.container-sm {
  max-width: 1170px;
}

.col {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  padding-left: 15px;
  padding-right: 15px;
}

.no_gap .col {
  padding: 0;
}

/* container width - start */
/* right left space - start */
.space_rl_medium {
  padding-left: 80px;
  padding-right: 80px;
}

.space_rl_large {
  padding-left: 100px;
  padding-right: 100px;
}

/* right left space - end */
/* top bottom space - start */
.sec_space_xxxlarge {
  padding-top: 280px;
  padding-bottom: 280px;
}

.sec_space_xxlarge {
  padding-top: 180px;
  padding-bottom: 180px;
}

.sec_space_xlarge {
  padding-top: 150px;
  padding-bottom: 150px;
}

.sec_space_large {
  padding-top: 130px;
  padding-bottom: 130px;
}

.section-pad-lg {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-pad-md {
  padding-top: 100px;
  padding-bottom: 100px;
}

.inner_sec_sm {
  padding-top: 100px;
  padding-bottom: 200px;
}

.section-pad-lg {
  padding-top: 70px;
  padding-bottom: 70px;
}

.sec_space_xms_60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-pad-sm {
  padding-top: 50px;
  padding-bottom: 50px;
}

.sec_space_xxs_40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* top bottom space - end */
/* section top space start */
.sec_top_space_50 {
  padding-top: 50px;
}

.sec_top_100 {
  padding-top: 100px;
}

/* section top space start */
/* section top space start */
.sec_top_space_70 {
  padding-top: 70px;
}

.sec_top_space_125 {
  padding-top: 125px;
}

/* section top space start */
/* section bottom space start */
.sec_bottom_space_70 {
  padding-bottom: 70px;
}

/* section bottom space start */
/* section inner top start */
.sec_inner_top_80 {
  padding-top: 80px;
}

.sec_inner_bottom_80 {
  padding-bottom: 80px;
}

.sec_inner_bottom_100 {
  padding-bottom: 100px;
}

.sec_inner_bottom_130 {
  padding-bottom: 130px;
}

.sec_inner_top_100 {
  padding-top: 100px;
}

.sec_bottom_space_50 {
  padding-bottom: 100px;
}

/* section inner top end */
/* section inner bottom start */
.sec_inner_bottom_250 {
  padding-bottom: 250px;
}

/* section inner bottom end */
/* section inner space start */
.inner_p_all_70 {
  padding: 30px 70px;
}

.inner_p_all_40 {
  padding: 40px;
}

.inner_p_all_100 {
  padding: 100px;
}

/* section inner space start */
/* padding - margin setting - start 
================================================== */
.sec_ptb_50 {
  padding: 50px 0px;
}

.section-pad-md {
  padding: 100px 0px;
}

.sec_ptb_140 {
  padding: 140px 0px;
}

.prl_100 {
  padding-left: 100px;
  padding-right: 100px;
}

.prl_90 {
  padding-left: 90px;
  padding-right: 90px;
}

.prl_60 {
  padding-left: 60px;
  padding-right: 60px;
}

.mt__30 {
  margin-top: -30px;
}

.mt__50 {
  margin-top: -50px;
}

.mt_50 {
  margin-top: 50px;
}

.mb_15 {
  margin-bottom: 15px;
}

.mb_25 {
  margin-bottom: 25px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mb_100 {
  margin-bottom: 100px;
}

.ml_150 {
  margin-left: 150px;
}

/* padding - margin setting - end
================================================== */
/* space - end
================================================== */
/* section title - start */
.section_title {
  margin-bottom: 45px;
}
.section_title .title_text {
  font-size: 55px;
  margin-bottom: 10px;
}
.section_title p {
  color: #c1c1c1;
  font-size: 16px;
  font-family: var(--vnil-font-sans);
}

/* section title - end */
.about_header {
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
  position: absolute;
  background-color: #ffffff;
  width: 100%;
  height: 191px;
}

.drop_bars {
  font-size: 30px;
  font-family: 700;
}

.banner_section_item {
  background-repeat: no-repeat;
  background-size: cover;
}

.banner_content {
  z-index: 3;
}

.banner_sub_title h6 {
  top: 33%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.125rem;
  position: absolute;
  z-index: 1;
  font-weight: 500;
}

.banner_title {
  width: 810px;
}
.banner_title h1 {
  color: #333333;
  font-size: 4.0625rem;
  font-weight: 700;
}
.banner_title .first {
  color: #333333;
  font-weight: 100;
}
.banner_title .second {
  color: #C9956B;
}
.banner_title font {
  color: #C9956B;
}

.banner_title2 h1 {
  color: #333333;
  font-size: 3.6rem;
  font-weight: 700;
}
.banner_title2 .first {
  color: #333333;
  font-weight: 100;
}
.banner_title2 .second {
  color: #C9956B;
}
.banner_title2 font {
  color: #C9956B;
}

.banner_title3 {
  max-width: 600px;
}

.banner_title4 h1 {
  color: #333333;
  font-size: 3.6rem;
  font-weight: 700;
}
.banner_title4 .first {
  color: #333333;
  font-weight: 100;
}
.banner_title4 .second {
  color: #C9956B;
}
.banner_title4 font {
  color: #C9956B;
}

.banner_search_bar {
  margin-top: 3rem;
  z-index: 2;
}
.banner_search_bar input {
  width: 650px;
  height: auto;
}
.banner_search_bar input::-webkit-input-placeholder {
  font-size: 14px;
  font-style: italic;
}
.banner_search_bar input::-moz-placeholder {
  font-size: 14px;
  font-style: italic;
}
.banner_search_bar input:-ms-input-placeholder {
  font-size: 14px;
  font-style: italic;
}
.banner_search_bar input::-ms-input-placeholder {
  font-size: 14px;
  font-style: italic;
}
.banner_search_bar input::placeholder {
  font-size: 14px;
  font-style: italic;
}
.banner_search_bar .select_option {
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 220px;
  height: 59px;
  border: none;
}
.banner_search_bar .select_option .current {
  position: absolute;
  top: 10px;
  right: 50px;
}
.banner_search_bar .nice-select {
  background-color: #C9956B !important;
}
.banner_search_bar .nice-select span.current {
  color: #ffffff;
  font-size: 15px;
  font-family: var(--vnil-font-sans);
  font-weight: 700;
}
.banner_search_bar .nice-select:after {
  border-bottom: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  margin-right: 8px;
}
.banner_search_bar .nice-select:before {
  content: "";
  width: 33px;
  height: 33px;
  border-radius: 100%;
  background-color: #587f00;
  position: absolute;
  right: 6px;
  top: 13px;
}

.action_btns_group > li {
  position: relative;
}
.action_btns_group > li:not(:last-child) {
  margin-right: 8px;
}
.action_btns_group button {
  width: 50px;
  height: 50px;
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 52px;
  text-align: center;
  position: relative;
  border-radius: 100%;
  background-color: #292929;
}
.action_btns_group button .btn_badge {
  top: -5px;
  right: -8px;
  height: 25px;
  color: #ffffff;
  font-size: 12px;
  min-width: 25px;
  font-weight: 500;
  line-height: 27px;
  position: absolute;
  border-radius: 45px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(2, 3, 3, 0.5);
          box-shadow: 0px 1px 4px 0px rgba(2, 3, 3, 0.5);
}

.banner_right_thumb {
  top: 50px;
  right: 30px;
}

.banner_left_thumb {
  bottom: -50px;
  left: 0px;
  width: 330px;
}

.banner_2 .banner_sub_title2 h6 {
  top: 50%;
  left: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.0625rem;
  z-index: 3;
  font-weight: 500;
}
.banner_2 .banner_desc {
  max-width: 675px;
}
.banner_2 .banner_desc p {
  color: #7c7e7e;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 30px;
}

.banner_2 .banner2_right_thumb {
  top: 0;
  right: 0;
}

.banner_sec_3 {
  padding: 100px 0px;
}

.banner4_section_wrap .banner4_sub_cont h6 {
  top: 14px;
  left: 30px;
}
.banner4_section_wrap .banner4_title h1 {
  color: #1A1A1A;
  font-size: 85px;
  font-weight: 700;
}
.banner4_section_wrap .banner4_title font {
  color: #7fbc00;
}
.banner4_section_wrap .banner4_desc {
  color: #9a9a9a;
  font-size: 18px;
}
.banner4_section_wrap .banner4_arrow1 {
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.banner4_section_wrap .banner4_arrow1 .slide_arrow_left {
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: 100%;
  background-color: #fff8f8;
  margin-left: 5px;
  cursor: pointer;
}
.banner4_section_wrap .banner4_arrow1 i {
  cursor: pointer;
}
.banner4_section_wrap .banner4_arrow2 {
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.banner4_section_wrap .banner4_arrow2 .slide_arrow_right {
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: 100%;
  background-color: #fff8f8;
  margin-right: 5px;
  cursor: pointer;
}
.banner4_section_wrap .banner4_arrow2 i {
  cursor: pointer;
}

.banner_left_img {
  top: 61%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.blog_content_thumb {
  width: 641px;
  height: 450px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog_content_text {
  width: 100%;
  height: 450px;
  padding: 10px 20px;
  overflow: hidden;
  background-color: #fbfbfb;
}
.blog_content_text h6 {
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  background-color: #82c408;
  border-radius: 30px;
}
.blog_content_text h2 {
  color: #313131;
  font-size: 30px;
  font-weight: 700;
  padding: 15px 15px 0px 15px;
}

.blog_author_cnt span,
.blog_author_cnt font {
  color: #787887;
  font-size: 15px;
  font-weight: 700;
}
.blog_author_cnt i {
  color: #82c408;
}

.blog_desc p {
  color: #525252;
  font-size: 16px;
  font-weight: 400;
}

.blog_details {
  background-color: #fefefe;
}
.blog_details .blog_date {
  color: #dce2e5;
  font-size: 20px;
  font-weight: 900;
}
.blog_details .blog_title {
  color: #252525;
  font-size: 45px;
}
.blog_details .author_name {
  color: #98c90c;
  font-size: 16px;
  font-weight: 400;
}
.blog_details .author_name font {
  color: #c4d2d9;
}
.blog_details .author_position,
.blog_details .author_comment {
  color: #8799a3;
  font-size: 16px;
  font-weight: 400;
}
.blog_details .author_position font,
.blog_details .author_comment font {
  color: #c4d2d9;
}
.blog_details .blog_desc {
  color: #636363;
  font-size: 18px;
  font-weight: 400;
}
.blog_details .blog_testimonial span {
  color: #252525;
  font-size: 30px;
  font-weight: 500;
  line-height: 35px;
  z-index: 6;
  position: relative;
}
.blog_details .blog_testimonial .quote {
  top: -80px;
  left: 0px;
  color: #f2f4f6;
  font-size: 200px;
  font-weight: 800;
  z-index: 1;
}
.blog_details .blog_author_name {
  color: #0377e8;
  font-size: 18px;
  font-weight: 700;
}
.blog_details .blog_author_position {
  color: #8799a3;
  font-size: 16;
  font-weight: 400;
}
.blog_details .blog_image,
.blog_details .blog_image2 {
  -webkit-box-shadow: 0 0.4rem 5rem #c4c4c4;
          box-shadow: 0 0.4rem 5rem #c4c4c4;
}
.blog_details .blog_image img,
.blog_details .blog_image2 img {
  width: 100%;
}
.blog_details .text_style_wrap .text_style_title {
  color: #252525;
  font-size: 32px;
}
.blog_details .text_style_wrap .text_style_desc {
  color: #252525;
  font-size: 18px;
  font-weight: 700;
}
.blog_details .text_style_wrap .text_style_item li {
  color: #252525;
  font-size: 18px;
  font-weight: 500;
}
.blog_details .text_style_wrap .text_style_item i {
  color: #0080fd;
  margin-right: 12px;
}
.blog_details .blog_image3 {
  margin-left: 70px;
  -webkit-box-shadow: 0 0.4rem 5rem #c4c4c4;
          box-shadow: 0 0.4rem 5rem #c4c4c4;
}
.blog_details .photo_credit {
  color: #959595;
  font-size: 18px;
  font-style: italic;
  padding: 20px 0px 20px 30px;
}
.blog_details .photo_credit font {
  color: #0377e8;
}
.blog_details .blog_wishlist i {
  color: #f04e4e;
  font-size: 45px;
}
.blog_details .blog_wishlist span {
  color: #acb8be;
  font-size: 20px;
  font-weight: 500;
}
.blog_details hr {
  width: 100%;
  height: 3px;
  background-color: #d3d3d3;
  margin-top: 50px;
}
.blog_details .tags_cont .tags_title,
.blog_details .tags_cont .share_title {
  color: #252525;
  font-size: 18px;
  font-weight: 900;
}
.blog_details .tags_cont .tags_item span {
  color: #91a1aa;
  font-size: 20px;
  font-weight: 500;
}
.blog_details .tags_cont .tags_item span:hover {
  color: #C9956B;
}
.blog_details .share_cont .share_title {
  color: #252525;
  font-size: 18px;
  font-weight: 700;
}
.blog_details .share_cont .share_socials li {
  width: 60px;
  height: 60px;
  font-size: 20px;
  background-color: #f6f6f6;
  border-radius: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid transparent;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog_details .share_cont .share_socials li:hover {
  border: 1px solid #8799a3;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog_details .share_cont .share_socials li a {
  color: #bbc7cd;
}
.blog_details .share_cont .share_socials li:not(:last-child) {
  margin-right: 20px;
}
.blog_details .commments_cont h3 {
  color: #252525;
  font-size: 32px;
}
.blog_details .comments_desc {
  color: #717171;
  font-size: 18px;
  font-weight: 400;
}
.blog_details .comment_form_area .form_item input,
.blog_details .comment_form_area .form_item textarea {
  margin-bottom: 20px;
}

.blog_title a h2 {
  margin-bottom: 0rem;
}

.blog_icon {
  margin-bottom: 10px;
}

.blog_grid_wrap .blog_grid_cont {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  background-color: #fbfbfb;
  -webkit-box-shadow: 5px 5px 30px 10px #f8f8f8;
          box-shadow: 5px 5px 30px 10px #f8f8f8;
}
.blog_grid_wrap .grid_img {
  max-width: 100%;
  height: 360px;
  overflow: hidden;
}
.blog_grid_wrap .grid_img:hover {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog_grid_wrap .grid_img:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.blog_grid_wrap .grid_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50%;
     object-position: 50%;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  max-width: initial;
}
.blog_grid_wrap .blog_grid_text {
  padding: 40px 30px;
}
.blog_grid_wrap .grid_title {
  color: #252525;
  font-size: 28px;
  font-weight: 700;
}
.blog_grid_wrap .grid_desc {
  color: #898989;
  font-size: 18px;
  font-weight: 400;
}
.blog_grid_wrap .team_inner_content .card {
  padding: 2rem 5rem;
  background-color: #fafafa;
  border-radius: 1rem !important;
  -webkit-box-shadow: 0 0.5rem 1rem transparent !important;
  box-shadow: 0 0.5rem 1rem transparent !important;
  cursor: pointer;
  border: none;
}

.blog_sec4 {
  padding-top: 80px;
  padding-bottom: 120px;
}

.blog_right_side_img {
  bottom: 16px;
  right: -89px;
}

.blog_category {
  border: 1px solid #deecf0;
  padding: 30px;
  margin-top: 20px;
  border-radius: 20px;
}

.blog_category_title {
  color: #252932;
  font-size: 24px;
  font-weight: 700;
}

.form-check .col {
  margin-top: 5px;
}
.form-check input label {
  color: #6c6c6c;
  font-size: 17px;
  font-weight: 500;
}

.form-check-input[type=checkbox] {
  padding: 8px;
  border-radius: 0rem !important;
  border-color: #d7e6ea;
}

.form-check-input:checked {
  background-color: #C9956B;
  border-color: none;
}

.recent_post_wrap {
  padding: 30px;
  margin-top: 20px;
  border-radius: 20px;
  border: 1px solid #deecf0;
}
.recent_post_wrap .recent_title {
  color: #252932;
  font-size: 24px;
  font-weight: 700;
}
.recent_post_wrap .recent_post_item {
  margin-top: 20px;
}
.recent_post_wrap .recent_post_thumb {
  width: 150px;
  height: 90px;
  padding: 10px;
  background-color: #f7f7f7;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}
.recent_post_wrap .recent_post_thumb:hover {
  opacity: 0.8;
}
.recent_post_wrap .recent_thumb_txet .thumb_title {
  color: #252525;
  font-size: 16px;
  font-weight: 500;
}
.recent_post_wrap .recent_thumb_txet .author_name {
  color: #9aa9b1;
  font-size: 16px;
  font-weight: 400;
}
.recent_post_wrap .recent_thumb_txet .author_name i {
  color: #39b54a;
  font-size: 16px;
  font-weight: 500;
}

.blog_list_cont .grid_img {
  width: 100%;
  height: 200px;
}

.breadcrumb_wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.breadcrumb_title h2 {
  font-size: 52px;
  font-weight: 700;
}

.breadcrumb_item li {
  font-size: 18px;
  font-weight: 500;
}
.breadcrumb_item li a {
  color: #ffffff;
}
.breadcrumb_item li:not(:last-child) {
  margin-right: 10px;
}
.breadcrumb_item i {
  color: #505050;
  margin-right: 20px;
}
.breadcrumb_item i.active {
   color: #ffffff;
   border: 3px solid #C9956B;
   padding: 7px;
   border-radius: 100%;
}

.cart_table {
  margin-bottom: 60px;
}
.cart_table .table {
  margin: 0px;
  border: none;
  color: #C9956B;
}
.cart_table thead {
  border: none;
  padding-left: 80px;
  background-color: #f5f5f5;
}
.cart_table thead th {
  border: none;
}
.cart_table th {
  font-size: 18px;
  font-weight: 700;
  color: #252525;
}
.cart_table tr th:first-child, .cart_table tr td:first-child {
  padding-left: 80px;
}
.cart_table td, .cart_table th {
  border: none;
  padding: 25px;
  vertical-align: middle;
}
.cart_table tbody tr {
  border-bottom: 2px solid #f9f9fb;
}
.cart_table .item_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.cart_table .item_image {
  width: 170px;
  height: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f9f9fb;
  border-radius: 5px;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}
.cart_table .item_image:hover {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.cart_table .item_image:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.cart_table .item_image img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  max-width: initial;
}
.cart_table .item_title {
  font-size: 22px;
  font-weight: 700;
}
.cart_table .item_type {
  font-size: 19px;
  font-weight: 400;
  margin-top: -7px;
}
.cart_table .price_text,
.cart_table .total_price {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
}
.cart_table .quantity_input {
  width: 228px;
  height: 60px;
  padding: 0px 20px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #eceef2;
}
.cart_table .quantity_input span {
  color: #ced9df;
  font-size: 30px;
  line-height: 1;
  margin: 0px 10px;
  cursor: pointer;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.cart_table .quantity_input span:hover {
  color: #C9956B;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.cart_table .quantity_input input {
  width: 80px;
  border: none;
  padding: 0px;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.cart_table .price_text {
  color: #8799a3;
  font-size: 17px;
}
.cart_table .total_price {
  color: #C9956B;
  font-size: 18px;
  font-weight: 900;
}
.cart_table .remove_btn {
  top: 50%;
  left: -80px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  min-width: 45px;
  height: 45px;
  color: #8799a3;
  line-height: 47px;
  border-radius: 100%;
  background-color: #f5f5f5;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.cart_table .remove_btn:hover {
  color: #ffffff;
  background-color: #C9956B;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart_product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.cart_product .item_title {
  font-size: 20px;
  font-weight: 700;
}

.coupon_wrap input::-webkit-input-placeholder {
  font-weight: 400;
}

.coupon_wrap input::-moz-placeholder {
  font-weight: 400;
}

.coupon_wrap input:-ms-input-placeholder {
  font-weight: 400;
}

.coupon_wrap input::-ms-input-placeholder {
  font-weight: 400;
}

.coupon_wrap input::placeholder {
  font-weight: 400;
}

.cart_pricing_table {
  background-color: #f3f4f6;
  border-radius: 10px;
}
.cart_pricing_table .table_title {
  font-size: 25px;
  padding: 30px 10px;
  background-color: #ededed;
}
.cart_pricing_table ul {
  padding: 35px;
}
.cart_pricing_table li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #252525;
  font-size: 20px;
  font-weight: 900;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cart_pricing_table li:not(:last-child) {
  margin-bottom: 15px;
}
.cart_pricing_table li:last-child {
  font-size: 17px;
  font-weight: 700;
}
.cart_pricing_table li span:last-child {
  color: #8799a3;
  font-size: 14px;
}
.cart_pricing_table li:last-child span:last-child {
  color: #6dc378;
}
.cart_pricing_table .shipping_calculate {
  color: #C9956B;
  text-decoration: underline;
}
.cart_pricing_table .btn_wrap {
  padding: 35px;
}
.cart_pricing_table .btn_wrap .btn {
  width: 100%;
  display: block;
  padding: 15px 20px;
  background-color: #000000;
  border: 3px solid transparent;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.cart_pricing_table .btn_wrap .btn:hover {
  color: #000000 !important;
  background-color: #ffffff;
  border: 3px solid #000000;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.category_sub_title span,
.shop_sec_sub_title span,
.prdc_ctg_sub_title span,
.product_sec_sub_title span,
.quality_sub_title span,
.product_ctg_sub_title span,
.offer_sub_title span,
.gallery_lft_sub_title span,
.trend_sub_title span {
  color: #C9956B;
  font-size: 0.75rem;
  font-weight: 500;
}
.category_sub_title i,
.shop_sec_sub_title i,
.prdc_ctg_sub_title i,
.product_sec_sub_title i,
.quality_sub_title i,
.product_ctg_sub_title i,
.offer_sub_title i,
.gallery_lft_sub_title i,
.trend_sub_title i {
  color: #C9956B;
  font-size: 0.5rem;
  padding: 0rem 0.1rem;
}

.category_title h2, .shop_sec_title h2 {
  font-size: 2.5rem;
}

.item_image_content {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  position: relative;
}
.item_image_content:hover {
  cursor: pointer;
}
.item_image_content:hover:before {
  opacity: 1;
}
.item_image_content:before {
  content: "";
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  position: absolute;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: rgba(0, 0, 0, 0.7);
}
.item_image_content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: initial;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.item_image_content:hover img {
  transform: scale(1.08);
}

/* Category card title sits below the circle, centered, no longer overlapping */
.slider_item .item_title {
  display: block;
  margin-top: 1rem;
  color: #1A1A1A;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}
.slider_item a:hover .item_title {
  color: #C9956B;
}
.slider_item a {
  display: block;
  text-decoration: none;
}
.slider_item {
  padding: 1rem 0.5rem;
}
.item_image_content {
  border: 4px solid #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.item_image_content:hover {
  box-shadow: 0 12px 28px rgba(201, 149, 107, 0.25);
}

.category_top_btn_cont .ss1_left_arrow {
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 2.5rem;
  background-color: #444444;
  text-align: center;
}
.category_top_btn_cont .ss1_right_arrow {
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 2.5rem;
  background-color: #C9956B;
  text-align: center;
}

.category_section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  background-size: color;
}

.produce_category_section {
  padding: 40px 0px 50px 0px;
}

.prdc_ctg_content_wrap {
  background-color: #f7f7f7;
  padding: 36px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.prdc_ctg_title h2 {
  color: #292929;
  font-size: 2.5rem;
}

.prdc_ctg_desc p {
  color: #9c9c9c;
  font-size: 1.03875rem;
  font-weight: 400;
  margin-bottom: 0rem;
}

.product_tabnav_2 .nav-item button {
  width: 19rem !important;
  border: 2px solid #f0f0f0 !important;
  cursor: pointer;
}
.product_tabnav_2 .nav-item button.active {
  border: 2px solid #90c120 !important;
  background-color: #ffffff !important;
}
.product_tabnav_2 .nav-item button.active span {
  color: #616161;
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.7rem;
  border-radius: 100%;
  border: 2px solid #90c120;
}

.prdc_ctg_icon {
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  border-radius: 100%;
  background-color: #f3f3f3;
  text-align: center;
}

.prdc_ctg_icon_title h5 {
  color: #232424;
  font-size: 1.03875rem;
  font-weight: 400;
  margin-bottom: 0rem !important;
}

.prdc_ctg_icon_num span {
  color: #616161;
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.7rem;
  border-radius: 100%;
  border: 2px solid #f0f0f0;
}

.prdc_ctg_product_wrap {
  width: 100%;
  background-color: #f7f7f7;
  padding: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(#f0efef), to(#C9956B));
  background: linear-gradient(to top, #f0efef, #C9956B);
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.prdc_ctg_inner_product {
  padding: 40px 40px 73px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.prdc_ctg_product_content {
  margin-top: 50px;
}

.prdc_ctg_product_img {
  width: 9rem;
  height: 9rem;
  line-height: 9rem;
  border-radius: 100%;
  background-color: #f7f7f7;
  text-align: center;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}
.prdc_ctg_product_img:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.prdc_ctg_product_img img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.prdc_ctg_product_badge span {
  color: #6faa27;
  font-size: 0.625rem;
  background-color: #f2f7f3;
  padding: 0.4rem 0.8rem;
  font-weight: 700;
}

.prdc_ctg_product_title h5 {
  color: #535353;
  font-size: 1.25rem;
  font-weight: 700;
}

.category_left_thumb {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.category_right_thumb {
  top: 10px;
  right: 0;
}

.compare_section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.compare_content_wrap {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 50px 10px #e0e1e3;
          box-shadow: 0px 0px 50px 10px #e0e1e3;
  border-radius: 10px;
}
.compare_content_wrap .table thead th {
  border: none;
  vertical-align: middle;
  background-color: #f7f7f7;
}
.compare_content_wrap .table td, .compare_content_wrap .table th {
  padding: 15px;
  vertical-align: middle;
  border-top: 1px solid #e6e6e6;
}
.compare_content_wrap .table td:not(:last-child), .compare_content_wrap .table th:not(:last-child) {
  border-right: 1px solid #e6e6e6;
}
.compare_content_wrap .reload_btn {
  width: 45px;
  height: 45px;
  color: #a8a8a8;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
}
.compare_content_wrap .reload_btn:hover {
  color: #ffffff;
  background-color: #C9956B;
}
.compare_content_wrap .form_item input {
  height: 55px;
  padding: 0px 20px;
  background-color: #ffffff;
  border-radius: 40px;
  border-bottom: 2px solid #e6e6e6;
}
.compare_content_wrap .form_item input::-webkit-input-placeholder {
  color: #767676;
  font-size: 12px;
  font-weight: 600;
}
.compare_content_wrap .form_item input::-moz-placeholder {
  color: #767676;
  font-size: 12px;
  font-weight: 600;
}
.compare_content_wrap .form_item input:-ms-input-placeholder {
  color: #767676;
  font-size: 12px;
  font-weight: 600;
}
.compare_content_wrap .form_item input::-ms-input-placeholder {
  color: #767676;
  font-size: 12px;
  font-weight: 600;
}
.compare_content_wrap .form_item input::placeholder {
  color: #767676;
  font-size: 12px;
  font-weight: 600;
}
.compare_content_wrap .add_banner {
  overflow: hidden;
  position: relative;
  max-width: 190px;
  margin: auto;
  border-radius: 10px;
}
.compare_content_wrap .add_banner .item_content {
  top: 50%;
  left: 0px;
  right: 0px;
  z-index: 1;
  padding: 15px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.compare_content_wrap .add_banner .video_btn {
  width: 60px;
  height: 60px;
  color: #ffffff;
  border-radius: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #C9956B;
  position: relative;
  -webkit-box-shadow: 0px 0px 0px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 9;
}
.compare_content_wrap .item_title {
  line-height: 1;
  color: #111111;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
}
.compare_content_wrap .equipment_title {
  color: #111111;
  font-size: 14px;
  font-weight: 700;
}
.compare_content_wrap .remove_btn {
  color: #cccccc;
  font-size: 22px;
  margin-bottom: 15px;
}
.compare_content_wrap .remove_btn:hover {
  color: #C9956B;
}
.compare_content_wrap .product_image {
  margin: 1rem auto;
}
.compare_content_wrap span {
  display: block;
  line-height: 1;
  font-size: 15px;
  font-weight: 700;
  color: #292929;
}
.compare_content_wrap .item_category {
  color: #dddddd;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 3px;
}
.compare_content_wrap .review_text {
  color: #bbbbbb;
  font-size: 13px;
  font-weight: 400;
}
.compare_content_wrap .price_text {
  color: #2344e8;
  font-size: 18px;
}
.compare_content_wrap .color_list > li {
  width: 15px;
  height: 15px;
}
.compare_content_wrap .color_list > li:not(:last-child) {
  margin-right: 7px;
}
.compare_content_wrap .check_icon {
  color: #3a54d6;
}
.compare_content_wrap .check_icon2 {
  color: #C9956B;
  margin-right: 8px;
}
.compare_content_wrap p {
  color: #acacac;
  font-size: 13px;
  max-width: 150px;
  margin-bottom: 0px;
  display: inline-block;
}

.contact_us_tetimonial .tetimonial_desc {
  color: #272727;
  font-size: 38px;
  font-weight: 900;
  line-height: 50px;
}

.tetimonial_author {
  color: #242323;
  font-size: 16px;
  font-weight: 500;
}

.contact_top_desc {
  color: #787777;
  font-size: 18px;
  font-weight: 400;
}

.contact_info_thumb_left {
  top: 77px;
  left: -77px;
}

.contact_info_thumb_right {
  bottom: -48px;
  right: -47px;
}

.contact_us_info .form_item input,
.contact_us_info .form_item textarea {
  margin-top: 20px;
}
.contact_us_info .custom_btn {
  margin-top: 30px;
}

#mapBox {
  min-height: 615px;
  margin-bottom: 70px;
}

.address_sec_cont {
  width: 100%;
  height: 250px;
  padding: 70px 50px 60px 40px;
  background-color: #f8f6f4;
}
.address_sec_cont .address_author {
  top: -47px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90px;
  height: 90px;
  font-size: 30px;
  border-radius: 100%;
  line-height: 80px;
}
.address_sec_cont .address_author2 {
  top: -47px;
  left: 38%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90px;
  height: 90px;
  font-size: 30px;
  border-radius: 100%;
  line-height: 80px;
}

.address_author3 {
  top: -47px;
  right: 13%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90px;
  height: 90px;
  font-size: 30px;
  border-radius: 100%;
  line-height: 80px;
}

.address_title {
  color: #2d1b41;
  font-size: 22px;
  font-weight: 700;
}

.address_desc {
  color: #636363;
  font-size: 16px;
  font-weight: 400;
}

.collection_sec_wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  border-radius: 30px;
  max-width: 100%;
  overflow: hidden;
}

.collection_cont_wrap {
  max-width: 630px;
}

.collection_title h2 {
  color: #303030;
  font-size: 46px;
  font-family: 400;
  position: relative;
  z-index: 3;
}
.collection_title h2 font {
  color: #82c408;
  z-index: 3;
}
.collection_title number {
  top: -183px;
  right: -39px;
  color: #e4e0e0;
  font-size: 300px;
  font-weight: 900;
  z-index: 1;
}

.collection_desc {
  max-width: 540px;
  position: relative;
  z-index: 3;
}
.collection_desc p {
  color: #525252;
  font-size: 18px;
  font-weight: 400;
  line-height: 35px;
  padding-top: 15px;
}

.cart_section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.cart_section .container {
  max-width: 1200px;
}

.form_item {
  position: relative;
  margin-bottom: 30px;
}

.billing_form .form_title {
  font-size: 24px;
}
.billing_form .form_wrap {
  padding: 60px;
  border: 2px solid #e6e6e6;
}
.billing_form .form_item, .billing_form .option_select {
  padding-left: 180px;
}
.billing_form .form_item .input_title {
  top: 6px;
  left: 0px;
  font-size: 18px;
  font-weight: 500;
  max-width: 170px;
  position: absolute;
  color: black;
}
.billing_form .form_item .input_title sup {
  top: -2px;
  color: #C9956B;
}
.billing_form .form_item input {
  height: 40px;
  padding: 0px;
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid #e6e6e6;
}
.billing_form .form_item input:focus {
  border-color: #C9956B;
}
.billing_form .form_item textarea {
  padding: 0px;
  border: none;
  min-height: 70px;
  border-radius: 0px;
  border-bottom: 2px solid #e6e6e6;
  background-color: white;
}
.billing_form.checkbox_item {
  padding-left: 180px;
}
.billing_form hr {
  height: 2px;
}

.checkbox_item input {
  float: left;
  width: 22px;
  height: 22px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  border-radius: 3px;
  margin: 3px 10px 0 0;
  background-color: #C9956B;
}
.checkbox_item input:before {
  top: 50%;
  left: 50%;
  opacity: 0;
  color: #ffffff;
  font-size: 12px;
  content: "";
  font-weight: 700;
  position: absolute;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Font Awesome 5 Free";
}
.checkbox_item input:checked:before {
  opacity: 1;
}
.checkbox_item label {
  margin: 0;
  display: table;
  color: #999;
  cursor: pointer;
  font-weight: 500;
}

.billing_payment_mathod li {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e6e6e6;
}
.billing_payment_mathod .checkbox_item .paypal_image {
  margin-top: 15px;
}
.billing_payment_mathod .custom_btn {
  width: 100%;
}

.billing_form .form_title {
  font-size: 24px;
}
.billing_form .form_wrap {
  padding: 60px;
  border: 2px solid #e6e6e6;
}
.billing_form .form_item {
  padding-left: 180px;
}
.billing_form .form_item .input_title {
  top: 6px;
  left: 0px;
  font-size: 18px;
  max-width: 170px;
  position: absolute;
  color: black;
}
.billing_form .form_item .input_title sup {
  top: -2px;
  color: #C9956B;
}
.billing_form .form_item input {
  height: 40px;
  padding: 0px;
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid #e6e6e6;
}
.billing_form .form_item input:focus {
  border-color: #C9956B;
}
.billing_form .form_item textarea {
  padding: 0px;
  border: none;
  min-height: 70px;
  border-radius: 0px;
  border-bottom: 2px solid #e6e6e6;
}
.billing_form hr {
  height: 2px;
}

.billing_form.checkbox_item {
  padding-left: 180px;
}

.checkout_table .item_image.item_image {
  width: 80px;
  margin-right: 20px;
}
.checkout_table span {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.checkout_table .table td {
  border: none;
  padding: 20px;
  border-bottom: 1px solid #e6e6e6;
}

.deal_item_content_wrap {
  border-radius: 8px;
  overflow: hidden;
}
.deal_item_content_wrap:hover {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.deal_item_content_wrap:hover .deal_item_content {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.deal_item_content {
  max-width: 100%;
  min-height: 21rem;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.deal_item_txt {
  bottom: 50px;
  left: 40px;
}

.deal_sub_title h5 {
  color: #525252;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.deal_title {
  max-width: 24rem;
  margin-bottom: 15px;
}
.deal_title h3 {
  color: #272727;
  font-size: 2.1875rem;
  font-weight: 700;
}

.deal_btn {
  display: inline-block;
}
.deal_btn:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.deal_btn button {
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
  border: 3px solid transparent;
  border-radius: 0;
}
.deal_btn i {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

/* ===== FAQ accordion — unified premium restyle ===== */
.faqs_section {
  background-color: #ffffff;
}
.faqs_sec_cont1 .accordion-item,
.faqs_sec_cont2 .accordion-item {
  outline: none;
  border: 1px solid rgba(201, 149, 107, 0.18);
  border-radius: 14px;
  background-color: #fff;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(26, 26, 26, 0.04);
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.faqs_sec_cont1 .accordion-item:hover,
.faqs_sec_cont2 .accordion-item:hover {
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.08);
  border-color: rgba(201, 149, 107, 0.4);
}

.faqs_sec_cont1 .accordion-button,
.faqs_sec_cont2 .accordion-button {
  font-family: var(--vnil-font-serif);
  color: var(--vnil-deep-black);
  font-size: 17px;
  font-weight: 700;
  padding: 22px 60px 22px 28px;
  background-color: #fff !important;
  box-shadow: none !important;
  border: none;
  position: relative;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.faqs_sec_cont1 .accordion-button:hover,
.faqs_sec_cont2 .accordion-button:hover {
  color: var(--vnil-rose-gold);
}
.faqs_sec_cont1 .accordion-button:not(.collapsed),
.faqs_sec_cont2 .accordion-button:not(.collapsed) {
  color: var(--vnil-rose-gold);
  font-size: 17px;
  font-weight: 700;
  background-color: #fff !important;
}
.faqs_sec_cont1 .accordion-button:focus,
.faqs_sec_cont2 .accordion-button:focus {
  border-color: transparent;
  box-shadow: none !important;
}

/* Replace default Bootstrap chevron with custom + / - in a rose-gold pill */
.faqs_sec_cont1 .accordion-button::after,
.faqs_sec_cont2 .accordion-button::after {
  content: "+";
  background-image: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(201, 149, 107, 0.12);
  color: var(--vnil-rose-gold);
  font-family: var(--vnil-font-sans);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.faqs_sec_cont1 .accordion-button:not(.collapsed)::after,
.faqs_sec_cont2 .accordion-button:not(.collapsed)::after {
  content: "−";
  background-color: var(--vnil-rose-gold);
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}

/* Active item gets a thin rose-gold left accent bar */
.faqs_sec_cont1 .accordion-item:has(.accordion-button:not(.collapsed)),
.faqs_sec_cont2 .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-left: 4px solid var(--vnil-rose-gold);
}

.faqs_sec_cont1 .accordion-body,
.faqs_sec_cont2 .accordion-body {
  color: #5d5d5d;
  font-family: var(--vnil-font-sans);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.8;
  padding: 4px 28px 26px;
  background-color: #fff;
}

/* Override Bootstrap's default mt-2 spacing since we use margin-bottom */
.faqs_sec_cont1 .accordion-item.mt-2,
.faqs_sec_cont2 .accordion-item.mt-2 {
  margin-top: 0 !important;
}

.fact_section {
  padding-top: 80px;
  padding-bottom: 150px;
}

.facts_cont_wrap {
  padding: 0px 50px;
}

.fact_content {
  position: relative;
  z-index: 2;
}
.fact_content::after {
  content: "";
  top: -6px;
  left: 56px;
  width: 170px;
  height: 140px;
  position: absolute;
  background-color: #f7fded;
  z-index: -1;
}
.fact_content .fact_number {
  color: #2b3132;
  font-size: 50px;
  font-weight: 700;
}
.fact_content .fact_title {
  color: #737879;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
}

/* funfact section - start
================================================== */
.funfact_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  padding: 44px 44px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.funfact_item .item_icon {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
  height: 72px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 72px;
          flex: 0 0 72px;
  border-radius: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.funfact_item .item_icon img {
  max-height: 36px;
}
.funfact_item h3 {
  line-height: 1;
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
.funfact_item span {
  display: block;
  line-height: 1;
  font-size: 35px;
  font-weight: 600;
}

/* funfact section - end
================================================== */
.border_top {
  border-top: 10px solid;
  -o-border-image: linear-gradient(to right, #01b2ec 25%, #0412de 25%, #460b99 50%, #8100c8 50%, #d20097 75%) 5;
     border-image: -webkit-gradient(linear, left top, right top, color-stop(25%, #01b2ec), color-stop(25%, #0412de), color-stop(50%, #460b99), color-stop(50%, #8100c8), color-stop(75%, #d20097)) 5;
     border-image: linear-gradient(to right, #01b2ec 25%, #0412de 25%, #460b99 50%, #8100c8 50%, #d20097 75%) 5;
}

.footer_section_wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.footer_section_wrap:before {
  content: "";
  top: 155px;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #282828;
  position: absolute;
}
.footer_section_wrap:after {
  content: "";
  bottom: 77px;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #282828;
  position: absolute;
}

.footer_top_subs input {
  width: 580px;
  color: #a6a6a6;
  padding: 20px;
  background-color: #1b1b1b;
  border: 0 !important;
  outline: 0 !important;
  cursor: pointer;
}

.footer_top_subs button {
  top: 50%;
  right: 3px;
  padding: 20px 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer_inner_info_content,
.footer_inner_acct_content {
  padding-left: 30px;
}

.footer_inner_choose_content,
.footer_inner_info_content,
.footer_inner_acct_content {
  position: relative;
}
.footer_inner_choose_content::after,
.footer_inner_info_content::after,
.footer_inner_acct_content::after {
  content: "";
  top: -31px;
  right: 0px;
  width: 1px;
  height: 326px;
  background-color: #282828;
  position: absolute;
}

.footer_inner_choose_title h4 a,
.footer_inner_info_title h4 a,
.footer_inner_acct_title h4 a,
.footer_inner_ctc_title h4 a {
  font-size: 1.25rem;
  font-weight: 700;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.footer_inner_choose_desc p {
  color: #6e6e6e;
  font-size: 1rem;
  font-weight: 400;
  line-height: 30px;
}

.footer_inner_info_item a, .footer_inner_acct_item a {
  color: #696969;
  font-size: 1rem;
  font-weight: 500;
  line-height: 40px;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.footer_inner_info_item a:hover, .footer_inner_acct_item a:hover {
  color: #504f4f;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer_inner_ctc_info p {
  font-size: 0.9375rem;
  font-weight: 500;
}
.footer_inner_ctc_info p font {
  color: #6e6e6e;
}

.footer_inner_payment_title h5 {
  font-size: 0.9375rem;
  font-weight: 400;
}

.footer_bootom_copyright p {
  color: #6e6e6e;
  font-size: 0.9375rem;
  font-weight: 500;
}
.footer_bootom_copyright p font {
  color: #5e9d03;
}

.footer_bootom_privicy .priv, .footer_bootom_terms .priv, .footer_bootom_refunds .priv {
  color: #C9956B;
}
.footer_bootom_privicy p, .footer_bootom_terms p, .footer_bootom_refunds p {
  color: #9f9f9f;
  font-size: 0.875rem;
  font-weight: 500;
}
.footer_bootom_privicy p:after, .footer_bootom_terms p:after, .footer_bootom_refunds p:after {
  width: 2px;
  height: 15px;
  content: "";
  top: 50%;
  right: -27px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #6e6e6e;
  position: absolute;
}

.footer_left_thumb {
  top: 50px;
  left: -150px;
}

.footer_right_thumb {
  top: 50px;
  right: -150px;
}

.gallery_content_wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.gallery_lft_title {
  max-width: 18rem;
  height: auto;
}
.gallery_lft_title h2 {
  color: #292929;
  font-size: 2.8125rem;
  font-weight: 700;
}

.gallery_lft_desc p {
  color: #afb2ae;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 30px;
}

.gallery_mid_content {
  max-width: 28.75rem;
  border-radius: 1rem;
  -webkit-box-shadow: 5px 5px 30px 10px #ebe9e9 !important;
          box-shadow: 5px 5px 30px 10px #ebe9e9 !important;
  margin: 0 auto;
}

.gallery_mid_thumb img {
  width: 100%;
  height: 13.875rem;
}

.gallery_mid_inner_content h2 {
  max-width: 14.375rem;
  color: #252525;
  font-size: 1.375rem;
  font-weight: 700;
}

.gallery_mid_author_content,
.gallery_end_author_content {
  max-width: 16.375rem;
}
.gallery_mid_author_content .far,
.gallery_end_author_content .far {
  color: #46ba56;
}

.gallery_mid_author_title span,
.gallery_mid_author_time span,
.gallery_end_author_title span,
.gallery_end_author_time span {
  color: #9fadb5;
  font-size: 0.8375rem;
  font-weight: 400;
}

.gallery_mid_desc p {
  color: #9fadb5;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 32px;
}

.gallery_end_content {
  max-width: 28.75rem;
  height: 500px;
  border-radius: 1rem;
  -webkit-box-shadow: 5px 5px 30px 10px #ebe9e9 !important;
          box-shadow: 5px 5px 30px 10px #ebe9e9 !important;
}

.gallery_end_thumb {
  width: 10rem;
  height: 6rem;
  border-radius: 15px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}
.gallery_end_thumb img {
  background-size: cover;
  background-origin: border-box;
}
.gallery_end_thumb:hover {
  opacity: 0.7;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery_end_inner_content h4 {
  color: #252525;
  font-size: 1rem;
  font-weight: 500;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.gallery_end_inner_content h4:hover {
  color: #8799a3;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery_left_thumb {
  bottom: 70px;
  left: -50px;
}

.gallery_right_thumb {
  top: 70px;
  right: -50px;
}

.header_section {
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
  position: relative;
  background-color: #ffffff;
  max-width: 100%;
  height: auto;
}

div#main_search_collapse {
  position: fixed;
  width: 100%;
  top: 123px;
  -webkit-box-shadow: 0 5px 20px 0 rgba(143, 143, 143, 0.15);
          box-shadow: 0 5px 20px 0 rgba(143, 143, 143, 0.15);
}

div#main_search_collapse2 {
  position: fixed;
  width: 100%;
  top: 181px;
  -webkit-box-shadow: 0 5px 20px 0 rgba(143, 143, 143, 0.15);
          box-shadow: 0 5px 20px 0 rgba(143, 143, 143, 0.15);
}

.top_inner_searchbar {
  padding: 21.8px 0;
}

.logo img {
  min-width: 125px;
}

.header_bottom_main {
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: -1;
  background-color: #ffffff;
  max-width: 100%;
  height: auto;
}
.header_bottom_main.sticky {
  position: fixed;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
          animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
}
.header_bottom_main.sticky .webmenu_bottom_shape_left {
  display: none;
}

.header_border {
  border-bottom: 6px solid;
  -o-border-image: linear-gradient(to right, #01b2ec 25%, #0412de 25%, #460b99 50%, #8100c8 50%, #d20097 75%) 5;
     border-image: -webkit-gradient(linear, left top, right top, color-stop(25%, #01b2ec), color-stop(25%, #0412de), color-stop(50%, #460b99), color-stop(50%, #8100c8), color-stop(75%, #d20097)) 5;
     border-image: linear-gradient(to right, #01b2ec 25%, #0412de 25%, #460b99 50%, #8100c8 50%, #d20097 75%) 5;
}

.header_bottom_main.sticky div#main_search_collapse {
  top: 81px;
}

.webmenu_bottom_shape_left {
  top: 72px;
  left: -60px;
}

.top_inner_main {
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 99;
  position: relative;
  background-color: #ffffff;
  max-width: 100%;
  height: auto;
}
.top_inner_main.sticky {
  position: fixed;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
          animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
}

.top_inner_main.sticky div#main_search_collapse {
  top: 81px;
}

.top_header_main {
  background-color: #1A1A1A;
}

.navbar3_bottom {
  top: 0px;
  left: 0px;
  right: 0px;
  position: relative;
  background-color: #ffffff;
  max-width: 100%;
  height: auto;
}
.navbar3_bottom.sticky {
  position: fixed;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  -webkit-animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
          animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
}

.header_top_content {
  margin-right: 3rem;
}
.header_top_content .shipping {
  color: #6c747a;
  font-size: 17px;
  font-weight: 500;
}

.mail_text_content, .address_text_content {
  padding-right: 2rem;
}
.mail_text_content p, .address_text_content p {
  color: #ffffff;
}
.mail_text_content .mail_text, .mail_text_content .address_text, .address_text_content .mail_text, .address_text_content .address_text {
  font-size: 0.875rem;
  font-weight: 500;
}

.main_menu_list > li {
  position: relative;
}
.main_menu_list > li > a {
  display: block;
  color: #030303;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 0px;
  position: relative;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.main_menu_list > li:hover > a, .main_menu_list > li.active > a {
  color: #C9956B;
}

.top_header2 {
  background-color: #c9bebe 201, 190, 190;
}
.top_header2::after {
  content: "";
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
  position: absolute;
}
.top_header2 .mail_text_content {
  color: black;
}
.top_header2 .mail_icon {
  color: #91c942;
}

.top_inner_searchbar input {
  width: 520px;
  border: 1px solid #e6e6e6;
  outline: none;
}
.top_inner_searchbar i {
  top: 20px;
  right: -1px;
  padding: 15px 30px;
  color: #ffffff;
  border-radius: 40px;
  cursor: pointer;
  background-color: #2e2e2e;
}

.top_inner_searchbar2 input {
  width: 520px;
  border: 1px solid #e6e6e6;
  outline: none;
}
.top_inner_searchbar2 i {
  top: 0px;
  right: -1px;
  padding: 15px 30px;
  color: #ffffff;
  border-radius: 40px;
  cursor: pointer;
  background-color: #2e2e2e;
}

.top_inner_support i {
  color: #ffffff;
  font-size: 15px;
  background-color: #2e2e2e;
  padding: 14px;
  border-radius: 100%;
}

.support_center .number {
  color: #2e2e2e;
  font-size: 16px;
  font-weight: 900;
}
.support_center .support {
  color: #8b8b8b;
  font-size: 16px;
  font-weight: 500;
}

.header_top_cont span {
  color: #6c747a;
  font-size: 17px;
  font-weight: 500;
}

.quality_section {
  padding: 50px 0px;
}

.quality_section_wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.quality_top_title h2 {
  color: #292929;
  font-size: 2.8125rem;
}

.quality_title h4 {
  font-family: var(--vnil-font-serif);
  color: var(--vnil-deep-black);
  font-size: 1.5rem;
  font-weight: 700;
}
.quality_title h4 font {
  font-family: var(--vnil-font-serif);
  font-weight: 400;
  color: var(--vnil-rose-gold);
}

.quality_desc p {
  color: #7a7b78;
  font-size: 0.99375rem;
}

.quality_section_wrap {
  background-color: var(--vnil-cream);
}

.quality_img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: #fff !important;
  box-shadow: 0 8px 20px rgba(201, 149, 107, 0.15);
  border: 2px solid rgba(201, 149, 107, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}
.quality_img i {
  font-size: 30px;
  color: var(--vnil-rose-gold);
  transition: color 0.35s ease, transform 0.35s ease;
}
.quality_content:hover .quality_img {
  transform: scale(1.08);
  background-color: var(--vnil-rose-gold) !important;
  box-shadow: 0 12px 28px rgba(201, 149, 107, 0.4);
}
.quality_content:hover .quality_img i {
  color: #fff;
  transform: scale(1.1);
}

.quality_middle_gallery {
  max-width: 360px;
  margin: auto;
}
.quality_middle_gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.quality_section_wrap2 h2 {
  color: #292929;
  font-size: 50px;
}
.quality_section_wrap2 h4 {
  color: #181b31;
  font-size: 22px;
  font-weight: 700;
}
.quality_section_wrap2 p {
  color: #7a7a7a;
  font-size: 16.12px;
  font-weight: 400;
}
.quality_section_wrap2 .quality_img2 {
  width: 90px;
  height: 90px;
  padding: 10px;
  border-radius: 100%;
  background-color: #f8f8f8;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.quality_section_wrap2 .quality_content2_img1 {
  top: 27%;
  left: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.quality_section_wrap2 .quality_content2_img2 {
  top: 27%;
  right: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.quality_section_wrap2 .quality_content2_img3 {
  bottom: 27%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.quality_section_wrap2 .quality_content2_img4 {
  bottom: 27%;
  right: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.quality_section_wrap2 .quality_text {
  width: 290px;
}

.quality2_left_thumb {
  top: 0;
  left: 0;
}

.quality2_righttop_thumb {
  top: 0;
  right: 0;
}

.quality2_rightbottom_thumb {
  bottom: 0;
  right: 0;
}

.instagram_style_1 {
  padding-top: 70px;
  padding-bottom: 120px;
  position: relative;
}
.instagram_style_1 .instagram_image_group > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.instagram_style_1 .instagram_image_group a {
  display: block;
  overflow: hidden;
  position: relative;
  background-color: #8bc81e;
}
.instagram_style_1 .instagram_image_group a img {
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.instagram_style_1 .instagram_image_group a i {
  top: 50%;
  left: 50%;
  opacity: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  position: absolute;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.instagram_style_1 .instagram_image_group a span {
  top: 70%;
  left: 50%;
  opacity: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transform: translate(-50%, -70%);
          transform: translate(-50%, -70%);
}
.instagram_style_1 .instagram_image_group a:hover img {
  opacity: 0.4;
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.instagram_style_1 .instagram_image_group a:hover i {
  opacity: 1;
}
.instagram_style_1 .instagram_image_group a:hover span {
  opacity: 1;
}

.instagram_style_2 {
  padding: 77px 0px;
}

.zoom-gallery > li {
  width: 20%;
}
.zoom-gallery a {
  display: block;
  overflow: hidden;
  position: relative;
  background-color: #8bc81e;
}
.zoom-gallery a img {
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.zoom-gallery a i {
  top: 50%;
  left: 50%;
  opacity: 0;
  color: #ffffff;
  font-size: 30px;
  position: absolute;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.zoom-gallery a span {
  top: 70%;
  left: 50%;
  opacity: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transform: translate(-50%, -70%);
          transform: translate(-50%, -70%);
}
.zoom-gallery a:hover img {
  opacity: 0.3;
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.zoom-gallery a:hover i {
  opacity: 1;
}
.zoom-gallery a:hover span {
  opacity: 1;
}

.instagram_image_content {
  border-radius: 15px;
  overflow: hidden;
}

.instagram_2 .instagram_title {
  color: #292929;
  font-size: 50px;
}

.product_ctg_media_thumb {
  max-width: 330px;
  bottom: -50px;
  right: 70px;
}
.product_ctg_media_thumb img {
  width: 100%;
  border-radius: 25px;
}

.product_ctg_media_cont {
  top: 40%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.product_ctg_media_icon i {
  font-size: 35px;
}

.bs-example {
  margin: 20px;
}

.modal-content iframe {
  margin: 0 auto;
  display: block;
}

.product_ctg_media_title {
  font-weight: 700;
  text-decoration: underline;
}

.product_video_wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
}
.product_video_wrap .product_video_player {
  margin: 0 auto;
}
.product_video_wrap .product_media_icon {
  width: 85px;
  height: 85px;
  border-radius: 100%;
  background-color: #64910a;
}
.product_video_wrap .product_media_icon i {
  width: 55px;
  height: 55px;
  border-radius: 100%;
  background-color: #C9956B;
}
.product_video_wrap .product_video_arrow .ss5_left_arrow {
  width: 3.5rem;
  height: 3.5rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 3.5rem;
  background-color: #618f08;
  text-align: center;
  margin-top: -80px;
}
.product_video_wrap .product_video_arrow .ss5_right_arrow {
  width: 3.5rem;
  height: 3.5rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 3.5rem;
  background-color: #c5c3c2;
  text-align: center;
  margin-top: -80px;
}

.product10_media_thumb {
  max-width: 330px;
}
.product10_media_thumb img {
  width: 100%;
  border-radius: 25px;
}

.product10_media_cont {
  top: 40%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.product10_media_icon i {
  font-size: 35px;
}

.recent_product .recent_product_title {
  font-size: 30px;
}
.recent_product .modal-header {
  border-bottom: none;
}
.recent_product .modal-dialog {
  max-width: 1000px;
  height: auto;
  border-radius: 20px;
}
.recent_product .modal-content {
  border-radius: 1.3rem;
}
.recent_product .btn-close {
  background-color: #C9956B;
  border-radius: 100%;
}

.quick_view .modal-dialog {
  max-width: 1000px;
  height: auto;
  border-radius: 20px;
}

.signup_news_wrap {
  max-width: 450px;
  height: auto;
  border-radius: 15px;
  background-color: #ffffff;
  padding: 50px 30px;
}

.signup_news_title {
  color: #333333;
  font-size: 24px;
  font-weight: 700;
}

.signup_news_text {
  color: #333333;
  font-size: 16px;
  font-weight: 400;
}

.signup_news_field input {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #e1e8ee;
}
.signup_news_field .btn {
  width: 100%;
  padding: 15px 0px;
  background-color: #82c408;
}
.signup_news_field .btn:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.signup_news_field .btn i {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.signup_news_terms {
  padding-top: 25px;
}
.signup_news_terms span {
  color: #d1cfd0;
}
.signup_news_terms font {
  color: #5892d0;
}

.signup_news_socials a {
  margin: 10px;
}
.signup_news_socials .social_face {
  width: 45px;
  height: 45px;
  color: #ffffff;
  line-height: 45px;
  border-radius: 100%;
  background-color: #5892d0;
  text-align: center;
}
.signup_news_socials .social_twitt {
  width: 45px;
  height: 45px;
  color: #ffffff;
  line-height: 45px;
  border-radius: 100%;
  background-color: #88d9f7;
  text-align: center;
}
.signup_news_socials .social_linked {
  width: 45px;
  height: 45px;
  color: #ffffff;
  line-height: 45px;
  border-radius: 100%;
  background-color: #909090;
  text-align: center;
}

.comment_form_area .comment_title {
  line-height: 1;
  font-size: 35px;
  margin-bottom: 30px;
}
.comment_form_area .form_item input, .comment_form_area .form_item textarea {
  margin-bottom: 20px;
}

.content_wrap {
  max-width: 600px;
}

.main_search_btn {
  position: relative;
}
.main_search_btn .search_close {
  top: 50%;
  left: 50%;
  opacity: 0;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.main_search_btn.active .search_icon {
  opacity: 0;
}
.main_search_btn.active .search_close {
  opacity: 1;
}

.main_search_btn2 {
  position: relative;
}
.main_search_btn2 .search_close {
  top: 50%;
  left: 50%;
  opacity: 0;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.main_search_btn2.active .search_icon {
  opacity: 0;
}
.main_search_btn2.active .search_close {
  opacity: 1;
}

.main_search_btn3 {
  position: relative;
}
.main_search_btn3 i {
  width: 40px;
  height: 40px;
  color: #ffffff;
  border-radius: 100%;
  background-color: #C9956B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main_search_btn3.active .search_icon {
  opacity: 0;
}
.main_search_btn3.active .search_close {
  opacity: 1;
}

.main_search_form {
  border: none;
  outline: none;
  padding: 20px 0;
  border-radius: 0;
  border-top: 1px solid #C9956B;
  z-index: 999999;
}
.main_search_form .form_item input {
  padding: 0px 30px;
  background-color: #fafafa;
  border: 1px solid #C9956B;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.main_search_form .submit_btn {
  top: 50%;
  right: 20px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.main_search_form .submit_btn .fa-search {
  color: #C9956B;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.navbar-nav {
  position: relative;
}
.navbar-nav .nav-link {
  color: #3e4b5f !important;
  font-size: 1.0625rem;
}
.navbar-nav .nav-link.active {
  color: #C9956B !important;
}
.navbar-nav .nav-link:hover {
  color: #C9956B !important;
}

.after_navbar .nav-item:not(:first-child):after {
  content: "";
  top: 40%;
  left: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 15px;
  background-color: #eaeaea;
  position: absolute;
}

.navbar_user_icon .fa-search, .navbar_user_icon .fa-times {
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  color: #C9956B;
  border: 1px solid #C9956B;
  border-radius: 100%;
}
.navbar_user_icon .fa-user,
.navbar_user_icon .fa-heart {
  width: 3rem;
  height: 3rem;
  color: #2e2e2e;
  line-height: 3rem;
  text-align: center;
  border-radius: 100%;
  background-color: #eeeeee;
}
.navbar_user_icon .fa-shopping-bag {
  width: 3rem;
  height: 3rem;
  color: #ffffff;
  line-height: 3rem;
  text-align: center;
  border-radius: 100%;
  background-color: #C9956B;
}
.navbar_user_icon .fa-shopping-bag .badge {
  color: #ffffff;
  background-color: #191919 !important;
  padding: 7px 10px;
}

.nav_item_has_child .nav_item_submenu:before, .nav_item_has_child .nav_item_megamenu:before {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: -33px;
  z-index: 1;
}

/* When the input field gets focus, change its width to 100% */
input[type=text]:focus {
  width: 100%;
}

.mobile_menu_close {
  top: 20px;
  right: 20px;
  position: absolute;
  background-color: #C9956B;
  border-radius: 100%;
  padding: 20px;
  width: 30px;
  height: 30px;
}

.offcanvas-body .nav-link {
  background-color: #fbfff4;
  margin-top: 15px;
  padding-left: 15px;
}
.offcanvas-body .nav-link:hover {
  background-color: #eaffc3;
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
  border: none;
  outline: none;
  top: 50%;
  left: 150px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.navbar_3 .nav-link {
  color: #ffffff !important;
  font-size: 1.0625rem;
}
.navbar_3 .nav-link.active {
  color: #C9956B !important;
}
.navbar_3 .nav-link:hover {
  color: #C9956B !important;
}

.navbar_dropdown {
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.navbar_dropdown .btn {
  padding: 10px 40px;
  background-color: #C9956B;
}
.navbar_dropdown .dropdown-toggle::after {
  font-size: 18px;
  margin-left: 24px;
}
.navbar_dropdown .dropdown-menu {
  min-width: 16.5rem;
}
.navbar_dropdown .dropdown-menu .dropdown-item {
  padding: 7px 10px;
  background-color: transparent;
  font-size: 17px;
  font-weight: 500;
  color: #8d8d8d;
}
.navbar_dropdown .dropdown-menu-light {
  display: none;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.navbar_dropdown:hover {
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.navbar_dropdown:hover .dropdown-menu-light {
  display: block;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.navbar_4 {
  color: #000000 !important;
}

.recent_view {
  color: #6c747a;
  font-size: 16px;
  font-weight: 500;
}

.about_search input {
  border-radius: 5px;
  background-color: #f4f6f8;
}
.about_search i {
  top: 36px;
  right: 15px;
  color: #000000;
  background-color: #f4f6f8;
  padding: 0;
}

.navbar_bottom {
  top: 50px;
  right: 0;
  left: 0;
}

.nav_item_has_child {
  position: relative;
}
.nav_item_has_child .mega_thumb_area {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  max-width: 100%;
  min-height: 356px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: relative;
}
.nav_item_has_child .mega_thumb_area .thumb_text {
  content: 0;
  bottom: 20px;
  left: 30px;
  position: absolute;
}
.nav_item_has_child .mega_thumb_area .thumb_text h2 {
  color: #ffffff !important;
  font-size: 27px;
  font-weight: 700;
}
.nav_item_has_child .mega_thumb_area .thumb_text h2 font {
  font-weight: 500;
}
.nav_item_has_child .mega_thumb_area .thumb_text span {
  color: #91c942;
  font-size: 16px;
  font-weight: 700;
}
.nav_item_has_child .mega_thumb_area .btn {
  padding: 7px 20px;
}
.nav_item_has_child .nav_item_megamenu {
  top: 64px;
  left: -617px;
  min-width: 1000px;
  position: fixed;
  display: none;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-animation: 0.3s ease-in-out 0s normal none 1 running fadeInUp;
          animation: 0.3s ease-in-out 0s normal none 1 running fadeInUp;
}
.nav_item_has_child .nav_item_megamenu .container:after {
  content: "";
  top: 63px;
  right: -20%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 552px;
  height: 1px;
  background-color: #ededed;
  position: absolute;
}
.nav_item_has_child .nav_item_megamenu .container:before {
  content: "";
  top: 0px;
  right: 38%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 356px;
  background-color: #ededed;
  position: absolute;
}
.nav_item_has_child .nav_item_megamenu .mega_item_area {
  position: relative;
}
.nav_item_has_child .nav_item_megamenu .mega_item_area h4 {
  color: #242f51;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
.nav_item_has_child .nav_item_megamenu .mega_item_area li {
  margin-top: 15px;
  position: relative;
  z-index: 99;
}
.nav_item_has_child .nav_item_megamenu .mega_item_area li:before {
  content: "";
  top: 11px;
  left: -18px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  position: absolute;
  background-color: #b1b1b1;
}
.nav_item_has_child .nav_item_megamenu .mega_item_area li a {
  color: #6f7175;
  font-size: 18px;
  font-weight: 600;
  display: block;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav_item_has_child .nav_item_megamenu .mega_item_area li a:hover {
  color: #3b3b3b;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav_item_has_child .nav_item_megamenu .mega_item_thumb1 {
  bottom: -76px;
  left: -140px;
  z-index: -1;
}
.nav_item_has_child .nav_item_megamenu .mega_item_thumb2 {
  top: -23px;
  right: -52px;
  z-index: -1;
}
.nav_item_has_child .nav_item_submenu {
  top: 64px;
  left: -138px;
  min-width: 370px;
  min-height: 425px;
  position: fixed;
  display: none;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-animation: 0.3s ease-in-out 0s normal none 1 running fadeInUp;
          animation: 0.3s ease-in-out 0s normal none 1 running fadeInUp;
}
.nav_item_has_child .nav_item_submenu .nav_submenu_cont {
  margin-top: 60px;
  margin-left: 80px;
}
.nav_item_has_child .nav_item_submenu .nav_submenu_cont h4 {
  color: #242f51;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}
.nav_item_has_child .nav_item_submenu .nav_submenu_cont h4:after {
  content: "";
  top: 37px;
  left: -4px;
  width: 234px;
  height: 1px;
  position: absolute;
  background-color: #d5d7da;
}
.nav_item_has_child .nav_item_submenu .nav_submenu_cont li {
  margin-top: 15px;
  position: relative;
  z-index: 99;
}
.nav_item_has_child .nav_item_submenu .nav_submenu_cont li:before {
  content: "";
  top: 11px;
  left: -18px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  position: absolute;
  background-color: #b1b1b1;
}
.nav_item_has_child .nav_item_submenu .nav_submenu_cont li a {
  color: #6f7175;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav_item_has_child .nav_item_submenu .nav_submenu_cont li a:hover {
  color: #3b3b3b;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav_item_has_child:hover .nav_item_megamenu {
  padding: 0px;
  display: block;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.nav_item_has_child:hover .nav_item_submenu {
  padding: 0px;
  display: block;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.dropdown_item_has_child > a {
  position: relative;
}
.dropdown_item_has_child .submenu {
  top: -9px;
  right: -235px;
  opacity: 0;
  z-index: 99;
  margin: 0px;
  padding: 0px;
  min-width: 235px;
  visibility: hidden;
  position: absolute;
  background: #ffffff;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 2px 19px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 2px 19px 3px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #C9956B;
  border-bottom: 4px solid #C9956B;
  display: block;
}
.dropdown_item_has_child .submenu > li {
  width: 100%;
  display: block;
}
.dropdown_item_has_child .submenu > li:not(:last-child) {
  border-bottom: 1px solid #e3e3e3;
}
.dropdown_item_has_child .submenu > li > a {
  display: block;
  line-height: 1;
  font-size: 17px;
  font-weight: 500;
  padding: 15px 30px;
  white-space: nowrap;
  color: #8b8b8b;
}
.dropdown_item_has_child .submenu > li:hover > a, .dropdown_item_has_child .submenu > li.active > a {
  color: #292929;
  background-color: #f0f0f0;
}
.dropdown_item_has_child:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.sidebar_nav_item {
  min-width: 300px;
}
.sidebar_nav_item li {
  margin-top: 12px;
  margin-left: 12px;
}
.sidebar_nav_item li a {
  color: #7d7e82;
  display: block;
}

.filter_area .layout_tab_nav li:not(:last-child) {
  margin-right: 10px;
}
.filter_area .layout_tab_nav button {
  z-index: 1;
  width: 40px;
  height: 40px;
  margin: -0.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #bdbdbd;
  font-weight: normal;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #eaeaeb;
  background-color: #f6fafb;
  border-radius: 4px;
}
.filter_area .layout_tab_nav button.active {
  color: #ffffff !important;
  background-color: #C9956B;
}
.filter_area .layout_tab_nav button:hover {
  background-color: #C9956B;
}
.filter_area .layout_tab_nav button svg {
  fill: #bdbdbd;
  width: 20px;
  height: 20px;
}
.filter_area .layout_tab_nav button:hover svg, .filter_area .layout_tab_nav button.active svg {
  fill: #ffffff;
  width: 20px;
  height: 20px;
}
.filter_area .show_result {
  color: #6c6c6c;
  font-size: 15px;
  font-weight: 400;
  margin-left: 15px;
}
.filter_area .sorting_from {
  background-color: #f6fafb;
  padding: 2px 15px;
  border-radius: 6px;
}
.filter_area .sorting_from_title {
  color: #6c6c6c;
  font-size: 15px;
  font-weight: 400;
  margin-right: 15px;
}

.nice-select {
  background-color: transparent;
  border: none !important;
}
.nice-select:after {
  width: 10px;
  height: 10px;
  border-bottom: 3px solid #838484;
  border-right: 3px solid #838484;
}

.shop_testimonial_text {
  max-width: 540px;
  height: auto;
  padding: 50px 40px;
  background-color: #f6fafb;
  border-top: 3px solid #9fcb22;
  border-bottom: 3px solid #9fcb22;
}
.shop_testimonial_text .qoute_icon i {
  color: #9fcb22;
  font-size: 80px;
  font-weight: 900;
}
.shop_testimonial_text .testimonial_desc {
  color: #6c6c6c;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
}
.shop_testimonial_text .testimonial_author {
  color: #14462e;
  font-size: 22px;
  font-weight: 700;
}
.shop_testimonial_text .testimonial_author font {
  color: #9fcb22;
  font-size: 16px;
}

.shop_sidebar_wrap .shop_sidebar_searchbar input {
  width: 100%;
  height: auto;
  color: #838484;
  font-size: 18px;
  font-weight: 300;
  background-color: #f6fafb;
  padding: 10px 20px;
  border: none;
}
.shop_sidebar_wrap .shop_sidebar_searchbar i {
  top: 50%;
  right: 38px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #bdbdbd;
  cursor: pointer;
}

.price-range-area {
  width: 100%;
  padding: 25px 20px;
  border: 2px solid #deecf0;
  border-radius: 20px;
}
.price-range-area .price_range_title {
  color: #252932;
  font-size: 24px;
  font-weight: 700;
}
.price-range-area .slider-range {
  height: 7px;
  border: none;
  border-radius: 0;
  background-color: #e7e7ee;
}
.price-range-area .ui-slider-range {
  border: none;
  border-radius: 0;
  background-color: #f6fafb;
}
.price-range-area .ui-state-default {
  top: -4px;
  width: 14px;
  height: 14px;
  border: none;
  outline: none;
  background-color: #9fcb22;
  border-radius: none;
}
.price-range-area .price-text {
  color: #9fcb22;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}
.price-range-area .price-text input {
  color: #797979;
  font-weight: 500;
  border: none;
  text-align: right;
  display: inline-block;
}

.list_layout_wrap {
  width: 100%;
  border-radius: 25px;
  padding: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(#dddddd), to(#C9956B));
  background: linear-gradient(to top, #dddddd, #C9956B);
}
.list_layout_wrap .list_layout_thumb {
  width: 300px;
  height: auto;
  overflow: auto;
}
.list_layout_wrap .list_layout_thumb:hover {
  opacity: 0.6;
}
.list_layout_wrap .list_layout_content {
  padding: 30px 10px;
  border-radius: 25px;
}
.list_layout_wrap .list_layout_bade .badge_meats {
  color: #C9956B;
  font-size: 10px;
  font-weight: 700;
  background-color: #f2f7f3;
  padding: 8px 13px;
  margin-right: 10px;
}
.list_layout_wrap .list_layout_bade .badge_discount {
  font-size: 11px;
  font-weight: 500;
  background-color: #f14e18;
  padding: 8px 13px;
}
.list_layout_wrap .product_title a {
  color: #535353;
  font-size: 30px;
  font-weight: 900;
}
.list_layout_wrap .list_layout_desc {
  color: #5e5e5e;
  font-size: 18px;
}

/* product quick view - start */
.quickview_modal .modal-dialog {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
.quickview_modal .modal-dialog .modal-content {
  border: none;
  display: block;
  border-radius: 0px;
  background-color: #ffffff;
}
.quickview_modal .close {
  top: 20px;
  right: 20px;
  margin: 0px;
  padding: 0px;
  line-height: 1;
  position: absolute;
  display: inline-block;
  background: red;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  color: #fff;
}
.quickview_modal .item_image {
  float: left;
  width: 430px;
}
.quickview_modal .item_image > img {
  width: 100%;
  display: block;
}
.quickview_modal .item_content {
  padding: 35px;
  display: table;
}
.quickview_modal .item_title {
  font-size: 24px;
  font-weight: 400;
}
.quickview_modal .btns_group > li {
  margin-right: 20px;
}
.quickview_modal .btns_group > li:last-child {
  margin-right: 0px !important;
}
.quickview_modal .btns_group > li > a:not(.custom_btn) {
  width: 55px;
  height: 55px;
  font-size: 21px;
  line-height: 57px;
  text-align: center;
  border-radius: 2px;
  color: #C9956B;
  border: 1px solid #e5e7f5;
}
.quickview_modal .btns_group > li > a:not(.custom_btn):hover {
  color: #ffffff;
  border-color: red;
  background-color: red;
}
.quickview_modal .btns_group > li .custom_btn {
  height: 55px;
}
.quickview_modal .item_price {
  display: block;
  font-size: 30px;
  font-weight: 500;
  color: red;
}
.quickview_modal .list_title {
  font-weight: 500;
  min-width: 110px;
  display: inline-block;
  color: #292929;
}
.quickview_modal .quantity_form .list_title {
  float: left;
  margin: 8.5px 0px;
}
.quickview_modal .info_list > li {
  margin-bottom: 10px;
}
.quickview_modal .info_list > li:last-child {
  margin-bottom: 0px !important;
}
.quickview_modal .info_list > li .list_title {
  float: left;
}
.quickview_modal .info_list > li > ul {
  display: inline-block;
}
.quickview_modal .info_list > li a {
  display: table;
  color: #C9956B;
}
.quickview_modal .info_list > li a:hover {
  color: red;
}
.quickview_modal .social_icon li:not(:last-child) {
  margin-right: 15px;
}

/* product quick view - end */
.product_tabnav_1 button {
  color: #525252;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.2rem 1.5rem;
  background-color: #f2f7f3 !important;
}
.product_tabnav_1 button.active {
  color: #ffffff !important;
  background-color: #C9956B !important;
}
.product_tabnav_1 button:hover {
  color: #525252 !important;
}

.product_layout_1 {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#dddddd), to(#C9956B));
  background: linear-gradient(to top, #dddddd, #C9956B);
  padding: 2px;
}

.product_layout_content {
  padding: 20px 42px;
  border-radius: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product_layout_content .product_image_wrap {
  flex-shrink: 0;
}
.product_layout_content .product_content {
  margin-top: auto;
}
.product_layout_content .product_image img {
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_layout_content:hover .product_image > img {
  opacity: 0.2;
}
.product_layout_content .product_action_btns {
  top: 50%;
  left: 50%;
  z-index: 1;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%, -50%);
}
.product_layout_content .product_action_btns li {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.product_layout_content .product_action_btns a:hover {
  background-color: #C9956B;
}
.product_layout_content:hover .product_action_btns li {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transition: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.product_layout_content:hover .product_action_btns li:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.product_layout_content:hover .product_action_btns li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.product_layout_content:hover .product_badge_group {
  opacity: 0;
}

.product_layout_2 {
  max-width: 100%;
  border-radius: 2rem;
}
.product_layout_2 .product_layout_content {
  border-radius: 2rem;
}
.product_layout_2 .product_layout_content:hover .product_action_btns li {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transition: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.product_layout_2 .product_layout_content:hover .product_action_btns li:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.product_layout_2 .product_layout_content:hover .product_action_btns li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.product_layout_2 .product_layout_content:hover .product_badge_group,
.product_layout_2 .product_layout_content:hover .rating_wrap,
.product_layout_2 .product_layout_content:hover .product_content {
  opacity: 0;
}
.product_layout_2 .product_layout_content .product_action_btns {
  top: 50%;
  left: 50%;
  z-index: 1;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translate(-50%, -50%);
}
.product_layout_2 .product_layout_content .product_action_btns li {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.product_layout_2 .product_layout_content .product_action_btns a:hover {
  background-color: #C9956B;
}

.product_section_style_3.product_section_style_3 .product_layout_content:hover .product_image > img {
  opacity: 1;
}
.product_section_style_3.product_section_style_3 .product_layout_content .product_action_btns {
  top: 68%;
  left: 50%;
  z-index: 1;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.product_image {
  min-width: 10rem;
  height: 13rem;
  margin: 4rem auto 2rem auto;
}

.product_badge_group {
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_badge_group .badge_meats {
  top: 25px;
  left: 25px;
  color: #6faa27;
  font-size: 0.625rem;
  background-color: #f2f7f3;
  padding: 0.2rem 0.5rem;
  font-weight: 700;
}
.product_badge_group .badge_discount {
  top: 25px;
  right: 25px;
  color: #ffffff;
  font-size: 0.7rem;
  background-color: #f14e18;
  padding: 0.2rem 0.5rem;
  font-weight: 500;
}

.product_title {
  font-family: var(--vnil-font-serif);
  font-weight: 700;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_title a {
  color: var(--vnil-deep-black);
  font-family: var(--vnil-font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}
.product_title a:hover {
  color: var(--vnil-rose-gold);
}

.product_price {
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_price .sale_price {
  color: #7fba00;
  font-size: 1rem;
  font-weight: 700;
}
.product_price del {
  color: #dddddd;
  font-size: 1rem;
  font-weight: 700;
}

.product_ctg_content_wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 2rem;
}

.product_ctg_content {
  max-width: 36.875rem;
  height: auto;
}

.product_ctg_title h2 {
  color: #121010;
  font-size: 3.4375rem;
}
.product_ctg_title h2 font {
  color: #C9956B;
}

.product_ctg_desc p {
  color: #989a97;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 33px;
}

.product_ctg_items_icon img {
  padding: 0.5rem;
  background-color: #C9956B;
  border-radius: 100%;
}

.product_ctg_items_title h5 {
  color: #333333;
  font-size: 1.25rem;
  font-weight: 700;
}

.product_ctg_items_desc p {
  color: #a2a4a0;
}

.product_ctg_right_thumb {
  bottom: 28px;
  right: -166px;
  z-index: -1;
}

.product_ctg_left_thumb {
  top: 28px;
  left: -228px;
  z-index: -1;
}

.home2_product_sec {
  padding-top: 100px;
}

.product_section_2_wrap {
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_section_2_wrap .product_sec_sub_title span {
  color: #525252;
  font-size: 12px;
  font-weight: 500;
}
.product_section_2_wrap .product_sec_sub_title .organi {
  color: #C9956B;
  font-size: 12px;
  font-weight: 500;
  word-spacing: 5px;
  letter-spacing: 1px;
}
.product_section_2_wrap .product_section_title {
  max-width: 550px;
}
.product_section_2_wrap .product_section_title h2 {
  color: #323232;
  font-size: 50px;
}
.product_section_2_wrap .product_section_title font {
  color: #C9956B;
}
.product_section_2_wrap .product_section_subtitle p {
  color: #525252;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  margin-left: 30px;
  font-family: "Merriweather", serif;
}
.product_section_2_wrap .product_section_subtitle p:before {
  content: "";
  top: 0;
  right: 0;
  left: 0px;
  width: 2px;
  height: 57px;
  position: absolute;
  background-color: var(--vnil-rose-gold);
}
.product_section_2_wrap .product_section_desc p {
  color: #525252;
}
.product_section_2_wrap .product_about_desc {
  color: #6d6d6d;
  font-size: 18px;
  font-weight: 400;
}
.product_section_2_wrap .product_services_cont span {
  color: #C9956B;
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
}

.product_section3 {
  margin-top: -137px;
  z-index: 9;
}

.product_section3_wrap .product_sec_content_wrap {
  border-radius: 40px;
  -webkit-box-shadow: 5px 5px 30px 10px #f8f8f8 !important;
          box-shadow: 5px 5px 30px 10px #f8f8f8 !important;
}
.product_section3_wrap .product_tabnav_3 button {
  color: #454347;
  font-size: 12px;
  font-weight: 400;
  padding: 0.6rem 1.8rem;
  border-radius: 0rem;
  background-color: #ffffff !important;
  border: 1px solid #d6d6d6;
}
.product_section3_wrap .product_tabnav_3 button.active {
  color: #ffffff !important;
  background-color: #C9956B !important;
}
.product_section3_wrap .product_tabnav_3 button:hover {
  color: #525252 !important;
}
.product_section3_wrap .product_tabnav_3 .first_btn {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.product_section3_wrap .product_tabnav_3 .last_btn {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.product_section3_wrap .product_ctg_content_3 {
  border: 2px solid #f7f6f2;
  padding: 30px 10px;
  border-radius: 10px;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_section3_wrap .product_ctg_content_3 .prdc_ctg_product_img img {
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_section3_wrap .product_ctg_content_3:hover {
  border: 2px solid #C9956B;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_section3_wrap .product_ctg_content_3:hover .prdc_ctg_product_img img {
  opacity: 0.2;
}
.product_section3_wrap .product_ctg_content_3 .product_action_btns {
  top: 40%;
  left: 28%;
  z-index: 1;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.product_section3_wrap .product_ctg_content_3 .product_action_btns li {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.product_section3_wrap .product_ctg_content_3 .product_action_btns a:hover {
  background-color: #C9956B;
}
.product_section3_wrap .product_ctg_content_3:hover .product_action_btns li {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transition: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.product_section3_wrap .product_ctg_content_3:hover .product_action_btns li:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.product_section3_wrap .product_ctg_content_3:hover .product_action_btns li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.product_section3_wrap .product3_left_thumb {
  bottom: -244px;
  left: 0;
  z-index: -1;
}
.product_section3_wrap .product3_right_thumb {
  top: -332px;
  right: 0;
  z-index: -1;
}

.product_layout_2 {
  width: 100%;
  border-radius: 2rem;
  padding: 2px;
}
.product_layout_2 .product_layout_content {
  padding: 50px 28px 28px;
  border-radius: 2rem;
  background-color: #fafafa;
  border: 2px solid #efefef;
}
.product_layout_2 .product_layout_content:hover {
  border: 2px solid #C9956B;
}
.product_layout_2 .product_layout_content .product_image {
  width: 13rem;
  height: 13rem;
  margin: 1rem auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 30px;
}

.product_sec_4 .product_action_btns li:not(:last-child) {
  margin-bottom: 15px;
}
.product_sec_4 .product_action_btns a {
  width: 200px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
  color: #292929;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.07);
}
.product_sec_4 .product_action_btns a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: #C9956B;
}
.product_sec_4 .product_action_btns i span {
  font-size: 17px;
  font-family: var(--vnil-font-sans);
  font-weight: 500;
}
.product_sec_4 .product_action_btns {
  top: 70%;
  left: 50%;
  z-index: 1;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.product_sec_4 .product_action_btns li {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.product_sec_4 .product_action_btns a:hover {
  background-color: #C9956B;
}
.product_sec_4:hover .product_action_btns li {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transition: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.product_sec_4:hover .product_action_btns li:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.product_sec_4:hover .product_action_btns li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.product_sec_4:hover .product_badge_group {
  opacity: 1;
}

.product_layout_style4 .product_layout_2 {
  width: 100%;
}
.product_layout_style4 .product_layout_content {
  padding: 20px 42px;
  overflow: hidden;
}
.product_layout_style4 .product_image {
  min-width: 10rem;
  height: 13rem;
  margin: 0 auto;
}
.product_layout_style4 .product_badge_group {
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_layout_style4 .product_badge_group .badge_meats {
  top: 25px;
  left: 25px;
  color: #6faa27;
  font-size: 0.625rem;
  background-color: #f2f7f3;
  padding: 0.3rem 0.6rem;
  font-weight: 700;
}
.product_layout_style4 .product_badge_group .badge_discount {
  top: 25px;
  right: 25px;
  color: #ffffff;
  font-size: 0.7rem;
  background-color: #f14e18;
  padding: 0.3rem 0.6rem;
  font-weight: 500;
}

.product_sec_5 .product_action_btns li:not(:last-child) {
  margin-bottom: 15px;
}
.product_sec_5 .product_action_btns a {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  color: #292929;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.07);
}
.product_sec_5 .product_action_btns a:hover {
  color: #ffffff;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: #C9956B;
}
.product_sec_5 .product_action_btns {
  top: 50%;
  left: 15%;
  z-index: 1;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.product_sec_5 .product_action_btns li {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.product_sec_5 .product_action_btns a:hover {
  background-color: #C9956B;
}
.product_sec_5:hover .product_action_btns li {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transition: 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.product_sec_5:hover .product_action_btns li:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.product_sec_5:hover .product_action_btns li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.product_sale_wrap .product_sale_disc {
  width: 100%;
  height: 430px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 30px;
}
.product_sale_wrap .product_sale_cnt1 {
  width: 250px;
  height: 360px;
  padding: 40px 30px;
  border-radius: 20px;
}
.product_sale_wrap .product_offer {
  font-size: 14px;
  background-color: #82c408;
  border-bottom: 3px solid #cde79c;
  font-weight: 400;
}
.product_sale_wrap .offer_title {
  color: #666666;
  font-size: 21px;
  font-weight: 700;
}
.product_sale_wrap .btn {
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  border: 3px solid #82c408 !important;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_sale_wrap .btn:hover {
  color: #ffffff !important;
  background-color: #82c408;
  border: 3px solid #000000 !important;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_sale_wrap .btn:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.product_sale_wrap .btn i {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.product_sale_wrap .product_sale_cnt2 h3 {
  color: #272727;
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
}
.product_sale_wrap .product_sale_cnt2 .btn {
  color: #272727;
  border: none !important;
  font-weight: 600;
}

.product_section6 .product_section_wrap {
  padding: 100px 0px 330px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.product_section6 .product_player2 {
  border: 3px solid green;
  border-radius: 100%;
}
.product_section6 .product_player2 .product_media {
  width: 130px;
  height: 130px;
  border-radius: 100%;
  margin: 5px;
  background-color: #1b1f16;
}
.product_section6 .product_media_icon {
  font-size: 25px;
}
.product_section6 .product_media_title {
  font-size: 12px;
  font-weight: 700;
}

.best_product_wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.best_product_title::after {
  content: "";
  left: 0px;
  bottom: -30px;
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: #f0f0f0;
}
.best_product_title::before {
  content: "";
  left: 0px;
  bottom: -30px;
  width: 60px;
  height: 3px;
  position: absolute;
  background-color: #9bcd40;
  z-index: 999999;
}

.best_product_item .prdc_ctg_product_img {
  width: 9rem;
  height: 9rem;
  line-height: 9rem;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 10px;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.best_product_item .prdc_ctg_product_img:hover {
  background-color: #e5e7e6;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.product7_wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.product7_cont_wrap {
  max-width: 1150px;
  padding-right: 80px;
}

.product7_cont {
  width: 600px;
  overflow: hidden;
}
.product7_cont h2 {
  color: #292929;
  font-size: 48px;
  font-weight: 700;
}
.product7_cont font {
  color: #7fbc00;
}
.product7_cont .banner_sub_title2 h6 {
  top: 48%;
  left: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.0625rem;
  z-index: 9;
  font-weight: 500;
}

.product7_cont_gallery {
  bottom: 31px;
  right: 0px;
}

.product7_slide_cont .slick-list.draggable {
  height: 400px !important;
  padding: 100px 0px !important;
}

.slick-vertical .slick-slide {
  margin-top: 44px !important;
}

.product7_slide_cont_wrap {
  width: 386px;
  height: 400px;
  top: 50%;
  right: -16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
}
.product7_slide_cont_wrap i {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.product7_slide_cont_wrap .product7_slide_thumb .slick-center {
  background-color: #82c408;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.product7_slide_cont_wrap .product7_slide_thumb .slick-center .product7_slide_item_cont {
  display: block;
}
.product7_slide_cont_wrap .product7_slide_item span {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  background-color: #fff8f8;
  padding: 3px;
  margin: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product7_slide_cont_wrap .product7_slide_item .product7_slide_item_cont {
  display: none;
}
.product7_slide_cont_wrap .product7_slide_item .product7_slide_item_cont h6 {
  font-size: 23px;
}
.product7_slide_cont_wrap .product7_slide_item .product7_slide_item_cont p {
  font-size: 15px;
  font-weight: 500;
}

.product7_arrow1 {
  top: -18%;
  right: 298px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.product7_arrow2 {
  bottom: -30%;
  right: 286px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.product8_sec_wrap .nav-link {
  width: 380px;
  height: 80px;
  color: #000000 !important;
  font-size: 20px;
  font-weight: 700;
  background-color: #f4f4f4;
  border-radius: 0rem !important;
}
.product8_sec_wrap .nav-link.active {
  color: #ffffff !important;
  background-color: #82c408;
  border-radius: 10px !important;
}
.product8_sec_wrap .product8_gallery {
  width: 465px;
  height: auto;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.product8_sec_wrap .product8_gallery img {
  width: 100%;
}
.product8_sec_wrap .banner_sub_title3 h6 {
  top: 15px;
  left: 41px;
  font-size: 1.0625rem;
  z-index: 99999;
  font-weight: 500;
}
.product8_sec_wrap .store_item_img {
  background-color: #f4f4f4;
}

.product9_sec_wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.product9_gallery {
  width: 450px;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  border-radius: 20px;
}

.product9_sec_cont .product9_section_title h2 {
  color: #323232;
  font-size: 50px;
  font-weight: 700;
}
.product9_sec_cont .product9_section_title h2 font {
  color: #C9956B;
}
.product9_sec_cont .product9_section_desc p {
  color: #6d6d6d;
  font-size: 16px;
  font-weight: 400;
}

.product9_inner_cont .inner_item {
  padding: 20px 50px;
  border-radius: 10px;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}
.product9_inner_cont .inner_item:not(:last-child) {
  margin-bottom: 10px;
}
.product9_inner_cont .inner_item:hover {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product9_inner_cont .inner_item .item_num {
  top: 50%;
  left: -26px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
  font-weight: 900;
  width: 60px;
  height: 60px;
  background-color: #C9956B;
}
.product9_inner_cont .inner_item .item_title {
  color: #2b3132;
  font-size: 20px;
  font-weight: 700;
}
.product9_inner_cont .inner_item .item_subtitle {
  color: #C9956B;
  font-size: 12px;
  font-weight: 500;
}

.product9_right_thumb {
  bottom: -103px;
  right: -323px;
}

.product10_wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.product10_wrap .product10_thumb {
  width: 500px;
  height: 500px;
  background-color: #f7f7f7;
  border-radius: 100%;
}
.product10_wrap .product_btn {
  z-index: 2;
}
.product10_wrap .product10_thumb_item .thumb_item {
  width: 130px;
  height: 120px;
  padding: 15px;
  border-radius: 20px;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product10_wrap .product10_thumb_item .thumb_item:hover {
  opacity: 0.5;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product10_wrap .product10_thumb_item .thumb_item:not(:first-child) {
  margin-top: 30px;
  margin-right: 30px;
}
.product10_wrap .product10_large_img {
  width: 450px;
  height: 550px;
  background-color: #f7f7f7;
  border-radius: 30px;
  margin-right: 30px;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 999999;
  cursor: pointer;
}
.product10_wrap .product10_large_img:hover {
  opacity: 0.6;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product10_wrap .sale_badge {
  top: 28px;
  right: 28px;
  font-size: 15px;
  font-weight: 500;
  padding: 2px 12px;
  background-color: #1c1f23;
  border-radius: 30px;
}
.product10_wrap .product10_back_thumb1 {
  top: 24%;
  left: -200px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.product10_wrap .product10_back_thumb2 {
  bottom: -32%;
  right: 17px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.product10_wrap .review {
  color: #C9956B;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  margin-left: 20px;
}
.product10_wrap .product_detail_title {
  color: #292929;
  font-size: 45px;
}
.product10_wrap .product_detail_desc {
  color: #b0b0b0;
  font-size: 18px;
}

.product10_content_wrap .content_title {
  color: #292929;
  font-size: 20px;
}
.product10_content_wrap .content_item {
  width: 75px;
  height: 75px;
  border-radius: 100%;
  border: 2px solid #d3d3d3;
  padding: 10px;
  margin: 5px 0px;
  overflow: hidden;
}
.product10_content_wrap .content_item:hover {
  opacity: 0.6;
}

.product10_value_content .value_title {
  color: #292929;
  font-size: 20px;
}
.product10_value_content .product10_value_table {
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 5px 5px 30px 10px #f8f8f8;
          box-shadow: 5px 5px 30px 10px #f8f8f8;
}
.product10_value_content .table th {
  color: #292929;
  font-size: 14px;
  font-weight: 700;
  border-right: 1px solid #eaeaea;
  text-align: center;
  padding: 13px 5px;
}
.product10_value_content .table td {
  color: #292929;
  font-size: 14px;
  padding: 13px 5px;
  font-weight: 500;
}

.product10_quantity_btn_wrap {
  margin-top: 25px;
  position: relative;
}
.product10_quantity_btn_wrap:after {
  content: "";
  top: 88px;
  left: 0;
  width: 500px;
  height: 3px;
  background-color: white;
  position: absolute;
}
.product10_quantity_btn_wrap .quantity_input {
  width: 236px;
  height: 60px;
  padding: 0px 20px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #eceef2;
}
.product10_quantity_btn_wrap .quantity_input span {
  color: #ced9df;
  font-size: 30px;
  line-height: 1;
  margin: 0px 10px;
  cursor: pointer;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.product10_quantity_btn_wrap .quantity_input span:hover {
  color: #C9956B;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.product10_quantity_btn_wrap .quantity_input input {
  width: 80px;
  border: none;
  padding: 0px;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.product10_quantity_btn_wrap .product10_title {
  color: #292929;
  font-size: 30px;
}

.product_tags_wrap .product_tags_title {
  color: #252525;
  font-size: 14px;
  font-weight: 700;
  margin-right: 50px;
}
.product_tags_wrap .tags_item a {
  color: #8799a3;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_tags_wrap .tags_item a:hover {
  color: #C9956B;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.product_social_links {
  margin-top: 15px;
}
.product_social_links .product_social_title {
  color: #252525;
  font-size: 14px;
  font-weight: 700;
  margin-right: 40px;
}
.product_social_links li:not(:last-child) {
  margin-right: 30px;
}
.product_social_links li i {
  color: #bbc7cd;
  font-size: 20px;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_social_links li i:hover {
  color: #C9956B;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.product10_reviews .nav-item:not(:last-child) {
  margin-right: 20px;
}
.product10_reviews .nav-link {
  color: #000000 !important;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 30px;
}
.product10_reviews .nav-link.active {
  color: #ffffff !important;
  background-color: #C9956B;
}

.product10_left_thumb3 {
  bottom: 12px;
  left: -22px;
  z-index: 1;
}

.product10_right_thumb4 {
  top: 0px;
  right: 0px;
  z-index: 1;
}

.review_comment2 .title_text {
  line-height: 1;
  font-size: 35px;
  margin-bottom: 30px;
}

.review_comment_list2 > li {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted #bdbaba;
}

.review_comment_wrap2 .admin_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.review_comment_wrap2 .comment_date {
  color: #8a8e91;
  font-size: 14px;
  font-weight: 400;
  margin-left: 40px;
  display: inline-block;
}
.review_comment_wrap2 .rating_star {
  margin-bottom: 12px;
}
.review_comment_wrap2 .rating_star > li {
  color: #8b9999;
}
.review_comment_wrap2 .rating_star > li.active {
  color: #ff5e00;
}
.review_comment_wrap2 p {
  font-size: 16px;
}

.product_layout3_content {
  padding: 15px;
  border: 1px solid #e8ebee;
  border-radius: 3px;
  cursor: pointer;
}
.product_layout3_content .product_image_wrap {
  padding: 50px 0px;
  background-color: #f8f8f8;
}
.product_layout3_content .product_image_wrap .product_image {
  width: 14rem;
  height: 14rem;
  margin: 4rem auto 2rem auto;
  overflow: hidden;
}
.product_layout3_content .product_image_wrap .product_image:hover {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_layout3_content .product_image_wrap .product_image:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_layout3_content .product_image_wrap .product_image img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.product_layout3_content .product_layout3_inner_content {
  padding: 15px;
}

.fearure_right_side_img {
  bottom: 0px;
  right: 0px;
}

.product_item_wrap {
  background-color: #f8f7f1;
}

.product_items_content {
  padding: 13px;
  border-radius: 10px;
  border: 1px solid #e8ebee;
}

.product_item_img {
  width: 170px;
  height: 160px;
  background-color: #f3f3f3;
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}
.product_item_img:hover {
  opacity: 0.6;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.product_item_top_thumb {
  top: -44px;
  left: 28%;
  -webkit-transform: translateX(-5%);
          transform: translateX(-5%);
}

.product_item_bottom_thumb {
  bottom: 60px;
  left: -30px;
  width: 600px;
}

.product_item_right_thumb {
  right: -83px;
  bottom: 31px;
}

.offer_item_img {
  width: 200px;
  padding: 5px;
  overflow: hidden;
  position: relative;
}
.offer_item_img:hover {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.offer_item_img:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.offer_item_img img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.offer_inner_content {
  width: 100%;
  border-radius: 2rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#dddddd), to(#C9956B));
  background: linear-gradient(to top, #dddddd, #C9956B);
  padding: 2px;
}

.offer_item_content {
  padding: 40px;
  border-radius: 2rem;
}

.offer_title h2 {
  color: #292929;
  font-size: 2.8125rem;
}

.offer_item_title h3 {
  color: #212121;
  font-size: 1.397rem;
  font-size: 700;
}

.offer_item_price {
  font-weight: 500;
}
.offer_item_price span {
  color: #ff0404;
  font-size: 1.048125rem;
}
.offer_item_price del {
  color: #a3a9b1;
  font-size: 0.87375rem;
}

.offer_item_desc p {
  color: #a9a9a9;
  font-size: 0.9375rem;
  line-height: 25px;
}

.offer_item_expr_btn .btn {
  font-size: 0.6875rem;
  font-weight: 700;
  background-color: #fb532c !important;
  padding: 0.8rem 1rem;
}

.offer_item_qty_prog .progress-bar {
  background-color: #C9956B;
}

.offer_item_qty_num {
  font-size: 0.84375rem;
  font-weight: 700;
}
.offer_item_qty_num span {
  color: #C9956B;
}
.offer_item_qty_num span font {
  color: #202020;
}

.offer_delivery_content {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 1rem;
}

.offer_delivery_title {
  color: #525252;
  font-size: 1.375rem;
}
.offer_delivery_title span {
  font-weight: 400;
}
.offer_delivery_title font {
  font-weight: 700;
}

.offer_delivery_btn .btn {
  font-size: 1.0625rem;
  font-weight: 500;
}

.sale_section {
  padding: 10px 0px 60px 0px;
}

.sale_item_content {
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.sale_item_content:hover {
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.sale_item {
  max-width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.sale_item:hover {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.sale_item:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.sale_item img {
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  max-width: initial;
}
.sale_item .sale_big_title {
  width: 290px;
  top: 60%;
  left: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sale_item .sale_big_title h3 {
  color: #ffffff;
  font-size: 2.1875rem;
}
.sale_item .sale_big_title font {
  font-weight: 200;
}
.sale_item .sale_big_title span {
  font-size: 1.125rem;
}
.sale_item .sale_sm_title {
  width: 270px;
  bottom: -5%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sale_item .sale_sm_title h3 {
  color: #ffffff;
  font-size: 2.0625rem;
}
.sale_item .sale_sm_title font {
  font-weight: 200;
}
.sale_item .sale_sm_title span {
  font-size: 1.125rem;
}

.sale_item_arrow {
  bottom: 20px;
  right: 40px;
}
.sale_item_arrow .ss2_left_arrow i {
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 2.5rem;
  background-color: #444444;
  text-align: center;
}
.sale_item_arrow .ss2_right_arrow i {
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 2.5rem;
  background-color: #C9956B;
  text-align: center;
}

.sale_right_thumb {
  width: 13rem;
  height: 13rem;
  bottom: 0px;
  right: 0;
}

.sale2_section_wrap {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.sale2_bg {
  background-color: #f7f6f1;
}

.sale2_sub_cont h6 {
  top: 37%;
  left: 39px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sale2_sub_title h6 {
  top: 39%;
  left: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
  font-weight: 700;
}

.sale2_title h2 {
  color: #1a1a1a;
  font-size: 60px;
}
.sale2_title font {
  color: #81bd03;
}

.sale2_desc p {
  color: #767675;
  font-size: 18px;
  font-weight: 400;
}

.sale3_sec .sale3_content {
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.sale3_sec .sale3_content .sale3_title {
  width: 300px;
  color: #272626;
  font-size: 38px;
  font-weight: 700;
}
.sale3_sec .sale3_content .sale3_subtitle {
  color: #272626;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 5px;
  word-spacing: 2px;
}
.sale3_sec .sale3_content2 {
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.sale3_sec .sale3_content2 .sale3_title {
  width: 300px;
  color: #272626;
  font-size: 38px;
  font-weight: 700;
}
.sale3_sec .sale3_content2 .sale3_subtitle {
  color: #272626;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 5px;
  word-spacing: 2px;
}

.store_section_wrap {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.store_section_wrap .store_content {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.store_section_wrap .store_item_img {
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.store_section_wrap .store_item_img:hover {
  opacity: 0.7;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.store_left_side_img {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.store_left_side_img2 {
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.store_left_side_img2 img {
  opacity: 0.7;
}

.store_right_side_img {
  top: 15px;
  right: 50px;
}

.store_content_text {
  max-width: 750px;
}

.store_title h2 {
  color: #292929;
  font-size: 60px;
}
.store_title h2 font {
  color: #C9956B;
}

.store_desc {
  max-width: 510px;
}
.store_desc p {
  color: #6b6b6b;
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
}

.store_item_img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
}

.store_item_title {
  max-width: 150px;
}
.store_item_title span {
  color: #535353;
  font-size: 18px;
  font-weight: 600;
}

.store_item_content ul {
  text-align: left;
}
.store_item_content li i {
  color: #87c526;
}
.store_item_content li a {
  color: #000000 !important;
  font-size: 20px;
  font-weight: 700;
}

.store_gallery {
  max-width: 520px;
  border-radius: 30px;
}
.store_gallery img {
  width: 100%;
}

.store_gallery_right {
  top: -67px;
  right: 92px;
}

.store_gallery_testimonial {
  bottom: -94px;
  left: -115px;
  max-width: 370px;
  height: 410px;
  background-color: #2c2c2c;
  border-radius: 30px;
  z-index: 9;
}
.store_gallery_testimonial .slide_content p {
  font-size: 18px;
  line-height: 30px;
}
.store_gallery_testimonial .slide_title h6 {
  color: #efb236;
  font-size: 15px;
  font-weight: 700;
}
.store_gallery_testimonial .slide_title h6 font {
  font-size: 15px;
  font-weight: 700;
  color: #7d7d7d;
}
.store_gallery_testimonial .slick-dots {
  bottom: 30px;
  left: -100px;
  margin: 0;
  padding: 1rem 0;
  position: absolute;
  list-style-type: none;
}

.store3_content {
  max-width: 290px;
  height: 370px;
  border-radius: 1rem;
  margin: 0 auto;
  -webkit-box-shadow: 5px 5px 30px 10px #f8f8f8;
          box-shadow: 5px 5px 30px 10px #f8f8f8;
}

.store3_thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 250px;
  overflow: hidden;
  cursor: pointer;
}
.store3_thumb:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.store3_thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50%;
     object-position: 50%;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.store3_thumb .store3_date {
  top: 25px;
  left: 20px;
}
.store3_thumb .store3_date span {
  font-size: 13px;
  font-weight: 400;
  padding: 9px 12px;
  background-color: #82c408;
  border-radius: 30px;
}

.store3_inner_content {
  text-align: start;
}
.store3_inner_content span {
  color: #222d39;
  font-size: 19px;
  font-weight: 500;
}

.store3_item_content li i {
  color: #87c526;
}
.store3_item_content li a {
  color: #444444;
  font-size: 17px;
  font-weight: 500;
}

.sidebar_content_wrap .prdc_ctg_product_img {
  max-width: 6rem;
  min-height: 6rem;
  background-color: transparent;
}

.offcanvas-end {
  top: 0;
  right: 0;
  width: 350px !important;
  border-left: 1px solid #C9956B !important;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.offcanvas_index3 .offcanvas-start {
  top: 130px;
}

.total_price {
  padding: 20px 30px;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.total_price li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.total_price li:not(:last-child) {
  margin-bottom: 15px;
}
.total_price li:last-child {
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}
.total_price span {
  font-size: 1rem;
  display: inline-block;
}

.slick-dots {
  bottom: 30px;
  right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 1rem 0;
  position: absolute;
  list-style-type: none;
}
.slick-dots li {
  margin: 0 0.25rem;
}
.slick-dots li button {
  display: block;
  width: 1rem;
  height: 1rem;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: red;
  text-indent: -9999px;
}
.slick-dots li.slick-active button {
  background-color: #41508a;
}

.store_gallery_testimonial .slick-dots {
  bottom: 30px;
  right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 1rem 0;
  position: absolute;
  list-style-type: none;
}
.store_gallery_testimonial .slick-dots li {
  margin: 0 0.25rem;
}
.store_gallery_testimonial .slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #565656;
  text-indent: -9999px;
}
.store_gallery_testimonial .slick-dots li.slick-active button {
  background-color: white;
}

.instagram_2 .slick-dots {
  bottom: -80px;
  right: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 1rem 0;
  position: absolute;
  list-style-type: none;
}
.instagram_2 .slick-dots li.slick-active {
  color: green;
}
.instagram_2 .slick-dots button {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0px;
  border-radius: 100%;
  background-color: #2e3e66;
  text-indent: -9999px;
}

.product__slider-main {
  margin-bottom: 15px;
  display: none;
}
.product__slider-main img {
  margin: 0 auto;
}

.product__slider-thmb {
  display: none;
}
.product__slider-thmb .slick-slide {
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product__slider-thmb .slick-slide:hover {
  opacity: 1;
}
.product__slider-thmb .slick-slide.slick-active {
  opacity: 1;
}

/*USE CSS for Slider*/
/*End USE CSS for Slider*/
.banner-slider .slider.slider-for {
  max-width: 78%;
  padding-right: 35px;
  width: 100%;
  float: left;
}
.banner-slider .slider.slider-nav {
  max-width: 24%;
  width: 100%;
  float: left;
  height: 610px;
  overflow: hidden;
  padding: 20px 0 0;
  z-index: 9;
}

.slider-banner-image {
  width: 400px;
  height: 550px;
  border-radius: 30px;
  margin-right: 30px;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 999999;
  position: relative;
  left: 20px;
  top: 0px;
}
.slider-banner-image img {
  height: 85%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner-slider .slider.slider-for {
  max-width: 73%;
  padding-right: 35px;
  width: 100%;
  float: right !important;
}

.slider-nav .slick-slide.thumbnail-image .thumbImg {
  width: 130px;
  height: 120px;
  padding: 15px;
  border-radius: 20px;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.slider-nav .slick-slide.thumbnail-image .thumbImg img {
  height: 100%;
  width: 100%;
}
.slider-nav .slick-slide {
  text-align: center;
}
.slider-nav .slick-slide span {
  font-size: 14px;
  display: block;
  padding: 5px 0 15px;
}

.slick-vertical .slick-slide {
  margin-top: 7px;
}
.slick-vertical .slick-slide:active {
  border: 0;
  outline: 0;
}
.slick-vertical .slick-slide:focus {
  border: 0;
  outline: 0;
}

.slick-prev {
  top: 0;
}

.slick-next {
  bottom: 0;
  background-color: #fff;
}

.testimonial_sec_content {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.testimonial_author img {
  max-width: 26rem;
  height: 26rem;
}

.testimonial_comment_text h3 {
  width: 25rem;
  height: auto;
  color: #2c2c2c;
  font-size: 2.5rem;
  font-weight: 700;
}

.testimonial_comment p {
  width: 38rem;
  height: auto;
  color: #6f6f6f;
  font-size: 1.2rem;
  line-height: 30px;
  font-style: italic;
}

.testimonial_author_title h6 {
  color: #C9956B;
  font-size: 1.125rem;
  font-weight: 700;
}
.testimonial_author_title h6 font {
  color: #8e8e9a;
}

.testimonial2_title {
  color: #292929;
  font-size: 45px;
}

.testimonial_qoute i {
  color: var(--vnil-rose-gold);
  font-size: 38px;
  opacity: 0.85;
}

/* Premium styling for testimonial v2 layout (used on homepage) */
.testimonial_section {
  background-color: var(--vnil-cream);
}
.testimonial_section .product_sec_sub_title span {
  font-family: var(--vnil-font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--vnil-rose-gold);
}
.testimonial_section .testimonial2_title {
  font-family: var(--vnil-font-serif);
  font-weight: 700;
  color: var(--vnil-deep-black);
}
.testimonial_author2 {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
}
.testimonial_author2 > img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 18px 40px rgba(201, 149, 107, 0.25);
  position: relative;
  z-index: 2;
}
.testimonial_back_img1 {
  top: -18px;
  left: -22px;
  z-index: 1;
  width: 70px;
  opacity: 0.55;
}
.testimonial_back_img1 img,
.testimonial_back_img2 img {
  width: 100%;
  height: auto;
}
.testimonial_back_img2 {
  bottom: -18px;
  right: -22px;
  z-index: 1;
  width: 70px;
  opacity: 0.55;
}
.testimonial_section .testimonial_text {
  max-width: 540px;
}
.testimonial_section .testimonial_comment p {
  width: auto;
  max-width: 540px;
  font-family: var(--vnil-font-serif);
  font-style: italic;
  color: #3d3d3d;
  font-size: 1.25rem;
  line-height: 1.7;
}
.testimonial_section .testimonial_author_title h6 {
  font-family: var(--vnil-font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vnil-deep-black);
}
.testimonial_section .testimonial_author_title h6 font {
  color: var(--vnil-rose-gold);
  font-weight: 600;
}

/* Section needs bottom padding so dots have room */
.testimonial_section .testimonial_sec_content {
  padding-bottom: 80px;
}
/* Center the testimonial layout horizontally */
.testimonial_section .testimonial_layout_1 {
  max-width: 900px;
  margin: 0 auto;
}

/* Slick controls — rose-gold dots, pushed below content */
.testimonial_section .slick-dots {
  position: static;
  margin: 50px 0 0;
  padding: 0;
  display: flex !important;
  justify-content: center;
  gap: 8px;
  list-style: none;
  width: 100%;
  bottom: auto;
}
.testimonial_section .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}
.testimonial_section .slick-dots li button {
  font-size: 0;
  line-height: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: rgba(201, 149, 107, 0.35);
  padding: 0;
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.testimonial_section .slick-dots li.slick-active button {
  width: 26px;
  background-color: var(--vnil-rose-gold);
  border-radius: 6px;
}
.testimonial_section .slick-dots li button::before {
  content: none;
}

@media (max-width: 767px) {
  .testimonial_author2 { width: 160px; height: 160px; margin-right: 0 !important; margin-bottom: 30px; }
  .testimonial_author2 > img { width: 150px; height: 150px; }
  .testimonial_section .testimonial_layout_1 { flex-direction: column; text-align: center; }
  .testimonial_section .testimonial_comment p { font-size: 1.05rem; }
}

.testimonial_back_img1 {
  top: -12px;
  left: -133px;
  z-index: -1;
}

.testimonial_back_img2 {
  bottom: -137px;
  right: -35px;
  z-index: -1;
}

.testimonial3_sec_wrap .testimonial3_content::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #eaeaea;
  bottom: -50px;
  left: 0px;
  position: absolute;
}
.testimonial3_sec_wrap .testimonial3_slider_thmb {
  max-width: 370px;
  margin: auto;
  padding: 10px 0px;
}
.testimonial3_sec_wrap .testimonial3_slider_thmb img {
  width: 104px;
  height: 104px;
  padding: 10px;
  border-radius: 100%;
}
.testimonial3_sec_wrap .testimonial3_slider_thmb .draggable {
  padding: 10px 0 !important;
}
.testimonial3_sec_wrap .testimonial3_slider_thmb .slide_item {
  width: 114px;
  height: 114px;
  border-radius: 100%;
  overflow: hidden;
  margin: 0px 10px;
  opacity: 0.6;
}
.testimonial3_sec_wrap .testimonial3_slider_thmb .slide_item.active {
  opacity: 1;
  zoom: 2;
}
.testimonial3_sec_wrap .testimonial3_slider_thmb .slide_item .slide_quote {
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 12px;
  font-weight: 500;
}
.testimonial3_sec_wrap .testimonial3_slider_thmb .slide_item.slick-center {
  opacity: 1;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.testimonial3_sec_wrap .testimonial3_slider_thmb .slide_item.slick-center img {
  padding: 0;
}
.testimonial3_sec_wrap .testimonial3_slider_thmb .slide_item.slick-center:after {
  content: "";
  background: url(../images/testimonials/icon.png);
  width: 54px;
  height: 37px;
  position: absolute;
  bottom: 6px;
  left: 26px;
}
.testimonial3_sec_wrap .testimonial3_text {
  width: 748px;
  margin: 40px auto;
  position: relative;
}
.testimonial3_sec_wrap .testimonial3_text .testimonial_desc {
  color: #26263e;
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
}
.testimonial3_sec_wrap .testimonial3_text .testimonial_author {
  color: #7dc22b;
  font-size: 18px;
  font-style: italic;
}
.testimonial3_sec_wrap .testimonial3_text .testimonial_author font {
  color: #a3a3ac;
}

.service_content_icon {
  width: 5rem;
  height: 5rem;
  text-align: center;
  background-color: #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.service_content_icon i {
  color: #C9956B;
  font-size: 28px;
}

.service_content_title h6 {
  color: #191919;
  font-size: 1rem;
  font-weight: 700;
}

.service_content_sub_title span {
  color: #6e6e6e;
  font-size: 0.875rem;
  font-weight: 400;
}

.service_setion2 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.service_content_wrap2 .service_content_icon {
  background-color: #f7f6f2;
}
.service_content_wrap2 .service_content_title {
  width: 158px;
  color: #535353;
  font-size: 18px;
  font-weight: 700;
  font-family: "Merriweather", serif;
  margin-bottom: 0rem;
}

.service_content_3 .service_inner_content:not(:last-child) {
  margin-right: 15px;
}
.service_content_3 .service_inner_content3 {
  width: 160px;
  height: 160px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0rem;
  background-color: #f6f6f6;
  border-radius: 100%;
}
.service_content_3 .service_icon i {
  color: #7ec104;
  font-size: 32px;
  font-weight: 700;
}
.service_content_3 .service_icon2 i {
  color: #1972d6;
  font-size: 32px;
  font-weight: 700;
}
.service_content_3 .service_content h6 {
  color: #333e48;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0rem;
}
.service_content_3 .service_content span {
  color: #333e48;
  font-size: 16px;
  font-weight: 400;
}

.team_top_title h2 {
  color: #292929;
  font-size: 2.5rem;
  font-weight: 700;
}

.team_author_title {
  margin-bottom: -1px;
}

.team_author_post {
  color: #9da1b0;
}

.team_inner_content .card {
  padding: 2rem 3rem;
  background-color: #fafafa;
  border-radius: 1rem !important;
  -webkit-box-shadow: 0 0.5rem 1rem transparent !important;
          box-shadow: 0 0.5rem 1rem transparent !important;
  cursor: pointer;
  border: none;
}
.team_inner_content .card img {
  width: 10rem;
  height: 10rem;
  margin: 2rem auto;
}
.team_inner_content .card:hover {
  background-color: #ffffff;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.175) !important;
          box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.175) !important;
}

.team_author_social_link i {
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0.5rem;
}
.team_author_social_link i:hover {
  color: #ffffff;
  padding: 0.5rem;
  background-color: #4363dc;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 100%;
}

.team_left_thumb {
  top: -89px;
  left: -104px;
  bottom: 20px;
}

.team_right_thumb {
  top: -205px;
  right: -101px;
  bottom: 20px;
}

.trend_section_wrap {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 2rem;
}

.trend_top_title h2, .product_top_title h2 {
  color: #323232;
  font-size: 3.125rem;
}

.trend_inner_text {
  top: 80px;
  left: 40px;
  width: 140px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.trend_inner_text h4 {
  font-size: 30px;
  font-weight: 400;
}
.trend_inner_text a {
  margin-left: -20px;
  margin-top: 15x;
}
.trend_inner_text a:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.trend_inner_text a i {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.trending_sec_wrap {
  width: 100%;
  padding: 25px 20px;
  border: 2px solid #deecf0;
  border-radius: 20px;
}
.trending_sec_wrap .trending_title {
  color: #252932;
  font-size: 24px;
  font-weight: 700;
}
.trending_sec_wrap .trending_item {
  margin-top: 17px;
}
.trending_sec_wrap .trending_thumb {
  width: 90px;
  height: 70px;
  background-color: #f6fafb;
  margin-right: 20px;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.trending_sec_wrap .trending_thumb:hover {
  opacity: 0.6;
  -webkit-transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.trending_sec_wrap .trending_text span {
  color: #252932;
  font-size: 18px;
  font-weight: 500;
}
.trending_sec_wrap .trending_text del {
  color: #b8b9ba;
  font-size: 16px;
  font-weight: 600;
  margin-right: 15px;
}
.trending_sec_wrap .trending_text font {
  color: #9fcb22;
  font-size: 16px;
  font-weight: 600;
}
.trending_sec_wrap .trending_btn .btn {
  color: #9fcb22 !important;
  font-size: 16px;
  font-weight: 800;
}

/* countdown-1 - start  */
.countdown_timer {
  margin-bottom: 1.5rem;
}
.countdown_timer strong, .countdown_timer span {
  display: block;
  line-height: 1;
  text-align: center;
}
.countdown_timer strong {
  width: 3rem;
  height: 3rem;
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 7px;
  line-height: 3rem;
  background-color: #f5f5f5;
  border-radius: 100%;
}
.countdown_timer strong:not(:last-child) {
  margin-right: 0.6rem;
}
.countdown_timer span {
  color: #5a5858;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.countdown_box strong {
  color: #ffffff;
  background-color: #16444c;
}
.countdown_box span {
  color: #272626;
  font-size: 14px;
  font-weight: 500;
}

/* countdown-1 - end  */
/* countdown-2 - start  */
.countdown_timer2 {
  margin-bottom: 1.5rem;
}
.countdown_timer2 strong, .countdown_timer2 span {
  display: block;
  line-height: 1;
  text-align: center;
}
.countdown_timer2 .days_count,
.countdown_timer2 .hours_count,
.countdown_timer2 .minutes_count,
.countdown_timer2 .seconds_count {
  width: 5rem;
  height: 5.5rem;
  margin-bottom: 14px;
  background-color: #ffffff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.countdown_timer2 .days_count:not(:last-child),
.countdown_timer2 .hours_count:not(:last-child),
.countdown_timer2 .minutes_count:not(:last-child),
.countdown_timer2 .seconds_count:not(:last-child) {
  margin-right: 16px;
}
.countdown_timer2 .days_count strong,
.countdown_timer2 .hours_count strong,
.countdown_timer2 .minutes_count strong,
.countdown_timer2 .seconds_count strong {
  color: #525252;
  font-size: 30px;
  font-weight: 900;
}
.countdown_timer2 .days_count span,
.countdown_timer2 .hours_count span,
.countdown_timer2 .minutes_count span,
.countdown_timer2 .seconds_count span {
  color: #8cc82b;
  font-size: 14px;
  font-weight: 700;
  margin-top: 6px;
}

/* countdown - end
================================================== */
.quick_view > .modal-dialog {
  max-width: 1100px !important;
}
.quick_view > .modal-dialog .btn-close {
  top: -17px;
  right: -17px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: 9;
  background-color: black;
  opacity: 1;
}
.quick_view > .modal-dialog .btn-close .fa-times::before {
  color: #ffffff;
}

/* vendor section - start */
.vendor_section h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 20px;
}
.vendor_section p {
  font-size: 18px;
  margin-bottom: 30px;
  font-family: var(--vnil-font-sans);
}

.vendor_image {
  margin-bottom: 45px;
}

/* vendor section - end */
/* vendor service item - start */
.vendor_service_item {
  margin-top: 30px;
  text-align: center;
}
.vendor_service_item .item_icon {
  width: 270px;
  height: 270px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: -15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-size: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
}
.vendor_service_item .item_content {
  z-index: 1;
  padding: 0 30px;
  position: relative;
}
.vendor_service_item .item_title {
  line-height: 1;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 15px;
}
.vendor_service_item p {
  font-size: 16px;
  margin-bottom: 0;
}

/* vendor service item - end */
/* work process - start */
.work_process_section {
  background-size: 100% 80%;
  background-repeat: no-repeat;
  background-position: center top;
}

.work_process_item {
  margin-top: 30px;
  padding: 60px 50px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-box-shadow: 0px 0px 59px 0px rgba(196, 196, 196, 0.15);
          box-shadow: 0px 0px 59px 0px rgba(196, 196, 196, 0.15);
}
.work_process_item:before {
  left: 50%;
  top: 20px;
  content: "";
  width: 85%;
  height: 100%;
  z-index: -1;
  border-radius: 5px;
  position: absolute;
  background-color: #ffffff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-shadow: 0px 0px 117px 0px rgba(196, 196, 196, 0.28);
          box-shadow: 0px 0px 117px 0px rgba(196, 196, 196, 0.28);
}
.work_process_item .item_icon {
  width: 125px;
  height: 125px;
  color: #6cb25f;
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-size: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
}
.work_process_item .item_ttile {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 0;
}

/* work process - end */
/* selling form wrap - start */
.selling_form_wrap {
  padding: 90px;
  margin-bottom: 50px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.selling_form_wrap .form_item input {
  border: 2px solid #C9956B;
  height: 80px;
  border-radius: 4px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 117px 0px rgba(196, 196, 196, 0.28);
          box-shadow: 0px 0px 117px 0px rgba(196, 196, 196, 0.28);
}
.selling_form_wrap .form_item span {
  z-index: 1;
  float: left;
  color: #4c4c4c;
  font-size: 14px;
  padding: 9px 18px;
  position: relative;
  margin-bottom: -19px;
  border: 2px solid #C9956B;
  background-color: #f3f3f3;
  font-family: var(--vnil-font-sans);
}

/* selling form wrap - end */
/* dashboard - start */
.vendor_dashboard_section.bg_gray {
  background-color: #f8f9ff;
}
.vendor_dashboard_section .tab-content {
  padding: 20px 0px 20px 50px;
}
.vendor_dashboard_section .btn {
  padding: 14px 30px;
}

.vd_tab_area {
  z-index: 1;
  margin-top: -95px;
  position: relative;
  border-radius: 3px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.02);
          box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.02);
}
.vd_tab_area .vd_space {
  padding: 35px;
}
.vd_tab_area .vd_mane {
  font-size: 25px;
  margin-bottom: 8px;
}
.vd_tab_area .vd_mail {
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.vd_tab_area .vd_mail a {
  color: #C9956B;
}
.vd_tab_area .vd_mail a:hover {
  color: #C9956B;
  text-decoration: underline;
}
.vd_tab_area .vd_meta > li {
  font-size: 17px;
  font-weight: 500;
  position: relative;
}
.vd_tab_area .vd_meta > li:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
}
.vd_tab_area .vd_meta > li:after {
  top: 14px;
  width: 4px;
  height: 2px;
  content: "";
  right: -2px;
  position: absolute;
  background-color: #000000;
}
.vd_tab_area .vd_meta > li:last-child:after {
  display: none;
}

.vd_image {
  position: relative;
  margin-bottom: 15px;
  display: inline-block;
}
.vd_image .image_wrap {
  width: 144px;
  height: 144px;
  overflow: hidden;
  border-radius: 100%;
}
.vd_image .edit_btn {
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  color: #ffffff;
  position: absolute;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #6684f2;
}

.vd_tab_nav > li:not(:last-child) {
  margin-bottom: 1px;
}
.vd_tab_nav > li > button,
.vd_tab_nav > li > a {
  width: 100%;
  display: block;
  color: #1d1d21;
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  padding: 15px 40px;
  background-color: #f7f7f7;
  border-right: 5px solid #f7f7f7;
}
.vd_tab_nav > li > button:hover, .vd_tab_nav > li > button.active,
.vd_tab_nav > li > a:hover,
.vd_tab_nav > li > a.active {
  border-color: #C9956B;
  background-color: #e9ecfa;
}

.vd_btns_group {
  margin: -10px;
}
.vd_btns_group > li {
  padding: 10px;
}
.vd_btns_group .select_option .nice-select {
  height: 46px;
  font-size: 16px;
  padding: 0 30px;
  padding: 0 25px;
  line-height: 46px;
  border-radius: 45px;
  background-color: #fefefe;
  border: 1px solid #cccfe1;
}
.vd_btns_group .btn {
  width: 100%;
  display: block;
}

.vd_title_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.vd_title_wrap h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
}
.vd_title_wrap .select_option {
  border: 1px solid #C9956B;
  border-radius: 50px;
}
.vd_title_wrap .select_option .nice-select {
  height: 32px;
  color: #777777;
  padding: 0 18px;
  font-size: 14px;
  line-height: 30px;
  border-radius: 45px;
  margin-right: 15px;
  border: 1px solid #e1e1e1;
}
.vd_title_wrap .select_option .nice-select:after {
  right: 0px;
  margin-left: 10px;
}
.vd_title_wrap .select_option .nice-select .list {
  right: 0;
  left: unset;
}

.vd_shadow {
  padding: 35px;
  margin-bottom: 30px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}

.vd_table .table > :not(:last-child) > :last-child > *,
.vd_table .table > :not(caption) > * > * {
  border: none;
  vertical-align: middle;
}
.vd_table .table > :not(caption) > * > * {
  background-color: #fbfcff;
}
.vd_table th {
  color: #232323;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
}
.vd_table td {
  padding: 12px 10px;
}
.vd_table .item_image {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 100%;
}
.vd_table .item_title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
}
.vd_table .item_title > a {
  color: #777777;
}
.vd_table span {
  color: #777777;
  font-size: 14px;
  font-weight: 500;
}
.vd_table strong {
  color: #363232;
}
.vd_table .status_btn {
  color: #ffffff;
  font-size: 12px;
  padding: 6px 15px;
  text-align: center;
  border-radius: 45px;
  display: inline-block;
  text-transform: uppercase;
}
.vd_table .bg_green {
  background-color: #7bb31a;
}
.vd_table .bg_yellow {
  background-color: #fdc106;
}
.vd_table .bg_orange {
  background-color: #ff5501;
}
.vd_table .bg_blue {
  background-color: #017fff;
}
.vd_table .category_list > li {
  font-size: 14px;
  position: relative;
}
.vd_table .category_list > li:not(:last-child) {
  margin-right: 3px;
  padding-right: 3px;
}
.vd_table .category_list > li:after {
  bottom: 0;
  right: -3px;
  content: ",";
  position: absolute;
}
.vd_table .category_list > li:last-child:after {
  display: none;
}
.vd_table .category_list a {
  color: #777777;
  font-weight: 500;
}
.vd_table .category_list a:hover {
  color: #C9956B;
  text-decoration: underline;
}
.vd_table .btns_group {
  margin: -5px;
}
.vd_table .btns_group > li {
  padding: 5px;
}
.vd_table .btns_group button {
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  border-radius: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#overall_sale_chart {
  margin: 65px auto;
  width: 255px !important;
  height: 255px !important;
}

.vd_account_settings .wrap_title {
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 0;
  padding: 22px 60px;
  background-color: #121212;
}
.vd_account_settings .radio_btns_list > li {
  padding: 20px 60px;
}
.vd_account_settings .radio_btns_list > li:nth-child(odd) {
  background-color: #fbfcff;
}
.vd_account_settings .radio_btns_list > li:not(:last-child) {
  border-bottom: 1px solid #eeeeee;
}

/* dashboard - end */
/* dashboard - start */
.vendor_profile_section {
  background-color: #f8f9ff;
}

.vendor_profile {
  background-color: #ffffff;
}
.vendor_profile .vendor_content_wrap {
  padding: 60px 70px;
  background-color: #d0d0d0;
}
.vendor_profile .image_wrap {
  width: 300px;
  height: 300px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 242px;
          flex: 0 0 242px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  border-radius: 100%;
}
.vendor_profile .description_wrap p {
  color: #272525;
  font-size: 21px;
}
.vendor_profile.bg_black .vendor_content_wrap {
  background-color: #353535;
}
.vendor_profile.bg_black .description_wrap p {
  color: #ffffff;
}
.vendor_profile .info_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 70px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.vendor_profile .btn {
  padding: 15px 40px;
}
.vendor_profile h2 {
  color: #222222;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
}
.vendor_profile h3 {
  line-height: 1;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.vendor_profile .meta_list {
  padding-top: 8px;
}
.vendor_profile .meta_list > li {
  position: relative;
}
.vendor_profile .meta_list > li:not(:last-child) {
  margin-right: 12px;
  padding-right: 12px;
}
.vendor_profile .meta_list > li:after {
  top: 50%;
  width: 2px;
  right: -1px;
  height: 18px;
  content: "";
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #C9956B;
}
.vendor_profile .meta_list > li:last-child:after {
  display: none;
}
.vendor_profile .right_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.vendor_profile .midea_links:not(:last-child) {
  margin: 0 30px 0 0;
}

/* dashboard - end */
/* ================================================== 
* Project Name   :  Organic - Ecommerce Template
* File           :  Responsive CSS Base
* Version        :  1.0.0
* Author         :  JThemes (https://themeforest.net/user/jthemes)
* Developer		 :	Imran Hosain
* css code for responsive layout To make Responsive

==================================================

*	  1-media screen and (max-width: 1600px)
*	  2-media screen and (max-width: 1300px)
*	  3-media screen and (max-width: 1200px)
*     4-media screen and (max-width: 1080px)
*	  5-media screen and (max-width: 992px)
*	  6-media screen and (max-width: 768px)
*	  7-media screen and (max-width: 680px)
*	  8-media screen and (max-width: 575px)
*	  9-media screen and (max-width: 480px)
*	  10-media screen and (max-width: 320px)
*/
/* ================================================== */
/* 1 - media screen and (max-width: 1600px) - start */
@media screen and (max-width: 1599px) {
  .banner_right_thumb {
    width: 300px;
  }

  .category_left_thumb,
.banner_left_img,
.sale_right_thumb,
.quality_right_thumb,
.quality_left_thumb,
.product_ctg_right_thumb,
.product_ctg_left_thumb,
.team_right_thumb,
.team_left_thumb,
.product9_right_thumb,
.contact_info_thumb_left,
.contact_info_thumb_right,
.product10_left_thumb3,
.product10_right_thumb4,
.product10_back_thumb1,
.product10_back_thumb2,
.banner2_right_thumb,
.trend_left_thumb,
.product3_left_thumb,
.product3_right_thumb,
.quality2_left_thumb,
.quality2_righttop_thumb,
.quality2_rightbottom_thumb,
.store_right_side_img,
.store_left_side_img2,
.product7_cont_gallery,
.category_right_thumb,
.fearure_right_side_img,
.product_item_top_thumb,
.product_item_right_thumb,
.testimonial_back_img1,
.testimonial_back_img2 {
    display: none;
  }

  .store_left_side_img {
    width: 600px;
  }

  .product_item_bottom_thumb {
    width: 400px;
  }

  .blog_content_text h2 {
    font-size: 25px;
  }
}
/* 1 - media screen and (max-width: 1600px) - end */
/* media screen and (max-width: 1400px) - start */
@media screen and (max-width: 1399px) {
  .container {
    max-width: 1200px;
  }

  .product7_cont_wrap {
    width: 100%;
    padding-right: 0px;
  }

  .home_3_slide .product7_cont,
.home_3_slide .banner_desc {
    width: 100%;
  }

  .product7_cont .banner_sub_title2 h6 {
    top: 14px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .product7_slide_cont_wrap {
    display: none;
  }

  .sub_title_bg {
    margin: auto;
  }

  .quality_middle_gallery2 img {
    width: 42%;
  }

  .quality_section_wrap2 .quality_content2_img2 {
    right: 5px;
  }

  .quality_section_wrap2 .quality_content2_img1 {
    left: 5px;
  }

  .banner_2 .banner_desc {
    max-width: 600px;
  }

  .home3_product7_desc .banner_desc {
    max-width: 100%;
  }

  .fact_content::after {
    display: none;
  }
}
/* media screen and (max-width: 1400px) - start */
/* 2 - media screen and (max-width: 1300px) - start */
@media screen and (max-width: 1299px) {
  .banner_section_item {
    padding: 150px 0px;
  }

  .banner_right_thumb,
.banner_left_thumb {
    display: none;
  }

  .sale_item .sale_big_title h3,
.sale_item .sale_sm_title h3 {
    font-size: 25px;
  }
  .sale_item .sale_sm_title {
    left: 0px;
    padding: 0px 25px;
  }

  .deal_item_txt .deal_title {
    max-width: 18rem;
  }
  .deal_item_txt .deal_title h3 {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .deal_item_txt3 {
    right: 40px;
  }
  .deal_item_txt3 .deal_title h3 {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .offer_delivery_wrap {
    padding: 50px 0px;
  }

  .banner_title2 h1 {
    font-size: 3rem;
  }

  .product_section_2_wrap .product_section_title h2 {
    font-size: 40px;
  }

  .trend_top_title h2,
.product_top_title h2 {
    font-size: 40px;
  }

  .prdc_ctg_product_img {
    width: 5rem;
    height: 5rem;
    background-color: transparent;
    cursor: pointer;
  }

  .rating_wrap .shop_review_text {
    margin-left: 2px;
  }

  .prdc_ctg_product_title h5 {
    font-size: 14px;
    font-weight: 500;
  }

  .product_sec_content_wrap .team_top_content {
    margin-top: 30px;
  }

  .quality_section2 {
    padding-bottom: 70px;
  }

  .quality_section_wrap2 h2 {
    font-size: 40px;
  }

  .sale2_section_wrap {
    padding: 100px 0px;
  }

  .sale2_title h2 {
    font-size: 40px;
  }

  .blog_top_title h2 {
    font-size: 40px;
  }

  .instagram_2 .instagram_title {
    font-size: 40px;
  }

  .banner_title h1 {
    font-size: 3rem;
  }

  .banner4_slide_arrow_cont {
    display: none;
  }

  .product7_cont h2 {
    font-size: 2.5rem;
  }

  .sec_space_xxlarge {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
/* 2 - media screen and (max-width: 1300px) - end */
/* 3 - media screen and (max-width: 1200px) - start */
@media screen and (max-width: 1199px) {
  .sec_space_xxxlarge {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .sec_space_xxlarge {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .banner_title h1 {
    font-size: 3rem;
  }

  .category_title h2 {
    font-size: 1.8rem;
  }

  .product_sec_title {
    font-size: 1.8rem;
  }

  .product_image {
    width: 9rem;
  }

  .quality_title h4 {
    font-size: 1rem;
    font-weight: 600;
  }

  .quality_desc {
    font-size: 0.6rem;
  }

  .quality_middle_gallery {
    width: 250px;
    margin: auto;
  }

  .product_ctg_title h2 {
    font-size: 1.8rem;
  }

  .offer_title h2 {
    font-size: 1.8rem;
  }

  .testimonial_comment_text h3 {
    font-size: 1.8rem;
  }

  .team_top_title h2 {
    font-size: 1.8rem;
  }

  .gallery_lft_title h2 {
    font-size: 1.8rem;
  }

  .offer_item_title h3 {
    font-size: 1rem;
  }

  .banner4_section_wrap .banner4_title h1 {
    font-size: 60px;
    font-weight: 600;
  }

  .banner10_img {
    width: 500px;
  }

  .product_item_bottom_thumb {
    width: 370px;
  }

  .testimonial3_sec_wrap .testimonial3_text .testimonial_desc {
    max-width: 800px;
    margin: auto;
  }

  .product_layout3_content {
    margin-bottom: 20px;
  }

  .section-pad-lg {
    padding: 80px 0px;
  }

  .breadcrumb_title h2 {
    font-size: 40px;
  }

  .cart_table {
    overflow-x: scroll;
  }
  .cart_table .table {
    min-width: 1100px;
  }

  .compare_content_wrap {
    overflow-x: scroll !important;
  }
}
/* 3 - media screen and (max-width: 1200px) - end */
/* - media screen and (max-width: 1120px) - start */
@media screen and (max-width: 1120px) {
  .top_inner_searchbar input {
    width: 420px;
  }

  .footer_inner_choose_content,
.footer_inner_info_content,
.footer_inner_acct_content {
    position: relative;
  }
  .footer_inner_choose_content::after,
.footer_inner_info_content::after,
.footer_inner_acct_content::after {
    content: "";
    top: -31px;
    right: 0px;
    height: 350px;
    position: absolute;
  }
}
/* media screen and (max-width: 1080px) - start */
@media screen and (max-width: 1079px) {
  .top_inner_searchbar input {
    width: 390px;
  }

  .sale_item .sale_big_title h3,
.sale_item .sale_sm_title h3 {
    font-size: 20px;
  }
  .sale_item .sale_big_title span,
.sale_item .sale_sm_title span {
    font-size: 16px;
    padding-right: 12px;
  }

  .prdc_ctg_inner_product {
    padding: 37px 42px;
  }

  .testimonial_comment_text h3 {
    font-size: 1.4rem;
  }

  .testimonial_comment p {
    width: 30rem;
    font-size: 1rem;
    line-height: 30px;
    margin: 0px 10px;
  }

  .card-title {
    font-size: 16px;
  }

  .team_inner_content .card {
    max-width: 340px;
    margin: auto;
  }

  .service_content_icon {
    width: 4rem;
    height: 4rem;
  }

  .service_content_wrap2 .service_content_title {
    width: 150px;
    font-size: 15px;
    font-weight: 600;
  }

  .prdc_ctg_product_img {
    width: 4rem;
    height: 4rem;
  }

  .quality_middle_gallery2 img {
    width: 38%;
  }

  .quality_section_wrap2 .quality_content2_img4, .quality_section_wrap2 .quality_content2_img3 {
    bottom: 12%;
  }
}
/* 4 - media screen and (max-width: 1010px) - start */
@media screen and (max-width: 1010px) {
  .footer_inner_choose_content,
.footer_inner_info_content,
.footer_inner_acct_content {
    position: relative;
  }
  .footer_inner_choose_content::after,
.footer_inner_info_content::after,
.footer_inner_acct_content::after {
    content: "";
    top: -60px;
    right: 0px;
    height: 378px;
    position: absolute;
  }
}
/* 4 - media screen and (max-width: 992px) - start */
@media screen and (max-width: 991px) {
  .sec_space_xxxlarge {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .sec_space_large {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .sec_space_xxlarge {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .banner_section_item {
    padding: 50px 0;
  }

  .top_inner_content, .top_inner_searchbar, .logo, .header_top {
    border: none !important;
  }

  .top_inner_searchbar i {
    top: 50px;
    right: 0px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding: 15px;
    color: #ffffff;
    border-radius: 100%;
    cursor: pointer;
    background-color: #2e2e2e;
  }

  .navbar-nav .nav-item::after {
    display: none;
  }

  .navbar3_bottom .navbar-toggler {
    color: rgba(0, 0, 0, 0.55);
    border-color: rgba(0, 0, 0, 0.1);
    border: none;
    outline: none;
    top: 50%;
    left: 0px;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .sale_section {
    padding: 30px 0px;
  }

  .sale_item {
    max-width: 85%;
    margin: auto;
  }

  .sale_item_content {
    margin-top: 30px;
  }

  .sale_item .sale_big_title {
    top: 60%;
    left: 136px;
  }

  .sale_item_arrow {
    bottom: 20px;
    right: 117px;
  }

  .sale_item .sale_sm_title {
    left: 20px;
  }

  .deal_section {
    padding: 40px 0px;
  }

  .deal_item_content {
    margin-top: 25px;
  }

  .nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .prdc_ctg_content {
    text-align: center;
  }
  .prdc_ctg_content .prdc_ctg_sub_title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .prdc_ctg_content .prdc_ctg_title h2 {
    font-size: 1.8rem;
  }

  .prdc_ctg_item_content .nav-item {
    margin: 10px;
  }

  .quality_content {
    margin-top: 25px;
  }

  .quality_top_title h2 {
    font-size: 1.8rem;
  }

  .product_ctg_media_thumb {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }

  .offer_item_content {
    padding: 70px 38px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }

  .offer_item_expr_btn .btn {
    margin: auto;
  }

  .offer_item_qty_prog_cnt {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .product_ctg_btn {
    margin-bottom: 60px;
  }

  .testimonial_layout_1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .testimonial_layout_1 .testimonial_text {
    text-align: center;
  }

  .testimonial_comment_text h3 {
    width: 100%;
  }

  .product_sec_content {
    text-align: center;
  }
  .product_sec_content .product_sec_sub_title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .product_ctg_content_wrap {
    background: none;
  }

  .ul_li_right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .gallery_lft_content {
    text-align: center;
  }
  .gallery_lft_content .gallery_lft_sub_title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gallery_lft_content .gallery_lft_title {
    max-width: 100%;
  }
  .gallery_lft_content .gallery_lft_desc {
    padding: 10px 100px;
  }
  .gallery_lft_content .gallery_lft_btn {
    margin-bottom: 30px;
  }

  .gallery_end_content {
    margin: 30px auto;
  }

  .service_inner_content {
    margin-top: 20px;
  }

  .offer_delivery_title {
    font-size: 1rem;
  }

  .offer_delivery_btn .custom_btn {
    padding: 0rem;
  }

  .footer_section_wrap::before {
    display: none;
  }

  .footer_top_logo {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer_top_social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .footer_bootom_privicy,
.footer_bootom_terms {
    padding-right: 1.5rem !important;
  }

  .footer_bootom_privicy p:after,
.footer_bootom_terms p:after,
.footer_bootom_refunds p:after {
    display: none;
  }

  .banner_title {
    width: 600px;
  }

  .banner_title2 {
    max-width: 570px;
  }

  .product_section_title h2,
.trend_top_title h2,
.quality_top_title2 h2,
.sale2_title h2 {
    font-size: 30px;
  }

  .product_section_content .product_sec_sub_title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }

  .product_section3_wrap .product_ctg_content_3 {
    margin: 0px 10px;
  }

  .prdc_ctg_product_img {
    width: 6rem;
    height: 6rem;
  }

  .instagram_2 .instagram_title {
    font-size: 30px;
  }

  .trend_inner_content {
    margin-top: 10px;
  }

  .product_section3_wrap {
    padding: 10px;
  }

  .product_sec_content_wrap {
    padding: 0px;
  }

  .product_sec3_btn {
    margin-bottom: 50px;
  }

  .quality_middle_gallery2 {
    display: none;
  }

  .quality_inner_content2 > div {
    position: static !important;
    margin: 20px 0;
  }

  .sale2_desc {
    width: 650px;
  }

  .text-lg-end {
    margin-bottom: 15px;
  }

  .trend_section_wrap {
    margin-left: 0rem;
  }

  .sale2_desc {
    width: 100%;
    padding-right: 20px;
  }

  .sale2_section_wrap .product_sec_sub_title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .countdown_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .sale2_sub_title h6 {
    top: 13px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .testimonial3_sec_wrap .testimonial3_text .testimonial_desc {
    font-size: 25px;
  }

  .footer_inner_choose_content::after,
.footer_inner_info_content::after,
.footer_inner_acct_content::after {
    display: none;
  }

  .footer_inner_info_content,
.footer_inner_acct_content {
    padding-left: 0px;
  }

  .navbar_toggler3 .navbar-toggler-icon {
    background-color: #C9956B !important;
  }

  .service_section3 {
    padding-top: 100px;
  }

  .product_tabnav_1 {
    margin-bottom: 20px;
  }

  .product_layout_content {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .product_sale_wrap {
    margin-top: 40px;
  }

  .product_layout_style4 .product_layout_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .section-pad-md {
    padding: 50px 0px;
  }

  .store_content_text {
    max-width: 100%;
    text-align: center;
  }
  .store_content_text .store_desc {
    max-width: 100%;
    padding: 0px 80px;
  }

  .store_title h2 {
    font-size: 20px;
  }

  .store_gallery_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 50px;
  }

  .store_gallery_testimonial {
    bottom: -130px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }

  .collection_cont_wrap {
    max-width: 100%;
    padding: 0px 50px;
    text-align: center;
  }

  .collection_sec_wrap {
    background-size: auto;
  }

  .collection_title h2 {
    font-size: 25px;
  }

  .collection_btn a .btn {
    margin-top: 60px;
  }

  .collection_desc,
.store_desc {
    max-width: 100%;
    padding: 0px 20px;
    text-align: center;
  }

  .store3_content {
    max-width: 100%;
  }

  .store_3_sec {
    padding: 100px 0px;
  }

  .store3_content_text {
    margin-top: 40px;
    text-align: center;
  }

  .store3_item_content li {
    text-align: left;
  }

  .store3_item_cont_thumb {
    max-width: 350px;
    margin: auto;
  }

  .signup_news_wrap {
    margin-top: 40px;
  }

  .product7_cont .banner_sub_title2 h6 {
    top: 14px;
  }

  .product7_cont h2 {
    font-size: 30px;
  }

  .signup_news_wrap {
    max-width: 100%;
  }

  .store_title h2 {
    font-size: 20px;
  }

  .sale3_content {
    margin-bottom: 10px;
  }

  .store_thumb,
.sale_pro_thumb {
    max-width: 500px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: auto;
    padding-bottom: 30px;
  }

  .product_layout3_content {
    margin-top: 10px;
  }

  .sale3_sec .sale3_content {
    margin-top: 10px;
  }

  .sale2_content_wrap {
    margin-top: 20px;
    text-align: center;
  }

  .sale2_sub_cont h6 {
    top: 16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .countdown_box2 {
    margin: auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .store_right_thumb {
    margin-top: 20px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .testimonial2_title {
    font-size: 30px;
  }

  .product_item_bottom_thumb {
    display: none;
  }

  .service_inner_wrap {
    overflow-x: scroll;
  }

  .banner4_section_wrap .banner4_title h1 {
    font-size: 40px;
    font-weight: 500;
  }

  .banner10_img {
    width: 350px;
  }

  .blog_right_side_img {
    display: none;
  }

  .about_header {
    height: 126px;
  }

  .about_section_content .product_sec_sub_title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about_section_content .product_section_title {
    width: 100%;
    margin: auto;
  }
  .about_section_content .product_section_subtitle p {
    text-align: center;
  }
  .about_section_content .product_section_desc {
    text-align: center;
    padding: 0px 20px;
  }
  .about_section_content .product_section_btn {
    text-align: center;
  }

  .product_gallery {
    text-align: center;
  }

  .product_section_content {
    margin-top: 40px;
    padding: 0px 15px;
  }

  .product_section_2_wrap .product_section_title h2 {
    font-size: 30px;
  }

  .product_section_2_wrap .product_section_subtitle p {
    margin-left: 0px;
  }

  .product_sec_sub_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .product_section_subtitle,
.product_section_desc {
    margin: auto;
  }

  .product_section_subtitle p::before {
    display: none;
  }

  .category_top_btn_cont {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .category_title h2 {
    font-size: 30px;
  }

  .category_slick .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .product_tabnav_4 .nav-item {
    margin-top: 15px;
  }

  .product_top_title h2 {
    font-size: 30px;
  }

  .product8_gallery {
    margin: 0 auto;
  }

  .product8_sec_wrap .banner_sub_title3 h6 {
    top: 42px;
    left: 110px;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }

  .product7_cont {
    text-align: center;
    margin: 0 auto;
  }

  .banner_sub_title3 {
    margin-top: 30px;
  }

  .store_item_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .store_btn {
    text-align: center;
  }

  .banner_title h2 {
    font-size: 25px;
    margin-top: 20px;
  }

  .team_top_title h2 {
    font-size: 30px;
  }

  .footer_top_social {
    margin-top: 20px;
  }

  .product9_gallery {
    margin: auto;
  }

  .product9_sec_cont {
    margin-top: 30px;
  }

  .product9_section_title {
    text-align: center;
  }

  .product9_sec_cont .product9_section_title h2 {
    font-size: 30px;
  }

  .product9_section_desc {
    text-align: center;
  }

  .product9_inner_cont {
    margin: 0px 30px;
  }

  .fact_content .fact_number {
    font-size: 30px;
  }
  .fact_content .fact_title {
    font-size: 10px;
  }

  .blog_content_thumb {
    width: 100%;
  }

  .blog_content_text h2 {
    font-size: 30px;
  }

  .blog_desc p {
    font-size: 16px;
    padding: 0px 70px;
  }

  .blog_grid_wrap .grid_title {
    font-size: 21px;
  }

  .blog_details .blog_title {
    font-size: 30px;
  }

  .recent_post_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: start !important;
  }

  .blog_grid_sec {
    padding: 50px 0px;
  }

  .contact_us_tetimonial {
    text-align: center;
  }

  .contact_top_desc {
    margin-top: 30px;
  }

  .coupon_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .coupon_wrap button {
    margin-top: 15px;
  }

  .compare_section {
    padding: 70px 0px;
  }

  .contact_us_sec,
.address_sec {
    padding: 50px 20px;
  }

  .contact_us_info {
    padding: 0px 20px;
  }

  .contact_us_tetimonial .tetimonial_desc {
    font-size: 30px;
    font-weight: 700;
  }

  .faqs_sec_cont2 {
    margin-top: 50px;
  }

  .product10_reviews {
    padding: 40px 0px;
  }

  .sec_inner_bottom_130 {
    padding-bottom: 70px;
  }

  .rating_wrap {
    margin-top: 30px;
  }

  .product10_wrap .product10_thumb {
    width: 100%;
    height: auto;
    background-color: transparent;
  }

  .product10_video_player,
.product10_title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .product10_title {
    margin-top: 15px;
  }

  .product10_wrap .product_detail_title {
    font-size: 30px;
  }

  .vendor_profile .image_wrap {
    max-width: 100%;
    margin: 10px auto;
  }

  .vendor_dashboard_section .tab-content {
    padding: 100px 0 100px 0px;
  }
}
/* 4 - media screen and (max-width: 992px) - end */
/* 5 - media screen and (max-width: 768px) - start */
@media screen and (max-width: 767px) {
  .inner_sec_sm {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .navbar_user_icon .fa-search,
.navbar_user_icon .fa-times {
    width: 2.3rem;
    height: 2.3rem;
    line-height: 2.3rem;
    text-align: center;
    color: #C9956B;
    border: 1px solid #C9956B;
    border-radius: 100%;
  }
  .navbar_user_icon .fa-user,
.navbar_user_icon .fa-heart {
    width: 2.3rem;
    height: 2.3rem;
    color: #2e2e2e;
    line-height: 2.3rem;
    text-align: center;
    border-radius: 100%;
    background-color: #eeeeee;
  }
  .navbar_user_icon .fa-shopping-bag {
    width: 2.3rem;
    height: 2.3rem;
    color: #ffffff;
    line-height: 2.3rem;
    text-align: center;
    border-radius: 100%;
    background-color: #C9956B;
  }
  .navbar_user_icon .fa-shopping-bag .badge {
    color: #ffffff;
    background-color: #191919 !important;
    padding: 7px 10px;
  }

  .banner_sub_title h6 {
    font-size: 14px;
  }

  .banner_title h1 {
    font-size: 2rem;
  }

  .banner_search_bar input {
    width: 450px;
  }

  .category_section {
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .sale_item_content {
    margin-top: 25px;
  }

  .sale_item .sale_sm_title {
    width: 215px;
  }

  .prdc_ctg_product_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }

  .prdc_ctg_product_text {
    margin-top: 20px;
  }

  .prdc_ctg_product_title h5 {
    font-size: 15px;
  }

  .prdc_ctg_desc p {
    font-size: 16px;
  }

  .quality_section {
    margin-top: 50px;
  }

  .offer_delivery_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .offer_delivery_btn {
    margin-top: 10px;
  }

  .offer_delivery_btn .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .service_content_title h6 {
    margin-top: 10px;
  }

  .product_ctg_content_wrap {
    background-image: none;
  }

  .product_ctg_desc p {
    font-size: 16px;
    line-height: 25px;
  }

  .product_ctg_btn .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .product_section3_wrap .product_ctg_content_3 .product_action_btns {
    top: 30%;
    left: 50%;
  }

  .product_ctg_media_title {
    font-size: 13px;
  }

  .item_image_content {
    width: 225px;
    height: 225px;
  }

  .gallery_lft_desc p {
    font-size: 14px;
    line-height: 25px;
  }

  .gallery_mid_desc p {
    font-size: 14px;
    line-height: 25px;
  }

  .gallery_lft_btn .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .footer_inner_choose .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .banner_section_item {
    background-size: auto;
  }

  .banner_title {
    width: 100%;
    padding-right: 30px;
  }

  .banner_title2 h1 {
    font-size: 2.5rem;
  }

  .banner_2 .banner_desc p {
    font-size: 16px;
    line-height: 25px;
  }

  .banner_btn .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .service_inner_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding: 0px 5px;
  }

  .service_content_wrap2 .service_content_title {
    font-size: 14px;
    margin-top: 10px;
  }

  .product_section3_wrap .product_ctg_content_3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .product_section_btn .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .trend_section_wrap {
    background-size: auto;
  }

  .sale2_section_wrap {
    background-size: auto;
  }

  .sale2_sub_title h6 {
    font-size: 14px;
  }

  .sale2_btn .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .sale2_desc p {
    font-size: 14px;
  }

  .quality_section_wrap2 h2 {
    font-size: 35px;
  }
  .quality_section_wrap2 h4 {
    font-size: 15px;
    font-weight: 500;
  }
  .quality_section_wrap2 p {
    font-size: 15px;
    font-weight: 400;
  }

  .trend_inner_text h4 {
    font-size: 20px;
    text-align: left;
  }
  .trend_inner_text a {
    margin-left: -39px;
  }

  .product_sec3_btn .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .testimonial3_sec_wrap .testimonial3_text .testimonial_desc {
    max-width: 380px;
    font-size: 16px;
  }

  .footer_bootom_privicy_cont {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: start !important;
  }

  .banner_btn .btn {
    font-size: 14px;
    padding: 10px 15px !important;
    text-align: center;
  }

  .product_section .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .store_desc p {
    line-height: 25px;
  }

  .collection_desc p {
    font-size: 15px;
    line-height: 25px;
  }

  .collection_title number {
    top: -73px;
    left: 50%;
    font-size: 150px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .collection_btn {
    margin-top: -50px;
  }

  .collection_btn .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .slide_item_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }

  .banner4_section_wrap .banner4_sub_cont h6 {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }

  .banner4_section_wrap .banner4_desc {
    font-size: 16px;
  }

  .banner4_sub_bg {
    margin: auto;
  }

  .product_layout3_content {
    width: 100%;
  }

  .banner4_section_wrap .banner4_title h1 {
    font-size: 2.3rem;
    font-weight: 500;
  }

  .banner4_btn .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .banner10_img {
    width: 300px;
  }

  .sale3_sec .sale3_content .sale3_title {
    width: 100%;
    font-size: 20px;
    text-align: center;
  }

  .sale3_sec .sale3_content2 .sale3_title {
    width: 100%;
    font-size: 20px;
    text-align: center;
  }

  .product_items_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .store_thumb,
.sale_pro_thumb {
    max-width: 300px;
  }

  .store_right_thumb {
    max-width: 300px;
  }

  .blog_grid_wrap .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .about_header {
    height: 90px;
  }

  .product7_cont {
    width: 100%;
    text-align: center;
  }

  .banner_title3 {
    max-width: 100%;
  }

  .banner_sub_title3 {
    display: none;
  }

  .store_btn .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .product_section_2 {
    padding: 70px 0px;
  }

  .product8_sec {
    padding: 70px 0px;
  }

  .product_tabnav_4 {
    margin: 2rem 0rem !important;
  }

  .team_section {
    padding: 10px 0px;
  }

  .service_setion {
    padding: 20px 0px;
  }

  .instagram_style_1 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .footer_top_subs input {
    width: 400px;
  }
  .footer_top_subs button {
    padding: 20px 10px;
  }

  .footer_inner_choose_content {
    margin-right: 30px;
  }

  .footer_inner_choose {
    margin-bottom: 15px;
  }

  .product9_sec_wrap {
    padding: 80px 0px;
    margin-bottom: 0px;
  }

  .testimonial3_sec {
    padding: 30px 0px;
  }

  .fact_section {
    padding: 60px 13px;
  }

  .facts_cont_wrap {
    overflow-x: scroll;
  }

  .blog_details {
    padding: 40px 30px;
  }

  .blog_details .blog_image3 {
    margin-left: 0px;
  }

  .blog_details .blog_testimonial span {
    font-size: 20px;
    line-height: 35px;
  }

  .blog_details .text_style_wrap .text_style_item li {
    font-size: 15px;
  }
  .blog_details .text_style_wrap .text_style_item li:not(:first-child) {
    margin-top: 20px;
  }

  .comment_form_area .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .blog_grid_wrap .grid_desc {
    font-size: 16px;
  }

  .blog_grid_text .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .blog_grid_wrap .grid_title {
    font-size: 20px;
  }

  .contact_top_desc {
    font-size: 16px;
  }

  .contact_top_cont .btn {
    font-size: 14px;
    padding: 10px 15px !important;
  }

  .contact_us_tetimonial .tetimonial_desc {
    font-size: 22px;
    line-height: 30px;
  }

  .contact_top_desc {
    text-align: center;
  }

  .faqs_sec_cont1 .accordion-body {
    font-size: 16px;
  }

  .product_tabnav_3 .nav-item {
    margin-top: 10px;
  }

  .shop_list_sec {
    margin-top: 20px;
  }

  .list_layout_wrap .list_layout_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .shop_testimonial_text {
    max-width: 100%;
    margin-top: 10px;
  }

  .footer_section_wrap:after {
    display: none;
  }

  .shop_testimonial_text .testimonial_desc {
    font-size: 16px;
  }

  .vendor_service_item .item_title {
    font-size: 16px;
  }

  .section_title .title_text {
    font-size: 25px;
  }

  .work_process_item .item_ttile {
    font-size: 20px;
  }

  .vd_tab_area {
    margin-top: -44px;
  }

  .vendor_section h2 {
    font-size: 25px;
  }

  .vendor_section p {
    font-size: 16px;
  }

  .vendor_profile .info_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 5px;
  }

  .left_wrap h2 {
    font-size: 20px;
  }

  .vendor_profile .btn {
    padding: 15px 10px;
  }

  .vendor_profile .vendor_content_wrap {
    padding: 60px 20px;
  }

  .vendor_profile .description_wrap p {
    font-size: 16px;
  }

  .footer_inner_info_content,
.footer_inner_acct_content,
.footer_inner_choose_content {
    margin-bottom: 30px;
  }
}
/* 5 - media screen and (max-width: 768px) - end */
/* 6 - media screen and (max-width: 576px) - start */
@media screen and (max-width: 575px) {
  .sec_space_xxxlarge {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .sec_space_xxlarge {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  div#main_search_collapse {
    position: fixed;
    width: 100%;
    top: 80px;
  }

  .banner_section_item {
    padding: 100px 0px;
  }

  .banner_sub_title h6 {
    font-size: 0.8rem;
  }

  .banner_title {
    padding-right: 0px;
  }

  .banner_title h1 {
    font-size: 1.5rem;
  }

  .banner_btn .btn,
.product_section_btn .btn,
.sale2_btn .btn,
.home2_product_sec .btn {
    padding: 8px 15px !important;
  }

  .quality_middle_gallery {
    width: 205px;
    margin: auto;
  }

  .sale_item {
    max-width: 79%;
    margin: auto;
  }

  .service_setion {
    margin-bottom: 40px;
  }

  .banner_title2 {
    margin-right: 50px;
  }
  .banner_title2 h1 {
    font-size: 2rem;
  }

  .banner_2 .banner_desc {
    margin-right: 50px;
  }

  .trend_section_wrap {
    padding-top: 100px;
    background-size: cover;
  }

  .trend_inner_text {
    top: 110px;
    left: 85px;
  }

  .product_ctg_content_3 {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .prdc_ctg_product_img {
    width: 7rem;
    height: 7rem;
  }

  .prdc_ctg_product_title h5 {
    font-size: 23px;
  }

  .quality_section_wrap2 .quality_content2_img1 {
    top: 5%;
    left: 30px;
  }

  .quality_section_wrap2 .quality_content2_img2 {
    top: 30%;
    right: 30px;
  }

  .quality_section_wrap2 .quality_content2_img3 {
    left: 30px;
  }

  .quality_section_wrap2 .quality_content2_img4 {
    bottom: 0%;
    right: 30px;
  }

  .blog_content_text h2 {
    font-size: 20px;
  }

  .sale2_sub_title h6 {
    font-size: 12px;
  }

  .banner_section_item.banner_sec_3 {
    margin: auto;
    max-width: 100%;
    text-align: center;
  }

  .banner_sub_title2 {
    display: none;
  }

  .banner_style3 .banner_desc {
    margin-right: 0px !important;
  }

  .service_section3 {
    padding-top: 50px;
  }

  .service_content_3 .service_inner_content3 {
    width: 130px;
    height: 130px;
    font-size: 13px;
    font-weight: 500;
  }

  .service_content_3 .service_content h6 {
    font-size: 14px;
    font-weight: 600;
  }

  .service_content_3 .service_content span {
    font-size: 13px;
  }

  .best_product_cont {
    margin-top: 27px;
  }

  .collection_title number {
    top: -27px;
    left: 50%;
    font-size: 100px;
  }

  .store_gallery_right {
    display: none;
  }

  .collection_cont_wrap {
    padding: 0px 10px;
  }

  .store3_item_cont_thumb {
    max-width: 200px;
  }

  .store_content_text .store_desc {
    padding: 0px 20px;
  }

  .banner4_section_wrap .banner4_title h1 {
    font-size: 1.8rem;
    font-weight: 500;
  }

  .testimonial2_title {
    font-size: 20px;
  }

  .section-pad-lg {
    padding: 50px 0px;
  }

  .drop_bars {
    margin-right: 10px !important;
  }

  .top_inner_logo a {
    max-width: 105px;
  }

  .breadcrumb_title h2 {
    font-size: 25px;
  }

  .product_section_2_wrap .product_section_title h2 {
    font-size: 25px;
  }

  .category_title h2 {
    font-size: 25px;
  }

  .banner_sub_title3 {
    opacity: 0;
  }

  .store_item_img {
    width: 55px;
    height: 55px;
  }

  .store_item_title {
    max-width: 120px;
  }

  .store_item_title span {
    font-size: 14px;
    font-weight: 500;
  }

  .product_top_title h2 {
    font-size: 25px;
  }

  .product7_cont h2 {
    font-size: 25px;
  }

  .team_top_title h2 {
    font-size: 1.4rem;
  }

  .instagram_2 .instagram_title {
    font-size: 25px;
  }

  .product8_sec_wrap .nav-link {
    width: 283px;
    height: 55px;
    font-size: 14px;
    font-weight: 500;
  }

  .product8_sec_wrap .product8_gallery {
    width: 300px;
  }

  .store_btn .btn {
    padding: 8px 16px !important;
  }

  .product9_gallery {
    width: 300px;
    height: 370px;
  }

  .product9_sec_cont .product9_section_title h2 {
    font-size: 20px;
  }

  .fact_content:not(:last-child) {
    margin-right: 30px;
  }

  .fact_content .fact_number {
    font-size: 17px;
  }

  .blog_details .blog_title {
    font-size: 25px;
  }

  .blog_details .text_style_wrap .text_style_title {
    font-size: 25px;
  }

  .blog_details .commments_cont h3 {
    font-size: 25px;
  }

  .share_socials li {
    margin-top: 10px;
  }

  .comment_area_title {
    font-size: 25px;
  }

  .blog_details .comment_form_area .btn {
    font-size: 13px;
  }

  .instagram_style_1 {
    padding-top: 0px;
    padding-bottom: 70px;
  }

  .coupon_wrap .form_item input {
    padding: 20px 15px;
  }

  .product10_wrap .product_detail_title {
    font-size: 25px;
  }

  .comment_form_area .comment_title {
    font-size: 25px;
  }
}
/* 6 - media screen and (max-width: 576px) - end */
@media (min-width: 576px) {
  .quick_view .modal-dialog {
    max-width: 1400px;
  }
}
/* media screen and (max-width: 480px) */
@media (max-width: 479px) {
  .navbar-brand {
    max-width: 100px;
  }

  .navbar-light .navbar-toggler {
    top: 50%;
    left: 100px;
  }

  .banner_section_item {
    padding: 70px 0px;
  }

  .banner_title h1 {
    font-size: 1.2rem;
  }

  .banner_sub_title h6 {
    top: 33%;
    left: 50%;
    font-size: 14px;
    font-weight: 400;
  }

  .banner_search_bar input {
    width: 350px;
  }

  .banner_search_bar .nice-select {
    background-color: transparent !important;
  }

  .select_option .current {
    display: none;
  }

  .sale_item .sale_big_title {
    top: 60%;
    left: 80px;
  }

  .product_tabnav_1 .nav-item {
    margin-top: 10px;
  }

  .section-pad-sm {
    padding-bottom: 0px;
  }

  .product_sec_title {
    font-size: 1.4rem;
  }

  .gallery_content_wrap {
    padding-bottom: 0px;
  }

  .gallery_lft_content .gallery_lft_desc {
    padding: 10px 50px;
  }

  .offer_item_content {
    padding: 58px 38px;
  }

  .prdc_ctg_content .prdc_ctg_title h2 {
    font-size: 1.4rem;
  }

  .prdc_ctg_product_title h5 {
    font-size: 16px;
  }

  .quality_section_wrap2 h4 {
    font-size: 12px;
  }

  .quality_top_title h2 {
    font-size: 1.4rem;
  }

  .quality_section_wrap2 .quality_img2 {
    width: 60px;
    height: 60px;
    padding: 5px;
  }

  .quality_section_wrap2 .quality_content2_img3 {
    bottom: 23%;
    left: 30px;
  }

  .product_ctg_title h2 {
    font-size: 1.4rem;
  }

  .offer_title h2 {
    font-size: 1.4rem;
  }

  .gallery_lft_title h2 {
    font-size: 1.8rem;
  }

  .testimonial_comment p {
    width: 21rem;
    line-height: 24px;
    margin: 0px 10px;
  }

  h2.instagram_title {
    font-size: 1.4rem;
  }

  .footer_top_subs input {
    padding: 15px;
  }

  .footer_top_subs button {
    padding: 15px 10px;
  }

  .product_section3_wrap .product_tabnav_3 button {
    font-size: 10px;
  }

  .quality_section_wrap2 .quality_text {
    width: 245px;
  }

  .quality_section_wrap2 .quality_content2_img4 {
    bottom: -13%;
    right: 30px;
  }

  .navbar3 .navbar-toggler {
    left: 0px;
  }

  .store_gallery_testimonial {
    max-width: 280px;
    height: 270px;
  }

  .store_gallery_testimonial .slide_content p {
    font-size: 16px;
    line-height: 20px;
  }

  .store_gallery_testimonial .slick-dots {
    bottom: 56px;
    left: -86px;
  }

  .banner4_section_wrap .banner4_title h1 {
    font-size: 1.5rem;
  }

  .banner4_section_wrap .banner4_sub_cont h6 {
    display: none;
  }

  .banner4_section_wrap .banner4_sub_bg {
    display: none;
  }
}
/* media screen and (max-width: 430px) */
@media (max-width: 429px) {
  .banner_title h1 {
    font-size: 1.5rem;
  }

  .banner_search_bar input {
    width: 280px;
  }

  .sale_item .sale_big_title {
    width: 260px;
  }

  .prdc_ctg_content .prdc_ctg_title h2 {
    font-size: 1.5rem;
  }

  .quality_top_title h2 {
    font-size: 1.5rem;
  }

  .product_sec_title {
    font-size: 1.5rem;
  }

  .product_ctg_title h2 {
    font-size: 1.5rem;
  }

  .offer_title h2 {
    font-size: 1.5rem;
  }

  .team_top_title h2 {
    font-size: 1.5rem;
  }

  .gallery_lft_title h2 {
    font-size: 1.5rem;
  }

  .blog_top_title h2 {
    font-size: 1.5rem;
  }

  .product_layout_content {
    padding: 23px 42px;
    border-radius: 2rem;
  }

  .footer_top_subs input {
    width: 350px;
  }

  .footer_bootom_privicy p,
.footer_bootom_terms p,
.footer_bootom_refunds p {
    font-size: 0.8rem;
  }

  .banner_title2 h1 {
    font-size: 1.5rem;
  }

  .banner_2 .banner_desc p {
    font-size: 1rem;
  }

  .service_setion2 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .product_section_2 {
    padding-bottom: 30px;
  }

  .product_section_2_wrap .product_section_title h2 {
    font-size: 20px;
    text-align: center;
  }

  .product_section_2_wrap .product_section_subtitle p {
    font-size: 14px;
    font-weight: 500;
  }

  .product_section_2_wrap .product_section_desc p {
    font-size: 13px;
  }

  .trend_section_wrap {
    padding: 100px 0px;
  }

  .trend_top_title {
    padding: 15px 0px;
  }

  .trend_top_title h2 {
    font-size: 20px;
  }

  .product_section3 {
    margin-top: -33px;
  }

  .product_top_title h2 {
    font-size: 20px;
  }

  .prdc_ctg_product_title h5 {
    font-size: 16px;
  }

  .quality_section2 {
    padding-bottom: 140px;
  }

  .quality_section_wrap2 h2 {
    font-size: 20px;
  }

  .quality_section_wrap2 .quality_content2_img2 {
    top: 40%;
  }

  .quality_section_wrap2 .quality_content2_img3 {
    bottom: 7%;
  }

  .quality_section_wrap2 .quality_content2_img4 {
    bottom: -37%;
    right: 30px;
  }

  .sale2_title h2 {
    font-size: 20px;
  }

  .blog_section {
    padding: 100px 0px;
  }

  .blog_top_title h2 {
    font-size: 20px;
  }

  .blog_content_text h2 {
    font-size: 16px;
    font-weight: 600;
  }

  .instagram_2 .instagram_title {
    font-size: 20px;
  }

  .testimonial3_sec_wrap .testimonial3_text .testimonial_desc {
    font-size: 17px;
  }

  .testimonial3_sec {
    padding: 50px 0px;
  }
}

.logo-size{
  width:20%;
}

.navbar-brand img.site-logo,
.top_inner_logo img.site-logo {
  height: 95px !important;
  width: 95px !important;
  max-width: 95px !important;
  min-width: 0 !important;
  display: block;
  object-fit: contain;
}
.footer_top_logo img.site-logo-footer {
  height: 80px !important;
  width: 80px !important;
  max-width: 80px !important;
  min-width: 0 !important;
  display: block;
  object-fit: contain;
}
@media (max-width: 991px) {
  .navbar-brand img.site-logo,
  .top_inner_logo img.site-logo { height: 78px !important; width: 78px !important; max-width: 78px !important; }
}
@media (max-width: 479px) {
  .navbar-brand img.site-logo,
  .top_inner_logo img.site-logo { height: 64px !important; width: 64px !important; max-width: 64px !important; }
  .navbar-brand { max-width: none !important; }
}

/* Navbar: logo (left) | menu + Contact button (right) */
.webMenu .navbar {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

/* ===== Header top tagline ===== */
.header_tagline {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.header_tagline i {
  color: #C9956B;
}

/* ===== Footer v2 (clean rebuild) ===== */
.footer_section_v2 {
  background: linear-gradient(180deg, #1A1A1A 0%, #0f0f0f 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer_section_v2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C9956B, transparent);
}
.footer_v2_top {
  padding-bottom: 60px;
}
.footer_v2_brand .footer_v2_logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
.footer_v2_about {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 360px;
}
.footer_v2_heading {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer_v2_heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background-color: #C9956B;
}
.footer_v2_links li,
.footer_v2_contact li {
  padding: 0.35rem 0;
}
.footer_v2_links li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}
.footer_v2_links li a:hover {
  color: #C9956B;
  padding-left: 6px;
}
.footer_v2_range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}
.footer_v2_contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer_v2_contact li i {
  color: #C9956B;
  font-size: 0.95rem;
  margin-top: 5px;
  width: 16px;
  flex-shrink: 0;
}
.footer_v2_contact li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer_v2_contact li a:hover {
  color: #C9956B;
}
.footer_v2_social {
  gap: 12px;
}
.footer_v2_social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer_v2_social a:hover {
  background-color: #C9956B;
  color: #fff;
  transform: translateY(-3px);
}
.footer_v2_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}
.footer_v2_copy {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}
.footer_v2_copy span {
  color: #C9956B;
  font-weight: 700;
}
.footer_v2_legal li {
  margin-left: 24px;
}
.footer_v2_legal li:first-child {
  margin-left: 0;
}
.footer_v2_legal li a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer_v2_legal li a:hover {
  color: #C9956B;
}
@media (max-width: 767px) {
  .footer_section_v2 { padding-top: 60px; }
  .footer_v2_legal { margin-top: 12px !important; }
}

/* ===== About section (collage layout) ===== */
.about_section {
  background-color: var(--vnil-cream);
}
.about_collage {
  position: relative;
  width: 100%;
  height: 540px;
  max-width: 540px;
  margin: 0 auto;
}
.about_collage_frame {
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border: 2px solid #C9956B;
  border-radius: 28px;
  pointer-events: none;
  opacity: 0.5;
}
.about_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  width: 100%;
  height: 100%;
}
.about_tile {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  transition: transform 0.4s ease;
}
.about_tile:hover {
  transform: translateY(-6px);
}
.about_tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Center floating "Years of Experience" badge with rotating text */
.about_exp_badge {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.exp_rotating_text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: about_rotate_text 18s linear infinite;
}
.exp_rotating_text text {
  fill: #1A1A1A;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: var(--vnil-font-sans);
}
.exp_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #C9956B;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px rgba(201, 149, 107, 0.5);
  border: 4px solid #fff;
}
.exp_number {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.exp_label {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 2px;
}
@keyframes about_rotate_text {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.about_eyebrow {
  color: #1A1A1A;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.about_title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.15;
  letter-spacing: 0.5px;
}
.about_desc {
  color: #6c6c6c;
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .about_title { font-size: 1.9rem; }
  .about_collage { height: 460px; max-width: 460px; }
  .about_exp_badge { width: 170px; height: 170px; }
  .exp_inner { width: 110px; height: 110px; }
  .exp_number { font-size: 2rem; }
}
@media (max-width: 575px) {
  .about_collage { height: 400px; max-width: 100%; }
  .about_exp_badge { width: 140px; height: 140px; }
  .exp_inner { width: 90px; height: 90px; }
  .exp_number { font-size: 1.6rem; }
  .exp_label { font-size: 0.65rem; }
  .exp_rotating_text text { font-size: 15px; letter-spacing: 1.5px; }
  .about_grid { gap: 14px; }
  .about_title { font-size: 1.6rem; }
}

/* ===== CTA section ===== */
.cta_section {
  padding: 0;
}
.cta_wrap {
  background-color: var(--vnil-cream);
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}
.cta_wrap::before,
.cta_wrap::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 149, 107, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta_wrap::before { top: -80px; left: -60px; }
.cta_wrap::after { bottom: -80px; right: -60px; }
.cta_eyebrow {
  color: var(--vnil-rose-gold);
  font-family: var(--vnil-font-sans);
  font-weight: 700;
  letter-spacing: 2.5px;
  font-size: 13px;
}
.cta_title {
  font-family: var(--vnil-font-serif);
  color: var(--vnil-deep-black);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
}
.cta_desc {
  color: #6c6c6c;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
}
.cta_btn_outline {
  color: var(--vnil-deep-black);
  border: 2px solid var(--vnil-rose-gold);
  background: transparent;
  font-family: var(--vnil-font-sans);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.cta_btn_outline:hover {
  background-color: var(--vnil-rose-gold);
  color: #fff;
  border-color: var(--vnil-rose-gold);
}
@media (max-width: 767px) {
  .cta_wrap { padding: 70px 16px; }
}

/* About hero banner */
.about_hero_sec .breadcrumb_wrap {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 140px 0;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_hero_sec .breadcrumb_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.about_hero_sec .breadcrumb_cont {
  position: relative;
  z-index: 2;
}
.about_hero_sec .breadcrumb_title h2 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.about_hero_tagline {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  opacity: 0.9;
  max-width: 620px;
  margin: 0 auto 22px;
}
.about_hero_sec .breadcrumb_item li {
  font-size: 15px;
}
.about_hero_sec .breadcrumb_item a {
  color: #fff;
  text-decoration: none;
}
.about_hero_sec .breadcrumb_item a:hover {
  color: var(--vnil-rose-gold);
}
.about_hero_sec .breadcrumb_item i.fa-home,
.about_hero_sec .breadcrumb_item i.fa-home.active {
  color: #ffffff !important;
  border-color: var(--vnil-rose-gold) !important;
}
.about_hero_sec .breadcrumb_item .fa-chevron-right {
  color: var(--vnil-rose-gold);
}
@media (max-width: 991px) {
  .about_hero_sec .breadcrumb_wrap { padding: 100px 0; min-height: 300px; }
  .about_hero_sec .breadcrumb_title h2 { font-size: 44px; }
  .about_hero_tagline { font-size: 16px; }
}
@media (max-width: 575px) {
  .about_hero_sec .breadcrumb_wrap { padding: 80px 0; min-height: 240px; }
  .about_hero_sec .breadcrumb_title h2 { font-size: 32px; }
  .about_hero_tagline { font-size: 14px; }
}

/* ─── OFFCANVAS (mobile sidebar) — brand logo ───────────── */
.offcanvas .offcanvas-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important;
  border-bottom: 1px solid rgba(201, 149, 107, 0.18);
}
.offcanvas .offcanvas-brand {
  text-decoration: none;
  line-height: 1;
}
.offcanvas .offcanvas-brand-logo {
  height: 56px;
  width: 56px;
  object-fit: contain;
}
.offcanvas .offcanvas-header .btn-close.mobile_menu_close {
  margin: 0 !important;
  opacity: 1;
}
@media (max-width: 360px) {
  .offcanvas .offcanvas-brand-logo {
    height: 48px;
    width: 48px;
  }
}

/* ════════════════════════════════════════════════════════════════
   SITE-WIDE OVERRIDES & RESPONSIVE FIXES (moved from index.html)
   Applies to every page that links this stylesheet.
   ════════════════════════════════════════════════════════════════ */

html, body {
  overflow-x: hidden !important;
}

/* ─── UNIFORM SECTION SPACING ───────────────────────────── */
.category_section,
.about_section,
.quality_section .quality_section_wrap,
.testimonial_section,
.service_setion,
.cta_section .cta_wrap {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
.product_section {
  padding-top: 80px !important;
}
.faqs_section .faqs_sec_wrap {
  padding-bottom: 50px !important;
}

/* ─── LOGO CURVE BUMP ─────────────────────────────────────── */
.logo_curve_wrap {
  position: relative !important;
  display: inline-block !important;
  padding: 5px 25px 12px 25px !important;
  background: #fff !important;
  border-radius: 0 0 50% 50% !important;
  margin-top: 5px !important;
  margin-bottom: -10px !important;
}

.header_section::after {
  display: none !important;
}

.header_section {
  position: relative !important;
  z-index: 100 !important;
  overflow: visible !important;
}

.header_bottom_main {
  padding-top: 5px !important;
  padding-bottom: 0 !important;
  position: relative !important;
  z-index: 100 !important;
  overflow: visible !important;
  background: #fff !important;
}

.header_bottom_main .navbar {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
  min-height: unset !important;
  align-items: center !important;
}

.navbar-brand img.site-logo,
.top_inner_logo img.site-logo,
.webMenu img.site-logo,
.header_bottom_main img.site-logo {
  height: 90px !important;
  width: 90px !important;
  max-width: 90px !important;
  min-width: 0 !important;
  object-fit: contain !important;
  position: relative !important;
  z-index: 201 !important;
}

.header_bottom_main .navbar-brand {
  position: relative !important;
  z-index: 200 !important;
  padding: 0 !important;
  margin-top: 5px !important;
  margin-bottom: -30px !important;
}

.header_bottom_main .navbar-brand::before {
  content: "" !important;
  position: absolute !important;
  bottom: -15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 140px !important;
  height: 70px !important;
  background: #fff !important;
  border-radius: 0 0 70px 70px !important;
  z-index: -1 !important;
}

.header_bottom_main .navbar-brand::after {
  display: none !important;
}

.banner_section_main {
  position: relative !important;
  z-index: 1 !important;
}

/* ─── HEADER / NAVBAR ────────────────────────────────────── */
.header_bottom_main .navbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.header_bottom_main .collapse.navbar-collapse {
  flex-grow: 1 !important;
  justify-content: center !important;
}

.header_bottom_main .navbar-nav .nav-item {
  display: flex !important;
  align-items: center !important;
}

.header_bottom_main .navbar-nav .nav-item + .nav-item::before {
  content: "|" !important;
  color: #ccc !important;
  padding-right: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  height: 100% !important;
  line-height: 1 !important;
}

.header_bottom_main .navbar-nav .nav-link {
  color: #333 !important;
  transition: color 0.3s ease !important;
}

.header_bottom_main .navbar-nav .nav-link:hover {
  color: #C9956B !important;
}

.header_bottom_main .navbar-nav .nav-link.active {
  color: #C9956B !important;
  font-weight: 600 !important;
}

/* Social icon circles */
.header_bottom_main .d-flex a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.header_bottom_main .d-flex .fab {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background-color: #C9956B !important;
  color: #fff !important;
  font-size: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.header_bottom_main .d-flex .fab:hover {
  background-color: #fff !important;
  color: #C9956B !important;
  border: 2px solid #C9956B !important;
}

/* ─── BANNER ─────────────────────────────────────────────── */
.banner_section_main {
  overflow: hidden !important;
}

.banner_section_item {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.banner_sub_title {
  position: relative;
  display: inline-block;
}

.banner_sub_title .sub_title_bg {
  filter: brightness(0) saturate(100%) invert(60%) sepia(50%) saturate(400%) hue-rotate(345deg) brightness(90%) !important;
}

.banner_right_thumb {
  width: 250px !important;
  max-width: 250px !important;
}

.banner_left_thumb {
  width: 250px !important;
  max-width: 250px !important;
}

.banner-btn-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.banner-btn {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.banner-btn-primary {
  background-color: #C9956B;
  color: #fff;
}

.banner-btn-primary:hover {
  background-color: #C9956B;
  color: #fff;
}

.banner-btn-outline {
  background-color: transparent;
  color: #C9956B;
  border: 2px solid #C9956B;
}

.banner-btn-outline:hover {
  background-color: #C9956B;
  color: #fff;
}

.btn.custom_btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
}

/* ─── CATEGORY SLIDER ────────────────────────────────────── */
.category_section {
  overflow: hidden !important;
}

.category_slick .item_content,
.category_slick .item_image_content,
.category_slick .item_image_content img,
.category_slick .item_title {
  cursor: default !important;
  pointer-events: none !important;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.exp_rotating_text text {
  letter-spacing: 4px !important;
}

/* ─── PRODUCTS ───────────────────────────────────────────── */
.product_section .tab-content {
  margin-bottom: 0 !important;
}

.product_section .tab-pane {
  display: none !important;
}

.product_section .tab-pane.show.active {
  display: block !important;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonial_section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.testimonial_section .slideshow3_slider.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.testimonial_section .slick-dots {
  position: relative !important;
  bottom: auto !important;
  margin-top: 20px !important;
  margin-bottom: 0 !important;
}

.testimonial_section .slick-dots li button:before {
  color: #C9956B !important;
  font-size: 10px !important;
}

.testimonial_section .slick-dots li.slick-active button:before {
  color: #C9956B !important;
  opacity: 1 !important;
}

.testi_slide_wrap {
  min-height: 220px !important;
  padding: 30px 80px !important;
  background: transparent !important;
}

.testi_img_wrap {
  width: 280px !important;
  height: 280px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 6px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3) !important;
  margin: 0 auto;
}

.testi_img_wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top !important;
}

.testi_slide_heading {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.3 !important;
}

.testi_slide_desc {
  font-size: 16px !important;
  font-style: italic !important;
  color: #f0e0cc !important;
  line-height: 1.9 !important;
}

.testi_slide_name {
  color: #C9956B !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}

.testi_slide_name font {
  color: #ccc !important;
  font-weight: 400 !important;
  font-size: 15px !important;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer_section_v2 {
  padding-top: 20px !important;
}

.footer_v2_top {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.footer_v2_top .row {
  align-items: flex-start !important;
}

.footer_v2_top .row > [class*="col-"] {
  padding-top: 0 !important;
}

.footer_v2_brand {
  margin-bottom: 0 !important;
}

.footer_v2_brand .d-inline-block {
  margin-bottom: 10px !important;
}

.footer_v2_logo {
  width: 80px !important;
  margin-bottom: 0px !important;
}

.footer_v2_about {
  margin-bottom: 8px !important;
}

.footer_v2_social {
  margin-top: 10px !important;
}

.footer_v2_heading {
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 12px !important;
}

.footer_v2_links li {
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.footer_v2_links li a {
  display: block;
  padding: 6px 0 !important;
  line-height: 1.6 !important;
}

.footer_v2_contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px !important;
  padding: 0 !important;
}

.footer_v2_contact li i {
  margin-top: 3px;
  min-width: 16px;
  color: #C9956B;
}

.footer_v2_map {
  margin-bottom: 8px !important;
}

.footer_v2_map iframe {
  height: 120px !important;
}

/* ─── GLOBAL IMAGE SAFETY ────────────────────────────────── */
img {
  max-width: 100% !important;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE FIXES — Tablet & Mobile (S / M / L)
   ════════════════════════════════════════════════════════════════ */

/* ─── MOBILE & TABLET HEADER (< 992px) ───────────────────── */
@media (max-width: 991.98px) {
  .mobileMenu .navbar {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    padding: 8px 0 !important;
  }

  .mobileMenu .navbar-brand {
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
  }

  .mobileMenu .navbar-brand img.site-logo {
    height: 70px !important;
    width: 70px !important;
    max-width: 70px !important;
  }

  /* Override absolute-positioned toggler — push to right */
  .mobileMenu .navbar-toggler,
  .mobileMenu.navbar-light .navbar-toggler,
  .navbar-light .navbar-toggler {
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    padding: 6px 10px !important;
    border: none !important;
    box-shadow: none !important;
    flex: 0 0 auto !important;
  }

  /* Kill the logo curve on mobile so the row stays clean */
  .header_bottom_main .navbar-brand::before {
    display: none !important;
  }
  .header_bottom_main .navbar-brand {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  /* Remove ALL dividers / accent bars between nav items on tablet/mobile */
  .header_bottom_main .navbar-nav .nav-item + .nav-item::before,
  .header_bottom_main .navbar-nav .nav-item + .nav-item::after,
  .mobileMenu .navbar-nav .nav-item::before,
  .mobileMenu .navbar-nav .nav-item::after,
  .offcanvas .navbar-nav .nav-item::before,
  .offcanvas .navbar-nav .nav-item::after,
  .offcanvas .main_menu_list .nav-item::before,
  .offcanvas .main_menu_list .nav-item::after,
  .offcanvas .main_menu_list > li::before,
  .offcanvas .main_menu_list > li::after,
  .offcanvas-body .nav-item::before,
  .offcanvas-body .nav-item::after,
  .offcanvas-body .nav-link::before,
  .offcanvas-body .nav-link::after {
    content: none !important;
    display: none !important;
    background: transparent !important;
    border: 0 !important;
    width: 0 !important;
    height: 0 !important;
  }
  .offcanvas .navbar-nav .nav-item,
  .offcanvas .navbar-nav .nav-link,
  .offcanvas-body .nav-item,
  .offcanvas-body .nav-link {
    border-left: 0 !important;
    border-right: 0 !important;
    box-shadow: none !important;
  }

  /* Offcanvas menu — remove green-tint background on links */
  .offcanvas .offcanvas-body .nav-link,
  .offcanvas-body .nav-link {
    background-color: transparent !important;
    color: #333 !important;
    border-radius: 0 !important;
  }
  .offcanvas .offcanvas-body .nav-link:hover,
  .offcanvas-body .nav-link:hover,
  .offcanvas .offcanvas-body .nav-link.active,
  .offcanvas-body .nav-link.active {
    background-color: transparent !important;
    color: #C9956B !important;
  }
}

/* ─── BANNER — single-line buttons on mobile ─────────────── */
@media (max-width: 767.98px) {
  .banner_section_item {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .banner_title h1 {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }

  .banner-btn-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 24px !important;
    width: 100% !important;
  }

  .banner-btn-container .btn.custom_btn {
    flex: 0 1 auto !important;
    white-space: nowrap !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    min-width: 0 !important;
  }

  .banner_right_thumb,
  .banner_left_thumb {
    width: 110px !important;
    max-width: 110px !important;
    opacity: 0.4 !important;
  }
}

@media (max-width: 360px) {
  .banner-btn-container .btn.custom_btn {
    padding: 9px 12px !important;
    font-size: 12px !important;
  }
  .banner_right_thumb,
  .banner_left_thumb {
    display: none !important;
  }
}

/* ─── WHY CHOOSE US / QUALITY SECTION ────────────────────── */
@media (max-width: 991.98px) {
  .quality_section .quality_inner_content .row {
    align-items: stretch !important;
  }

  .quality_section .quality_content {
    text-align: center !important;
    justify-content: flex-start !important;
    align-items: center !important;
    flex-direction: row !important;
    padding: 0 !important;
    margin-bottom: 24px !important;
  }

  .quality_section .col-lg-4:first-child .quality_content {
    flex-direction: row-reverse !important;
    text-align: left !important;
  }
  .quality_section .col-lg-4:first-child .quality_content .quality_text {
    text-align: left !important;
  }
  .quality_section .col-lg-4:first-child .quality_content .quality_img {
    margin-left: 0 !important;
    margin-right: 16px !important;
  }

  .quality_section .col-lg-4:last-child .quality_content {
    text-align: left !important;
  }
  .quality_section .col-lg-4:last-child .quality_content .quality_text {
    text-align: left !important;
  }

  .quality_section .quality_content .quality_img {
    flex: 0 0 auto !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .quality_section .quality_content .quality_text {
    flex: 1 1 auto !important;
  }

  .quality_section .quality_middle_gallery {
    text-align: center !important;
    margin: 20px auto 30px !important;
    max-width: 360px !important;
  }

  .quality_section .quality_middle_gallery img {
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 575.98px) {
  .quality_section .quality_top_title h2,
  .product_top_title {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }
  .quality_section .quality_content {
    margin-bottom: 18px !important;
  }
}

/* ─── TESTIMONIAL SECTION ────────────────────────────────── */
@media (max-width: 991.98px) {
  .testimonial_section .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .testi_slide_wrap {
    padding: 40px 24px !important;
    min-height: auto !important;
    text-align: center !important;
    display: block !important;
  }

  .testi_slide_wrap .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .testi_slide_wrap .row > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .testi_slide_wrap .col-lg-8 {
    margin-top: 20px !important;
  }

  .testi_img_wrap {
    width: 180px !important;
    height: 180px !important;
    border-width: 4px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }

  .testi_slide_heading {
    font-size: 26px !important;
    text-align: center !important;
  }

  .testi_slide_desc {
    font-size: 14px !important;
    line-height: 1.7 !important;
    text-align: center !important;
  }

  .testi_slide_name {
    text-align: center !important;
  }

  .testimonial_section .product_sec_sub_title {
    justify-content: center !important;
    text-align: center !important;
  }
}

@media (max-width: 575.98px) {
  .testi_slide_wrap {
    padding: 30px 16px !important;
  }
  .testi_img_wrap {
    width: 140px !important;
    height: 140px !important;
  }
  .testi_slide_heading {
    font-size: 22px !important;
  }
  .testimonial_section {
    background-attachment: scroll !important;
  }
}

/* ─── CTA SECTION ────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .cta_section .cta_wrap {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .cta_title {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }

  .cta_desc {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .cta_buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    max-width: 280px !important;
    margin: 0 auto !important;
  }

  .cta_buttons .btn {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 12px 18px !important;
    font-size: 14px !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 360px) {
  .cta_buttons {
    max-width: 260px !important;
  }
  .cta_buttons .btn {
    padding: 11px 14px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }
  .cta_buttons .btn i {
    padding-left: 6px !important;
  }
}

/* ─── PILL BUTTONS — keep single line at small widths ────── */
@media (max-width: 575.98px) {
  .btn.custom_btn,
  a .btn.custom_btn,
  .product_section_btn .btn,
  .container.text-center .btn.custom_btn {
    white-space: nowrap !important;
    padding-left: 22px !important;
    padding-right: 22px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 360px) {
  .btn.custom_btn,
  a .btn.custom_btn,
  .product_section_btn .btn,
  .container.text-center .btn.custom_btn {
    padding-left: 16px !important;
    padding-right: 16px !important;
    font-size: 12px !important;
  }
}

/* ─── SERVICE STRIP (Why Choose Us) — 2x2 on tablet, centered ─── */
@media (min-width: 576px) and (max-width: 991.98px) {
  .service_section .col-6,
  .service_section .col-md-3 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    margin-bottom: 24px !important;
  }
  .service_section .service_inner_content {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 14px 16px !important;
  }
  .service_section .service_content_icon {
    margin-right: 14px !important;
    margin-bottom: 0 !important;
    flex: 0 0 auto !important;
  }
  .service_section .service_content_text {
    text-align: left !important;
  }
}

/* ─── SERVICE / WHY-CHOOSE-US ICON STRIP — mobile stacks ──── */
@media (max-width: 767.98px) {
  .service_section .service_inner_content {
    flex-direction: column !important;
    text-align: center !important;
    padding: 12px 8px !important;
    margin-bottom: 18px !important;
  }
  .service_section .service_content_icon {
    margin-right: 0 !important;
    margin-bottom: 10px !important;
  }
  .service_section .col-6 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .footer_v2_top {
    padding-top: 30px !important;
    padding-bottom: 20px !important;
  }
  .footer_v2_top .row {
    row-gap: 24px !important;
  }
  .footer_v2_brand {
    text-align: center;
  }
  .footer_v2_brand .d-inline-block {
    display: block !important;
    margin: 0 auto 10px !important;
  }
  .footer_v2_brand .footer_v2_about {
    text-align: center;
  }
  .footer_v2_social {
    justify-content: center !important;
  }

  /* Center every column (Quick Links / Contact / Find Us) on tablet+mobile */
  .footer_v2_top .row > [class*="col-"] {
    text-align: center !important;
  }
  .footer_v2_heading {
    text-align: center !important;
  }
  .footer_v2_heading::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .footer_v2_links {
    text-align: center !important;
  }
  .footer_v2_links li a {
    display: inline-block !important;
  }
  .footer_v2_contact {
    display: block !important;
    text-align: center !important;
    padding-left: 0 !important;
  }
  .footer_v2_contact li {
    display: block !important;
    text-align: center !important;
    margin-bottom: 12px !important;
    padding: 0 !important;
  }
  .footer_v2_contact li i {
    display: inline-block !important;
    margin-right: 8px !important;
    margin-top: 0 !important;
    vertical-align: middle !important;
  }
  .footer_v2_contact li a,
  .footer_v2_contact li span {
    display: inline !important;
    vertical-align: middle !important;
  }
  .footer_v2_map {
    max-width: 360px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .footer_v2_bottom .row > div {
    text-align: center !important;
    margin-bottom: 6px;
  }
  .footer_v2_legal {
    justify-content: center !important;
  }
}

@media (max-width: 575.98px) {
  .footer_v2_top .col-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* ─── BACK-TO-TOP — keep clear of buttons on small ───────── */
@media (max-width: 575.98px) {
  .backtotop a.scroll {
    bottom: 18px !important;
    right: 18px !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   GLOBAL ALIGNMENT — section heading consistency.
   Stand-alone section headers are centered at all sizes; the
   tablet/mobile block below centers in-column copy as well so
   every page reads the same way at <992px.
   ════════════════════════════════════════════════════════════════ */

/* Stand-alone section header (category slider) — center at all sizes */
.category_top_content {
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 18px !important;
}
.category_top_content_text {
  text-align: center !important;
  width: 100% !important;
}
.category_sub_title {
  justify-content: center !important;
  text-align: center !important;
}
.category_top_btn_cont {
  justify-content: center !important;
}

@media (max-width: 991.98px) {

  /* Eyebrow flex rows — always center the inline content */
  .category_sub_title,
  .product_sec_sub_title,
  .product9_sec_sub_title,
  .quality_sub_title,
  .about_eyebrow,
  .cta_eyebrow {
    justify-content: center !important;
    text-align: center !important;
  }

  /* Section heading wrappers — center the eyebrow + h2 + intro */
  .category_top_content,
  .category_top_content_text,
  .product_sec_content,
  .product_section_content,
  .product9_sec_cont,
  .about_section_content,
  .about_text_wrap,
  .quality_top_content {
    text-align: center !important;
    width: 100% !important;
  }

  /* Specifically: category section — stack title above arrow nav */
  .category_top_content {
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
  }
  .category_top_btn_cont {
    justify-content: center !important;
  }

  /* Generic "about / product / story" copy columns — center body text */
  .about_text_wrap,
  .about_text_wrap p,
  .about_text_wrap .about_title,
  .about_text_wrap .about_eyebrow,
  .product_section_content,
  .product_section_content p,
  .product_section_content h2,
  .product9_sec_cont,
  .product9_sec_cont p,
  .product9_sec_cont h2,
  .product_section_subtitle,
  .product_section_desc,
  .product9_section_desc,
  .product9_section_title {
    text-align: center !important;
  }

  /* Remove the left-padding spacer used to offset 50/50 splits */
  .about_text_wrap.ps-lg-4,
  [class*="ps-lg-"] {
    padding-left: 0 !important;
  }

  /* Buttons inside centered copy columns — center as inline-block, not full-width */
  .product_section_btn,
  .about_text_wrap,
  .product_section_content,
  .product9_sec_cont {
    text-align: center !important;
  }
  .product_section_btn .btn,
  .about_text_wrap .btn,
  .product_section_content .btn,
  .product9_sec_cont .btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    max-width: 100% !important;
  }

  /* Testimonial per-slide eyebrow / heading / quote / name centering
     (re-asserted here so it applies even on inner pages that embed
     the same testimonial markup) */
  .testi_slide_wrap .product_sec_sub_title,
  .testi_slide_heading,
  .testi_slide_desc,
  .testi_slide_name {
    text-align: center !important;
  }
  .testi_slide_wrap .product_sec_sub_title {
    justify-content: center !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   HARDENED OVERRIDES — last in source so these win the cascade.
   Applies to tablet + mobile (<992px).
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {

  /* 1) About-section "Read Our Story" / story buttons — inline width */
  .about_text_wrap a.btn,
  .about_text_wrap .btn.custom_btn,
  .about_section_content a.btn,
  .product_section_content a.btn,
  .product_section_btn a.btn,
  .product9_sec_cont a.btn {
    display: inline-flex !important;
    width: auto !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
  }

  /* Parent wrappers must not be flex column stretching the button */
  .about_text_wrap,
  .about_section_content,
  .product_section_content,
  .product9_sec_cont,
  .product_section_btn {
    display: block !important;
    text-align: center !important;
  }

  /* 2) Why-Choose-Us service cards — fully centered content */
  .service_section .service_inner_content {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }
  .service_section .service_content_text,
  .service_section .service_content_text * {
    text-align: center !important;
  }
  .service_section .service_content_title,
  .service_section .service_content_sub_title {
    text-align: center !important;
  }

  /* 3) Footer brand description — keep it center + narrower so each
        line sits within a visually balanced column on tablet */
  .footer_v2_brand .footer_v2_about {
    text-align: center !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* 4) CONTACT page — center all section content on mobile/tablet */
  .contact_us_sec .col-lg-6,
  .contact_us_info .col-lg-6 {
    text-align: center !important;
  }
  .contact_us_tetimonial {
    align-items: center !important;
    text-align: center !important;
  }
  .contact_us_tetimonial .tetimonial_desc,
  .contact_us_tetimonial .tetimonial_author,
  .contact_top_desc {
    text-align: center !important;
  }
  .contact_us_sec a .btn,
  .contact_us_sec .btn.custom_btn {
    display: inline-flex !important;
    width: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .contact_us_info .trend_sub_title {
    justify-content: center !important;
    text-align: center !important;
  }
  .comment_area_title {
    text-align: center !important;
  }
  .comment_form_area form button.btn {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: auto !important;
  }
  .map_section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   BANNER / BREADCRUMB CONSISTENCY — same hero size on every page.
   Overrides per-page inline styles (about=410, contact=2vh,
   products=2vh, terms/privacy=400) so all inner pages render the
   same height.
   ════════════════════════════════════════════════════════════════ */
.breadcrumb_wrap {
  min-height: 400px !important;
  height: auto !important;
  padding: 90px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 991.98px) {
  .breadcrumb_wrap {
    min-height: 320px !important;
    padding: 60px 0 !important;
  }
}

@media (max-width: 575.98px) {
  .breadcrumb_wrap {
    min-height: 260px !important;
    padding: 40px 0 !important;
  }
  .breadcrumb_wrap h2,
  .breadcrumb_title h2 {
    font-size: 28px !important;
    line-height: 1.25 !important;
  }
  .breadcrumb_wrap .about_hero_tagline {
    font-size: 13px !important;
  }
}

/* Hero responsive background */
.banner_section_item {
  background-image: url('../images/banner/banner1-1920.avif');
}

@media (max-width: 1440px) {
  .banner_section_item {
    background-image: url('../images/banner/banner1-1440.avif');
  }
}

@media (max-width: 1024px) {
  .banner_section_item {
    background-image: url('../images/banner/banner1-1024.avif');
  }
}

@media (max-width: 768px) {
  .banner_section_item {
    background-image: url('../images/banner/banner1-768.avif');
  }
}

@media (max-width: 480px) {
  .banner_section_item {
    background-image: url('../images/banner/banner1-480.avif');
  }
}
:root {
  --space-section-sm: 3em;
  --space-section-md: 5em;
  --space-section-lg: 8em;
}

@media (max-width: 767px) {
  :root {
    --space-section-sm: 2em;
    --space-section-md: 4em;
    --space-section-lg: 5em;
  }
}

.section-pad-sm { padding-top: var(--space-section-sm) !important; padding-bottom: var(--space-section-sm) !important; }
.section-pad-md { padding-top: var(--space-section-md) !important; padding-bottom: var(--space-section-md) !important; }
.section-pad-lg { padding-top: var(--space-section-lg) !important; padding-bottom: var(--space-section-lg) !important; }

/* Header social icons */
.header_bottom_main .d-flex ul li a {
  width: 36px;
  height: 36px;
  background: var(--vnil-rose-gold, #C9956B);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.header_bottom_main .d-flex ul li a:hover {
  background: #fff;
  color: #C9956B;
  border: 1px solid #C9956B;
}

/* Header social icon size */
.header_bottom_main .d-flex ul li a i {
  font-size: 20px;
}

/* Footer social icon size */
.footer_v2_social li a i {
  font-size: 20px;
}

/* ── Category Snap Rail ── */
.snap-rail {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-inline: 1rem;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.snap-rail::-webkit-scrollbar { display: none; }
.snap-item {
  flex: 0 0 calc(20% - 1.5rem);
  scroll-snap-align: start;
}
@media (max-width: 1200px) { .snap-item { flex-basis: calc(25% - 1.5rem); } }
@media (max-width: 1024px) { .snap-item { flex-basis: calc(33% - 1.5rem); } }
@media (max-width: 768px)  { .snap-item { flex-basis: calc(50% - 1.5rem); } }
@media (max-width: 480px)  { .snap-item { flex-basis: calc(75% - 1.5rem); } }


/* Testimonial section — clean merged rule */
.testimonial_section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

/* Reduce fader height — was 280px causing the gap */
.testimonial-fader {
    min-height: auto !important;
    position: relative;
}

/* Reduce bottom padding — was 80px */
.testimonial_section .testimonial_sec_content {
    padding-bottom: 30px !important;
}

/* Reduce heading gap */
.testimonial_sec_content .text-center.pt-3.pb-2 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.testimonial-fader .slider_item {
  position: absolute;
  inset: 0;
  top: 0 !important;
  align-items: flex-start !important;
}

.testi_slide_wrap {
  align-items: flex-start !important;
  padding-top: 0 !important;
}
/* ── Testimonial Fader ── */
.testimonial-fader { position: relative; min-height: 200px; padding-top: 0 !important; } /* reduced since heading moved out */
.testimonial-fader .slider_item {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: testi-fade 9s infinite;
  pointer-events: none;
}
.testimonial-fader .slider_item:nth-child(1) { animation-delay: 0s; opacity: 1; }
.testimonial-fader .slider_item:nth-child(2) { animation-delay: 3s; }
.testimonial-fader .slider_item:nth-child(3) { animation-delay: 6s; }
@keyframes testi-fade {
  0%, 28%  { opacity: 1; pointer-events: auto; }
  33%, 100% { opacity: 0; pointer-events: none; }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-fader .slider_item {
    animation: none;
    opacity: 1;
    position: static;
  }
}
.testimonial_section {
    margin-bottom: 0 !important;
    padding-bottom: 30px !important;
}

.service_section.section-pad-lg {
    padding-top: 40px !important;
}
/* Remove white gap above testimonial */
.testimonial_section {
    margin-top: 0 !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

/* Reduce inner fader height */
.testimonial-fader {
    min-height: 280px !important;
}

/* Reduce heading gap */
.testimonial_sec_content .text-center.pt-3.pb-2 {
    padding-top: 10px !important;
    padding-bottom: 20px !important;
}
/* Reduce bottom padding of the section above testimonial */
.faqs_section {
    padding-bottom: 20px !important;
}

 .address_author {
    position: absolute;
    top: 20px;           /* inside the card */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
 }

 @media (max-width: 768px) {
    .about_section_content {
        padding-right: 0 !important;
        padding-left: 0 !important;
        text-align: center;
    }

    .col-lg-6.ps-lg-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .product_sec_sub_title {
        justify-content: center;
    }

    .product_section_btn {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .backtotop {
        right: 18px !important;
    }
}

.btn.custom_btn,
.cta_btn_outline {
    letter-spacing: 0 !important;
}

.footer_v2_map iframe {
    height: 200px !important;
    width: 100% !important;
    border-radius: 10px;
}

/* Reduce bottom padding of contact section above */
section.contact_us_sec {
    padding-bottom: 0px !important;
}

/* Reduce top padding of address section */
section.address_sec {
    padding-top: 20px !important;
}
.contact_us_sec .btn,
.contact_us_sec .custom_btn {
    text-transform: none !important;
    letter-spacing: 0 !important;
}
section.contact_us_sec {
    padding-bottom: 30px !important;
}
section.contact_us_sec {
    padding-top: 50px !important;
    padding-bottom: 30px !important;
}

/* Vertically center both columns */
section.contact_us_sec .row {
    align-items: center !important;
}
/* Section above (product9) */
.product9_sec {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Service section top padding */
section.service_setion.section-pad-lg {
    padding-top: 80px !important;
     padding-bottom: 98px !important;
}
@media (max-width: 768px) {
    .whatsapp_float {
        bottom: 70px !important;
        right: 15px !important;
    }

    .backtotop {
        bottom: 20px !important;
        right: 15px !important;
    }
}
@media (max-width: 768px) {
    .whatsapp_float {
        width: 35px !important;
        height: 35px !important;
        font-size: 18px !important;
        bottom: 70px !important;  /* increased gap above back-to-top */
        right: 20px !important;
    }

    .backtotop {
        right: 0px !important;
        bottom: 10px !important;
    }

    .backtotop a {
        width: 35px !important;
        height: 35px !important;
        font-size: 14px !important;
    }
}