:root {
  --color-1: #e7eeff;
  --color-2: #f5deb3;
  --color-3: #A77F60;
  --color-4: #1a2952;
  --color-body: #fff6e6;




}

/*-------------------------------------------------------------------------------
  1. Global
-------------------------------------------------------------------------------*/

/* 1.1 General */


@font-face {
  font-family: "Font Awesome 6 Free";
  src: url(../fonts/fontawesome-webfont.woff2);
}

html {
  -webkit-font-smoothing: antialiased;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-4);
  z-index: 1;
  position: relative;
  background: var(--color-body);
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Jost", sans-serif;
}

h1,
.h1 {
  line-height: 1.2;
  font-weight: 700;
}

h2,
.h2 {
  position: relative;
  margin: 0 0 10px 0;
  line-height: 1.5;
  font-weight: 600;
}

h3,
.h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.4;
}

h4,
.h4 {
  margin: 0;
  font-weight: 500;
}

h5,
.h5 {
  letter-spacing: .1px;
  line-height: 1.5;
  font-weight: 600;
}

strong {
  font-weight: 700;
}

p {
  margin: 0;
}

ul.list {
  padding: 0;
  margin: 0;
}

.list li {
  list-style: none;
}

.list li:before {
  content: "\f06c";
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  margin-right: 10px;
  color: #a67c52;
}

a {
  color: var(--color-2);
  -webkit-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #999;
  outline: none;
}

a:focus {
  text-decoration: none;
}

.bg-clr-1 {
  background-color: var(--color-1) !important;
  color: var(--color-4) !important;
}

.bg-clr-2 {
  background-color: var(--color-2) !important;
  color: var(--color-4) !important;
}

.bg-clr-3 {
  background-color: var(--color-3) !important;
  color: #fff !important;
}

h1.sec-title {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.button,
.button-2,
.button-white {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  line-height: normal;
  padding: 11px 25px;
  border-radius: 50px;
  position: relative;
  text-transform: none;
  font-weight: 500;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease 0s;
}

.button {
  background-color: var(--color-2);
  color: var(--color-4);
}

.button-2 {
  background-color: var(--color-1);
  color: #fff;
}

.button-white {
  background-color: #fff;
  color: var(--color-4);
}

.button:before,
.button-2:before,
.button-white:before {
  content: "";
  position: absolute;
  background-color: var(--color-3);
  width: 0%;
  height: 100%;
  right: 0;
  left: auto;
  top: 0;
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  z-index: -1;
}



.button-white:before {
  background-color: var(--color-4);
}

.button:hover,
.button-2:hover {
  color: #fff;
}

.button-white:hover {
  color: var(--color-2);
}

.button:hover::before,
.button-2:hover::before,
.button-white:hover::before {
  right: auto;
  left: 0;
  width: 100%;
}

.btn-slide {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5em;
  padding: 20px 40px;
}

span.hdr-btn {
  position: fixed;
  right: 0px;
  top: 102px;
  background: var(--color-1);
  padding: 10px 25px;
  border-radius: 30px 0px 0px 30px;
  z-index: 999;
}

span.hdr-btn a {
  color: #fff;
}

i.fi {
  line-height: 0;
  vertical-align: middle;
}

ul,
li {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

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

/*-------------------------------------------------------------------------------
  Search
-------------------------------------------------------------------------------*/

.form_search-product {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 680px;
  width: 100%;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--color-2);
}

.form_search-product .fieldset-search {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.form_search-product .srch-pro {
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
}

.form_search-product .btn-action {
  font-size: 24px;
}

select.dropdown_product_cate {
  border: 0px;
  background: transparent;
}

select.dropdown_product_cate:active,
select.dropdown_product_cate:focus,
input.srch-pro:active,
input.srch-pro:focus {
  border: 0px;
  background: transparent;
  box-shadow: none;
  outline: none;
}

button.btn-srch {
  border: 0px;
  background-color: transparent;
}

.brows_prod_cat {
  background-color: var(--color-1);
  height: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
}

input:-internal-autofill-selected
 {
  background-color: transparent;
 }
/*-------------------------------------------------------------------------------
  Header
-------------------------------------------------------------------------------*/

header {
  background: var(--color-body);
  width: 100%;
}

header .navbar-brand img {
  width: 100%;
  max-width: 210px;
  height: auto;
}


.top-nav {
  margin: 0;
}

.top-nav .dropdown-menu {
  border-radius: 0px;
}

.top-nav li a {
  font-size: 15px;
  color: #000;
}

/*Nav*/
#navbar_top.navbar {
  height: 60px;
  background-color: #ffffff;
  border-top: 1px solid var(--color-1);
  border-bottom: 1px solid var(--color-1);
  padding: 0px;
}

.fixed-top .navbar {
  height: 70px;
}

.fixed-top .navbar-brand {
  height: 50px;
  overflow: hidden;
}

#navbar_top .navbar-nav li {
  padding: 5px;
  margin-left: 10px;
  margin-right: 10px;
}

#navbar_top .navbar-nav li a {
  color: var(--color-4) !important;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
}

#navbar_top .navbar-nav li a:hover {
  /* color: #8a6441; */
  color: var(--color-3) !important;
  text-decoration: none;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
}

.dropdown-toggle::after {
  margin-left: 0.5em;
}

#navbar_top .navbar-nav li {
  margin: 0px;
}

#navbar_top .navbar-nav .dropdown-menu {
  background-color: var(--color-2);
  border-radius: 0px;
  box-shadow: none;
  border: 0px;
}

#navbar_top .navbar-nav li a i {
  margin-left: 10px;
  font-size: 14px;
}

.navbar-nav li a.dropdown-toggle {
  position: absolute !important;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  line-height: 0;
}

.navbar-toggler {
  background: #fff;
  border-radius: 0px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.fixed-top.navbar {
  height: 50px;
}

header {
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  animation: 0.5s slideout;
  animation-timing-function: ease-in-out;
}

@keyframes slideout {
  0% {
    top: -110px;
  }

  100% {
    top: 0px;
  }
}

header.fixed-top {
  background: var(--color-3);
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  animation-name: slidein;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}

@keyframes slidein {
  0% {
    top: -110px;
  }

  100% {
    top: 0%;
  }
}

.overlay-slider {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

#slider {
  position: relative;
  z-index: 0;
}

.header-text {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}

.header-text h1,
.header-text h2 {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}


.header-text h1 {
  font-size: 60px;
}

.header-text h2 {
  font-size: 50px;
}

/*-------------------------------------------------------------------------------
  Tegline Section
-------------------------------------------------------------------------------*/

#tagline {
  background-color: #F5DEB3;
  background: linear-gradient(90deg, rgba(245, 222, 179, 1) 0%, rgba(228, 201, 161, 1) 50%, rgba(174, 135, 103, 1) 50%, rgba(167, 127, 96, 1) 100%);
  position: relative;

  /* background: #E7EEFF;
background: linear-gradient(90deg, rgba(231, 238, 255, 1) 0%, rgba(231, 238, 255, 1) 50%, rgba(26, 41, 82, 1) 50%, rgba(26, 41, 82, 1) 100%); */
}

#tagline::before {
  content: '\f6f9';
  font-family: uicons-solid-rounded !important;
  font-size: 25em;
  line-height: 1;
  color: var(--color-4);
  opacity: .1;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

#tagline .sec-left h1 {
  color: var(--color-4);
  font-size: 3em;
}

#tagline .sec-left h1 span {
  color: var(--color-3);
}

.bx-icon-tagline {
  display: block;
  margin-bottom: 20px;
  min-height: 150px;
}

.sec-left .bx-icon-tagline i {
  border: 4px solid var(--color-3);
}

.sec-right .bx-icon-tagline i {
  border: 4px solid var(--color-2);
}

.bx-icon-tagline i {
  font-size: 2em;
  line-height: 1;
  border-radius: 200px;
  padding: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bx-icon-tagline .h5 {
  margin-top: 15px;
  font-weight: 700;
}

#tagline .sec-right {
  color: #fff;
}


#tagline .sec-right h1 {
  color: #fff;
  font-size: 3em;
}

#tagline .sec-right h1 span {
  color: var(--color-2);
}

.saller-product {
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--color-4);
}

#seller-menu-tabs {
  margin-top: -35px;
}

#seller-menu-tabs .nav-pills .nav-link {
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#seller-menu-tabs .nav-pills .nav-link.active,
#seller-menu-tabs .nav-pills .nav-link:hover {
  background: var(--color-2);
  color: var(--color-4);
}

#seller-menu-tabs .nav-item .active:hover {
  background: var(--color-2);
  color: var(--color-4);
}

/*-------------------------------------------------------------------------------
  Featured Categories Section
-------------------------------------------------------------------------------*/

.featured-category {
  background-color: var(--color-2);
  border-radius: 15px;
  text-align: center;
  display: block;
  overflow: hidden;

  vertical-align: middle;
  line-height: normal;
  position: relative;
  text-transform: none;
  font-weight: 500;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease 0s;


}

.fetrd-cat-img img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.fetrd-cat-title {
  font-size: .8em;
  font-weight: 600;
  color: var(--color-4);
  padding: 15px 0;
  margin-top: 0;
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;

}



.featured-category:before {
  content: "";
  position: absolute;
  background-color: var(--color-3);
  width: 0%;
  height: 100%;
  right: 0;
  left: auto;
  top: 0;
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  z-index: -1;
  background-color: var(--color-4);
}

.featured-category:hover .fetrd-cat-title {
  color: var(--color-2);
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}

.featured-category:hover:before {
  right: auto;
  left: 0;
  width: 100%;
}

.featured-category:hover span {
  color: #fff;
}

#categories-splide .splide__arrow {
  bottom: -35px;
  top: auto;
  transform: translateY(0%);
  background: transparent;
}

#categories-splide .splide__arrow i {
  font-size: 1em;
}

#categories-splide .splide__arrow.splide__arrow--prev {
  right: 2.5em;
  left: auto;
}


/*-------------------------------------------------------------------------------
  Testimonials
-------------------------------------------------------------------------------*/

#testimonials .carousel img {
  width: 70px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}

#testimonials .carousel-inner {
  padding: 1em;
}

@media screen and (min-width: 576px) {
  #testimonials .carousel-inner {
    display: flex;
    width: 100%;
    margin-inline: auto;
    padding: 1em 0;
    overflow: hidden;
  }

  #testimonials .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}

@media screen and (min-width: 768px) {
  #testimonials .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 4);
  }
}

#testimonials .carousel .card {
  margin: 0 0.5em;
  border: 0;
  background-color: var(--color-1);
}

#testimonials .carousel .card-body {
  padding: 30px;
  min-height: 380px;
}

#testimonials .carousel .card-body .card-text {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

#testimonials .carousel-control-prev,
#testimonials .carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: grey;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

/*-------------------------------------------------------------------------------
  Why Chose Us
-------------------------------------------------------------------------------*/

#main-header .slide-box {
  position: relative;
  display: inline-block;
  height: 100%;
  width: 100%;
  max-height: 450px;
}

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

#main-header .title {
  position: absolute;
  top: 0;
  left: 1%;
  display: block;
  padding: 2em;
  color: #fff;
  text-shadow: 0 0 10px #000;
  height: auto;
}

#main-header .title h1 {
  font-size: 2.2em;
}

#main-header .title p {
  max-width: 50%;
}

/*------------------------------------------*/
/*------------- Featured Products -----------------*/
/*------------------------------------------*/

.card-product {
  display: flex;
  flex-direction: column;
  gap: 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* margin-bottom: 15px;
  padding: 8px; */
}

.card-product_wrapper.square {
  aspect-ratio: 1;
}

.card-product_wrapper .product-img {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  z-index: 0;
  width: 100%;
}

.card-product_wrapper.square img {
  aspect-ratio: 1;
}

.card-product_wrapper .img-product {
  z-index: 1;
  position: relative;
}

.card-product_wrapper img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition-duration: 700ms;
  border-radius: 10px;
}

.product-action_list {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  top: 8px;
  right: 8px;
  z-index: 6;
}

.product-action_list li {
  list-style: none;
}

.product-action_list .box-icon span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 10px 25px 0px rgba(43, 52, 74, 0.1215686275);
}

.box-icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.box-icon span i {
  line-height: 0;
  color: var(--color-3);
}

.card-product_wrapper {
  aspect-ratio: 0.75;
  z-index: 20;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-action_bot {
  position: absolute;
  bottom: 16px;
  right: 15px;
  left: 15px;
  z-index: 2;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-product_wrapper .tf-btn {
  box-shadow: 0px 10px 25px 0px rgba(43, 52, 74, 0.1215686275);
}

.card-product_info {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
}

.card-product_info .name-product {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-4);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .4px;
}

.price-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.price-wrap span {
  font-size: 16px;
  font-weight: 700;
}

.card-product:hover .variant-box,
.card-product:hover .product-action_bot,
.card-product:hover .product-btn_quick {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1200px) {
  .product-action_list {
    top: 12px;
    right: 12px;
  }

  .product-action_list li {
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .product-action_bot {
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .card-product:hover .product-action_list li {
    opacity: 1;
    visibility: visible;
  }

  .card-product:hover .product-action_list li:nth-child(1) {
    transform: translateX(0px);
  }

  .card-product:hover .product-action_list li:nth-child(2) {
    transform: translateX(0px);
    transition-delay: 0.1s;
  }

  .card-product:hover .product-action_list li:nth-child(3) {
    transform: translateX(0px);
    transition-delay: 0.2s;
  }


}



#instock .carousel-item,
#featured .carousel-item {
  max-width: inherit;
  width: auto;
}

/* 

.banner-bg-img {
  background-image: url(../img/hm-baner.jpg);
  background-position: center top;
  background-size: cover;
  padding: 50px;
  border-radius: 1em;
  max-height: 500px;
  height: 100%;
  display: block;
} */


/* 
.banner-bg-img:before {
  content: '';
  background-image: url(../img/india-map-icon.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
  opacity: .4;
  height: 150%;
  max-width: 600px;
  position: absolute;
  left: 0;
  transform: rotate(-29deg);
  width: 100%;
} */




/*-------------------------------------------------------------------------------
  Category Page
-------------------------------------------------------------------------------*/

.section-page-title {
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: right bottom;
}

.section-page-title .breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}

.section-page-title h1 {
  font-size: 3em;
  font-weight: 600;
}

.section-page-title .breadcrumbs p {
  margin-top: 0;
}

.section-page-title .breadcrumbs a {
  color: var(--color-4);
}

.section-page-title .breadcrumbs i {
  line-height: 0;
  vertical-align: middle;
}

.tf-shop-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px 8px;
  margin-top: -8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
  /* background: white; */
}

.tf-control-layout {
  display: flex;
  align-items: center;
  gap: 8px;
}


.tf-shop-control .tf-control-sorting {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.tf-dropdown-sort {
  min-width: 120px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.tf-dropdown-sort .btn-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
  gap: 12px;
}

.tf-dropdown-sort .icon {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-dropdown-sort .dropdown-menu {
  min-width: 200px;
  border: 1px solid var(--line);
  padding: 10px 5px;
  border-radius: 0px;
  max-height: 68vh;
  isolation: isolate;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  z-index: 99;
}

.tf-dropdown-sort .select-item {
  position: relative;
  text-transform: capitalize;
  color: var(--black);
  padding: 0 15px;
  line-height: 30px;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-dropdown-sort .select-item:hover,
.tf-dropdown-sort .select-item.active {
  background-color: #ebebeb;
}

.meta-filter-shop {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.gridLayout-wrapper #product-count-list {
  display: none;
}

.text-caption-01 {
  font-size: 14px;
  line-height: 22px;
}

.br-line {
  width: 1px;
  height: 16px;
  display: flex;
  background-color: var(--color-4);
}

.canvas-body .br-line {
  width: 100%;
  height: 1px;
}

.br-line.ver {
  width: 100%;
  height: 1px;
}

.meta-filter-shop #applied-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-filter-shop .filter-tag,
.meta-filter-shop .remove-all-filters {
  display: flex;
  align-items: center;
  text-transform: capitalize;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--color-3);
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  border: 0px;
}

.meta-filter-shop .filter-tag .icon,
.meta-filter-shop .remove-all-filters .icon {
  font-size: 12px;
}

.tf-page-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}

.tf-page-pagination .pag-item {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-4);
  font-weight: 600;
  color: #000;
}

.tf-page-pagination .pag-item.active,
.tf-page-pagination .pag-item:hover {
  border-color: var(--color-4);
  background: var(--color-3);
  color: #fff;
  margin: 0;
}



.canvas-wrapper {
  padding: 0;
  isolation: isolate;
  height: 100%;
  width: 100%;
  max-height: none;
  display: grid;
  grid-auto-rows: auto minmax(0, 1fr) auto;
  align-content: start;
}

.canvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  position: relative;
  text-transform: capitalize;
}

.canvas-filter .canvas-header {
  padding: 15px 24px;
  background: var(--color-2);
}

@media (min-width: 576px) {
  .canvas-filter .canvas-header {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.offcanvas .icon-close-popup {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 24px;
  z-index: 2;
}

.canvas-body {
  background-color: #fff;
  padding: 24px;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  flex: 1;
  color: #000;
}

@media (min-width: 576px) {
  .canvas-filter .canvas-body {
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.widget-facet {
  overflow: hidden;
}

@media (min-width: 1200px) {
  .canvas-filter.offcanvas .canvas-body>*:not(:last-child) {
    margin-bottom: 20px;
  }
}

.widget-facet .facet-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.widget-facet .facet-title .h5 {
  font-weight: 700;
  letter-spacing: 0px;
}

.filter-group-size {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 12px;
}

.filter-group-size .label-size {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-4);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.filter-group-size .label-size.over-size {
  width: auto;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 1000px;
}

.filter-group-check.group-category {
  max-height: 254px;
  overflow: auto;
}

.filter-group-check.manu-f-category {
  max-height: 100%;
  overflow: auto;
}

.filter-group-check .list-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.filter-group-check .list-item:not(:last-child) {
  margin-bottom: 12px;
}

.filter-group-check .label {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #000;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-check {
  position: relative;
  background: transparent;
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-4);
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  border-radius: 1px;
}

.tf-check.style-2 {
  width: 20px;
  height: 20px;
  border-radius: 3px;
}

.filter-group-check .tf-check {
  min-width: unset;
  aspect-ratio: 1;
}




@media (min-width: 1200px) {
  .tf-product-info-wrap {
    padding-left: 15px;
  }
}

.tf-product-info-wrap .tf-product-info-list {
  display: grid;
  gap: 24px;
}

.tf-product-info-wrap .tf-product-info-heading .product-infor-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.tf-product-info-wrap .tf-product-info-heading .meta_rate,
.tf-product-info-wrap .tf-product-info-heading .meta_sold {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tf-product-info-wrap .product-infor-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.tf-product-info-wrap .tf-product-info-heading .br-line {
  height: 12px;
}

.badge-sale {
  border-radius: 144px;
  background: var(--color-3);
  padding: 2px 8px;
  font-size: 12px;
}

.tf-product-info-wrap .product-infor-price .badge-sale {
  margin-left: 8px;
}

.wrapper-manuf {
  background: var(--color-1);
  padding: 15px 30px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.manu-f-logo img {
  max-width: 80px;
  height: 80px;
  width: 80px;
  border: 1px solid var(--color-2);
  border-radius: 100px;
  padding: 5px;
  overflow: hidden;
  margin-right: 10px;
  margin-bottom: 10px;
  object-fit: cover;
}

.manu-f-logo .h5 {
  font-weight: 600;
  color: var(--color-4);
}





/*-------------------------------------------------------------------------------
  Product Details Page
-------------------------------------------------------------------------------*/


.section-page-title-single .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.section-page-title-single .breadcrumbs a {
  color: #000;
}

.section-page-title-single .breadcrumbs p {
  margin-top: 0;
}

.tf-product-info-wrap .tf-product-variant {
  display: grid;
  gap: 20px;
}

.tf-product-info-wrap .tf-product-variant .variant-picker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tf-product-info-wrap .variant-color .variant-picker-values {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tf-product-info-wrap .variant-color .color-btn:not(.select-item, .style-image-text) {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
  border: 1px solid var(--color-2);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.tf-product-info-wrap .variant-color .color-btn.style-image {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 4px solid transparent;
  overflow: hidden;
}

.tf-product-info-wrap .variant-color .color-btn:not(.select-item, .style-image-text).active {
  border-color: var(--color4);
}

.tf-product-info-wrap .variant-color .color-btn.style-image .img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  aspect-ratio: 1;
}

.tf-product-info-wrap .variant-color .color-btn.style-image .img img {
  object-fit: cover;
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
}

.hover-tooltip .tooltip {
  font-family: "DM Sans", sans-serif;
  position: absolute;
  white-space: nowrap;
  padding: 2px 12px;
  border-radius: 2px;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  color: #fff;
  background-color: var(--color-4);
  transition: transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
  z-index: 5;
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.hover-tooltip .tooltip::before {
  content: "";
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  top: 22px;
  position: absolute;
  background: var(--color-4);
  width: 9px;
  height: 9px;
  z-index: -1;
}

.hover-tooltip.tooltip-bot .tooltip::before {
  bottom: -5px;
}

.hover-tooltip.tooltip-bot .tooltip {
  bottom: calc(100% + 9px);
  top: unset;
}

.hover-tooltip:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1200px) {
  .hover-tooltip .tooltip {
    display: block;
  }
}

.tf-product-info-wrap .tf-product-variant .variant-picker-values {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tf-product-info-wrap .variant-size .size-btn:not(.select-item, .style-radio) {
  min-width: 80px;
  width: auto;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 15px;
  border: 1px solid var(--color-4);
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tf-product-info-wrap .variant-size .size-btn:not(.select-item, .style-radio).active {
  background: var(--color-4);
  color: #fff;
  font-weight: bold;
  border-color: var(--color-3);
}

.tf-product-info-wrap .tf-product-total-quantity {
  display: grid;
  gap: 12px;
}

.tf-product-info-wrap .tf-product-total-quantity .group-action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wg-quantity {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--color-4);
  padding: 12px 19px;
  border-radius: 100px;
  overflow: hidden;
  min-width: 150px;
  flex-shrink: 0;
}

@media (min-width: 1200px) {
  .wg-quantity {
    min-width: 180px;
  }
}

.wg-quantity .quantity-product {
  width: 40px;
  padding: 0;
  background-color: transparent;
  border: 0;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  color: var(--black);
  pointer-events: none;
}

button {
  background: transparent;
  border: 0;
  display: inline-flex;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button i {
  font-size: 12px;
}

.wg-quantity .btn-quantity {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-4);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}






.tab-btn-wrap-v1 {
  display: flex;
  gap: 20px;
  position: relative;
  overflow: auto;
  white-space: nowrap;
  margin-bottom: 40px;
}

@media (min-width: 1200px) {
  .tab-btn-wrap-v1 {
    gap: 32px;
  }
}

.tab-btn-wrap-v1 .tf-btn-tab {
  padding-bottom: 14px;
  border-bottom: 2px solid transparent;
  display: flex;
  position: relative;
  z-index: 2;
  color: var(--color-4);
}

.tab-btn-wrap-v1 .tf-btn-tab.active {
  border-color: var(--color-3);
  color: var(--color-3);
}

.tab-btn-wrap-v1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #c3c3c3;
}


.flat-animate-tab {
  overflow: hidden;
}

.flat-animate-tab .tab-content {
  position: relative;
}

.flat-animate-tab .tab-pane.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
}

@media (min-width: 1440px) {
  .tab-content_desc:not(.desc-3, .desc-2) {
    gap: 80px;
  }
}

@media (min-width: 768px) {
  .tf-grid-layout.md-col-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.accordion-item {
  border-color: #fff;
}


/*-------------------------------------------------------------------------------
  CATEGORY Page
-------------------------------------------------------------------------------*/
.hover-img {
  position: relative;
  margin-bottom: 20px;

}

.hover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
  min-height: 400px;
}

.cate-image {
  border-radius: 16px;
  overflow: hidden;
  display: block;
}

.hover-img .cate-image {
  position: relative;
  overflow: hidden;
}

.cate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}

.hover-img .cate-image:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
  pointer-events: none;
}

.hover-img:hover .cate-image:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}


.cate-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.cate_name {
  padding: 8px 16px;
  background: var(--color-2);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .style-2 .cate_name {
    padding: 12px 20px;
  }
}






/*-------------------------------------------------------------------------------
  register step form
-------------------------------------------------------------------------------*/

label {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #00011c;
}

/* TITLE */
#title-container {
  height: 100%;
  color: #fff;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  display: grid;
  justify-content: center;
  align-items: center;
  max-width: 320px;
}

#title-container h2 {
  font-size: 45px;
  font-weight: 800;
  color: #fff;
  padding: 0;
  margin-bottom: 0px;
}

#title-container h3 {
  font-size: 25px;
  font-weight: 600;
  color: var(--color-3);
  padding: 0;
}

#title-container p {
  font-size: 17px;
  font-weight: 500;
  padding: 0 25px;
  line-height: 20px;
}

.covid-image {
  width: 214px;
  margin-bottom: 15px;
}

/* FORMS */
#qbox-container {
  background: url(../img/corona.png);
  background-repeat: repeat;
  position: relative;
  padding: 62px;
  min-height: 630px;
  /* box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
  -webkit-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75);
  -moz-box-shadow: 10px 8px 21px 0px rgba(204, 204, 204, 0.75); */
}

#steps-container {
  margin: auto;
  min-height: 420px;
  /* display: flex;
  vertical-align: middle;
  align-items: center; */
}

.step {
  display: none;
}

.step h4 {
  margin: 0 0 26px 0;
  padding: 0;
  position: relative;
  font-weight: 500;
  font-size: 23px;
  font-size: 1.4375rem;
  line-height: 1.6;
}

button#prev-btn,
button#next-btn,
button#submit-btn {
  font-size: 17px;
  font-weight: bold;
  position: relative;
  width: 130px;
  height: 50px;
  background: var(--color-2);
  margin: 0 auto;
  margin-top: 40px;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: color .3s;
  text-align: center;
  color: #000;
  border: 0;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

button#prev-btn:hover,
button#next-btn:hover,
button#submit-btn:hover {
  color: #fff;
}

button#prev-btn:after,
button#next-btn:after,
button#submit-btn:after {
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-4);
  content: "";
  z-index: -2;
  transition: transform .3s;
  color: #fff;
}

button#prev-btn:hover::after,
button#next-btn:hover::after,
button#submit-btn:hover::after {
  transform: translateY(-80%);
  transition: transform .3s;
}

.progress {
  border-radius: 0px !important;
  background-color: var(--color-2);
}

.q__question {
  position: relative;
}

.q__question:not(:last-child) {
  margin-bottom: 10px;
}

.question__input {
  position: absolute;
  left: -9999px;
}

.question__label {
  position: relative;
  display: block;
  line-height: 40px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  background-color: #fff;
  padding: 5px 20px 5px 50px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

.question__label:hover {
  border-color: #DC3545;
}

.question__label:before,
.question__label:after {
  position: absolute;
  content: "";
}

.question__label:before {
  top: 12px;
  left: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #ced4da;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.question__input:checked+.question__label:before {
  background-color: #DC3545;
  box-shadow: 0 0 0 0;
}

.question__input:checked+.question__label:after {
  top: 22px;
  left: 18px;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.form-check-input:checked,
.form-check-input:focus {
  background-color: #DC3545 !important;
  outline: none !important;
  border: none !important;
}

input:focus {
  outline: none;
}

#input-container {
  display: inline-block;
  box-shadow: none !important;
  margin-top: 36px !important;
}

label.form-check-label.radio-lb {
  margin-right: 15px;
}

#q-box__buttons {
  text-align: center;
}

input[type="text"],
input[type="email"] {
  padding: 8px 14px;
}

input[type="text"]:focus,
input[type="email"]:focus {
  border: 0px solid #DC3545;
  border-radius: 5px;
  outline: 0px !important;
  -webkit-appearance: none;
  box-shadow: none !important;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.form-check-input:checked[type=radio],
.form-check-input:checked[type=radio]:hover,
.form-check-input:checked[type=radio]:focus,
.form-check-input:checked[type=radio]:active {
  border: none !important;
  -webkit-outline: 0px !important;
  box-shadow: none !important;
}

.form-check-input:focus,
input[type="radio"]:hover {
  box-shadow: none;
  cursor: pointer !important;
}

#success {
  display: none;
}

#success h4 {
  color: #DC3545;
}

.back-link {
  font-weight: 700;
  color: #DC3545;
  text-decoration: none;
  font-size: 18px;
}

.back-link:hover {
  color: #82000a;
}

/* PRELOADER */
#preloader-wrapper {
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

#preloader {
  background-image: url('../img/preloader.png');
  width: 120px;
  height: 119px;
  border-top-color: #fff;
  border-radius: 100%;
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  margin: -75px 0 0 -75px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#preloader-wrapper .preloader-section {
  width: 51%;
  height: 100%;
  position: fixed;
  top: 0;
  background: #F7F9FF;
  z-index: 1000;
}

#preloader-wrapper .preloader-section.section-left {
  left: 0
}

#preloader-wrapper .preloader-section.section-right {
  right: 0;
}

.loaded #preloader-wrapper .preloader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #preloader-wrapper .preloader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #preloader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.loaded #preloader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

/* MEDIA QUERIES */
@media (min-width: 990px) and (max-width: 1199px) {
  #title-container {
    padding: 80px 28px 28px 28px;
  }

  #steps-container {
    width: 85%;
  }
}

@media (max-width: 991px) {
  #title-container {
    padding: 30px;
    min-height: inherit;
  }
}

@media (max-width: 767px) {
  #qbox-container {
    padding: 30px;
  }

  #steps-container {
    width: 100%;
    min-height: 400px;
  }

  #title-container {
    padding-top: 50px;
  }
}

@media (max-width: 560px) {
  #qbox-container {
    padding: 40px;
  }

  #title-container {
    padding-top: 45px;
  }
}

/*-------------------------------------------------------------------------------
  Services
-------------------------------------------------------------------------------*/

.vcard-container {
  min-width: 300px;
  background: var(--color-3);
  overflow: hidden;
}

/* .vcard-container .contact-vcard-btn .row > .col-4 {
  box-shadow: 0 -5px 40px 7px rgba(0, 0, 0, 0.08);
} */

.vcard-container .contact-vcard-btn .row>.col-4 {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.vcard-container .contact-vcard-btn .row>.col-4:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.vcard-container .vcard-header {
  text-align: center;
}

.vcard-header .row .vcard-info {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  /* box-shadow: 0 -5px 40px 7px rgba(0, 0, 0, 0.08); */
}

.vcard-container .vcard-header img {
  width: 100px;
  height: 100px;
  margin-top: 40px;
  border-radius: 50%;
  margin-bottom: 15px;
  background-color: #fff;
}

.vcard-container .vcard-header h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
}

.contact-vcard-btn .vcard-btn {
  padding: 15px 0;
  text-align: center;
}

.contact-vcard-btn:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.1);
}

.contact-vcard-btn a>i,
.contact-vcard-btn a>small {
  color: #fffefe;
  display: block;
}

.contact-vcard-btn a>small {
  font-size: 12px;
}

.contact-vcard-btn a>i {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-vcard-btn a {
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

/*************/
.vcard-body .row .bg-body {
  padding: 10px 60px 30px 60px;
  margin-bottom: 60px;
  box-shadow: 0 -5px 40px 7px rgba(0, 0, 0, 0.08);
}

.vcard-body .list-item {
  position: relative;
  padding: 30px 30px 30px 60px;
  border-bottom: 1px solid #eaeaea;
}

.vcard-body .list-item a {
  color: #323032;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.vcard-body .list-item i.fa-solid {
  top: 35px;
  left: 20px;
  color: #82848f;
  font-size: 20px;
  position: absolute;
}

.vcard-body .list-item a>small {
  color: #82848f;
  display: block;
}

.vcard-body .list-item.social-media .list-title {
  color: #82848f;
  font-size: 16px;
  margin-bottom: 40px;
}

.vcard-body .list-item.social-media a>i {
  font-size: 18px;
  margin-bottom: 8px;
}

.vcard-body .list-item.social-media a {
  font-size: 14px;
  font-weight: 600;
  margin-right: 15px;
  text-decoration: none;
  display: inline-block;
}

.vcard-body .list-item.social-media a>i {
  color: #fff;
  padding: 10px 12px;
  font-size: 25px;
  border-radius: 50%;
}

.vcard-body .list-item.social-media a.whatsapp>i {
  background-color: #25d366;
}

.vcard-body .list-item.social-media a.linkedin>i {
  background-color: #0077b5;
}

.vcard-body .list-item .btn.show-map-btn {
  border-radius: 0;
  border-color: #e1e1e1;
  background-color: #fff;
}

.vcard-body .list-item .btn.show-map-btn:hover {
  background-color: #eee;
}

.vcard-body .list-item .btn.btn-vcard {
  color: #fff;
  width: 100%;
  height: 56px;
  padding: 15px;
  display: block;
  border-radius: 2px;
  background: rgb(77, 114, 135);
  box-shadow: 0px 10px 14.1px 0.9px rgba(0, 0, 0, 0.24), 0px 4px 19.6px 0.4px rgba(0, 0, 0, 0.16);
}

.vcard-body .list-item .btn.btn-vcard:hover {
  box-shadow: 0px 20px 28.2px 0.9px rgba(0, 0, 0, 0.24), 0px 8px 40.18px 0.82px rgba(0, 0, 0, 0.16);
  color: #fff;
}



/*-------------------------------------------------------------------------------
  Footer
-------------------------------------------------------------------------------*/

.box-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: start;
}

.box-icon .icon {
  margin-bottom: 0;
  font-size: 60px;
  line-height: 1;
}

.box-icon .content .title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.box-icon .content p {
  font-size: 14px;
  font-weight: 500;
  color: #c6c6c6;
}

footer .bdr-btm-offwhite {
  border-bottom: .5px solid #c6c6c6;
}

footer .bdr-right-offwhite {
  border-right: .5px solid #c6c6c6;
}

footer .bdr-top-offwhite {
  border-top: .5px solid #c6c6c6;
}

footer .footer-link-list {
  display: flex;
  justify-content: center;
  gap: 140px;
}

footer .footer-menu-list {
  color: #fff;
  display: inline-block;
  display: grid;
  gap: 8px;
  padding: 0px;
}

footer .footer-menu-list li {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

footer .footer-menu-list li a {
  color: #c6c6c6;
  font-size: 15px;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 20px;
}

.clr-text-light {
  color: #c6c6c6;
}





/*-------------------------------------------------------------------------------
  About Page
-------------------------------------------------------------------------------*/


.about-img-wrap {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(26, 41, 82, 0.08);
  transition: box-shadow 0.5s ease;
}

.about-img-wrap img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  display: block;
}

.about-img-wrap:hover {
  box-shadow: 0 20px 45px rgba(26, 41, 82, 0.16);
}

.about-img-wrap:hover img {
  transform: scale(1.05);
}

.about-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(26, 41, 82, 0.1);
  margin-bottom: 10px;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.about-accordion .accordion-item:hover {
  border-bottom-color: var(--color-3);
}

.about-accordion .accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--color-2);
  color: var(--color-4);
  font-family: "Caudex", serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 0;
  padding: 1.25rem 1.5rem;
  box-shadow: none;
  transition: all 0.3s ease;
}

.about-accordion .accordion-button::after {
  display: none !important;
  /* Hide default Bootstrap arrow */
}

.about-accordion .accordion-button:not(.collapsed) {
  background-color: rgba(231, 238, 255, 0.4);
  /* soft overlay of var(--color-1) */
  color: var(--color-3);
  box-shadow: none;
}

.about-accordion .accordion-title-text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-accordion .accordion-title-text i {
  font-size: 1.4rem;
  color: var(--color-3);
  transition: transform 0.3s ease;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.about-accordion .accordion-button:not(.collapsed) .accordion-title-text i {
  transform: scale(1.15);
}

.about-accordion .toggle-arrow {
  transition: transform 0.3s ease, color 0.3s ease;
  font-size: 1.2rem;
  color: var(--color-4);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.about-accordion .accordion-button:not(.collapsed) .toggle-arrow {
  transform: rotate(180deg);
  color: var(--color-3);
}

.about-accordion .accordion-body {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(26, 41, 82, 0.8);
  padding: 1.5rem;
  background-color: rgba(231, 238, 255, 0.1);
  border-top: 1px solid rgba(26, 41, 82, 0.05);
}

.creative-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  padding: 0;
  margin: 20px 0 0 0;
  list-style: none;
}

.creative-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-4);
  box-shadow: 0 4px 15px rgba(26, 41, 82, 0.03);
  border: 1px solid rgba(26, 41, 82, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.creative-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 41, 82, 0.08);
  border-color: var(--color-3);
}

.creative-list li i {
  color: var(--color-3);
  font-size: 1.15rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(167, 127, 96, 0.1);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-slide-wpr {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(26, 41, 82, 0.08);
  margin-top: 40px;
  margin-bottom: 40px;
}

.about-slide-wpr img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  object-position: center;
}

.product-delivery {
  display: flex;
  align-items: center;
  gap: 8px;
}

/*-------------------------------------------------------------------------------
  Media Query
-------------------------------------------------------------------------------*/
@media only screen and (max-width: 1130px) {
  .navbar-nav li a {
    padding-left: 7px;
    padding-right: 7px;
  }

  .cta a {
    padding: 10px;
  }


  .p-120 {
    padding: 60px;
  }

}

@media only screen and (min-width: 992px) {

  .navbar .dropdown:hover>.dropdown-menu {
    display: block;
  }

  .navbar .dropdown>.dropdown-toggle:active {
    pointer-events: none;
  }

}

@media only screen and (max-width: 991px) {

  header {
    position: inherit;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #navbar_top.navbar {
    height: 51px;
  }

  #navbar_top .navbar-nav li {
    text-align: start;
  }

  #navbar_top .navbar-collapse {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    background: var(--color-2);
    z-index: 1;
  }

  .navbar-nav li a.dropdown-toggle {
    position: absolute !important;
    top: 50%;
    right: 5px;
    transform: translateY(0%);
    height: auto;
  }

  #navbar_top .navbar-nav .dropdown-menu {
    background: var(--color-1);
  }

  #navbar_top .navbar-nav li a.dropdown-item {
    justify-content: start;
    margin-left: 25px;
  }

  .fixed-top {
    position: inherit !important;
  }


  .header-text h1 {
    font-size: 2em;
  }

  .header-text h2 {
    font-size: 2em;
  }


  .cta-content {
    margin-left: 0px;
    margin-top: 5%;
  }

  .about-img2 img {
    width: 100%;
  }

  .p-120 {
    padding: 20px;
  }

  #tagline .plr-100 {
    padding-left: 50px;
    padding-right: 50px;
  }

  .fetrd-cat-img img {
    height: 220px;
  }
}

@media only screen and (min-width: 767px) {}


@media only screen and (max-width: 768px) {
  .about-img1 img {
    width: 100%;
  }

  .about-img2 {
    left: 0px;
  }


  #cosmatic-surgery {
    padding: 0px;
    background-image: none;
  }

  #tagline .sec-left h1,
  #tagline .sec-right h1 {
    font-size: 2.3em;
  }

  #tagline {
    background-color: #F5DEB3;
    background: linear-gradient(180deg, rgba(245, 222, 179, 1) 0%, rgba(228, 201, 161, 1) 50%, rgba(174, 135, 103, 1) 50%, rgba(167, 127, 96, 1) 100%);
    position: relative;

    /* background: #E7EEFF;
  background: linear-gradient(90deg, rgba(231, 238, 255, 1) 0%, rgba(231, 238, 255, 1) 50%, rgba(26, 41, 82, 1) 50%, rgba(26, 41, 82, 1) 100%); */
  }



  #tagline .plr-100 {
    padding-left: 100px;
    padding-right: 100px;
  }

  #tagline .sec-left {
    background-color: var(--color-2);
  }

  #tagline .sec-right {
    background-color: var(--color-3);
  }

}

@media only screen and (max-width: 646px) {
  .about-img1 img {
    width: 100%;
  }

  #vision-correction .p-100 {
    margin-top: 100px;
    padding: 30px;
  }

  .about-img2 {
    bottom: -100px;
  }

  .demo-gallery>ul>li a>img {
    max-height: 200px;
  }

  .carousel-control-prev {
    left: -50px;
  }

  .carousel-control-next {
    right: -50px;
  }

  .plr-100 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .plr-50 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .p-60 {
    padding: 30px;
  }

  .p-100 {
    padding: 40px;
  }

  .about-img .about-name {
    font-size: 20px;
  }

  .about-img .about-name {
    position: inherit;
  }

  #about .plr-50 {
    padding-left: 20px;
    padding-right: 20px;
  }

  #contact .p-60 {
    padding: 20px;
    text-align: center;
  }

  #contact h3 {
    text-align: center;
  }

  .contact-details div {
    text-align: center !important;
  }

  .dr-img .dr-name {
    right: -5px;
  }

  footer .footer-link-list {
    gap: 80px;
  }
}

@media only screen and (max-width: 575px) {
  footer .footer-link-list {
    gap: 30px;
  }

  footer .p-50 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  footer {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 430px) {
  .navbar .navbar-brand img {
    max-width: 60px;
  }

  .header-text {
    top: 40%;
  }

  .header-text h1 {
    font-size: 1.5em !important;
    margin-bottom: 0;
  }

  .header-text h2 {
    font-size: 1.5em;
  }



  #tagline .plr-100 {
    padding-left: 30px;
    padding-right: 30px;
  }

  footer .footer-link-list {
    display: grid;
    justify-content: start;
    gap: 40px;
  }

}

@media only screen and (max-width: 320px) {
  #contact .justify-content-center:first-child {
    padding: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .h-captcha {
    transform: scale(0.78);
    margin-left: -9vw;
  }

  h1 {
    font-size: 2.5rem !important;
  }
}