/* 
======================================
CSS rests start
======================================
*/
/*google font*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;700;800;900&display=swap");
/*Box sizing rules*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
ol,
ul,
figure {
  margin: 0;
  padding: 0;
}

p {
  font-size: 16px;
}
@media screen and (max-width: 992px) {
  p {
    font-size: 14px;
  }
}

/* Remove list styles (bullets, numbering) */
ol,
ul {
  list-style: none;
}

/* Remove anchor (link) text decoration */
a {
  text-decoration: none;
  color: inherit;
}

/* Set default font family and size */
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #0A0A0B;
  scroll-behavior: smooth;
}

/* Remove input and button styling */
input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: none;
  outline: none;
  background-color: transparent;
}

/* Remove form field outline on focus */
input:focus,
button:focus,
textarea:focus {
  outline: none;
}

/* Set max-width on images to prevent them from overflowing */
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* 
======================================
CSS rests end
======================================
*/
/*breakpoints*/
h1 {
  font-size: 100px;
}

h2 {
  font-size: 64px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 30px;
}

h5 {
  font-size: 24px;
}

.vertical-align {
  vertical-align: middle;
}

.section_gap__top {
  padding-top: 90px;
}

.section_gap__bottom {
  padding-bottom: 90px;
}

.title_gap__bottom {
  padding-bottom: 50px;
}

.custom-container {
  max-width: 1784px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 992px) {
  .custom-container {
    padding-right: 14px;
    padding-left: 14px;
  }
}

.ff-inter {
  font-family: "Inter", sans-serif;
}

.section__title {
  font-weight: 500;
  font-size: 64px;
  line-height: 1.3;
  color: #0A0A0B;
}
@media screen and (max-width: 1200px) {
  .section__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 992px) {
  .section__title {
    font-size: 44px;
  }
}
@media screen and (max-width: 576px) {
  .section__title {
    font-size: 34px;
  }
}

.section_title__md h3, .section_title__md h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 140%;
  color: #0A0A0B;
}
@media screen and (max-width: 1200px) {
  .section_title__md h3, .section_title__md h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 576px) {
  .section_title__md h3, .section_title__md h2 {
    font-size: 26px;
  }
}

.section_sub__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #707174;
}

/*mixin button*/
.btn__primary {
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  padding: 12.5px 32px;
  background: #0A0A0B;
  border-radius: 6px;
  display: inline-block;
  text-align: center;
  border: 1px solid #0A0A0B;
  transition: all 0.4s;
}
.btn__primary:hover {
  letter-spacing: 0.5px;
  color: #fff;
  background: #BEA95E;
  border-color: #BEA95E;
}
@media screen and (max-width: 992px) {
  .btn__primary {
    font-size: 14px;
    padding: 12px 30px;
  }
}
.btn__primary.varient-gray {
  background: #363739;
}
.btn__primary.varient-gray:hover {
  color: #fff;
  background: #BEA95E;
}
.btn__primary.verient-2 {
  font-size: 14px;
  padding: 9px 24px;
}
.btn__primary.outlined {
  background: transparent;
  color: #0A0A0B;
}

.btn__outlined {
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  padding: 13px 50px;
  background: transparent;
  border-radius: 6px;
  display: inline-block;
  text-align: center;
  border: 1px solid #FFFFFF;
  transition: all 0.4s;
}
.btn__outlined:hover {
  letter-spacing: 0.5px;
  color: #fff;
  background: #BEA95E;
  border-color: #BEA95E;
}
@media screen and (max-width: 992px) {
  .btn__outlined {
    font-size: 14px;
    padding: 12px 40px;
  }
}

.btn-full-width {
  padding: 6px 32px;
  height: 47px;
  border: 1px solid #CCCCCC;
  text-transform: uppercase;
  color: #707174;
  width: 100%;
  transition: all 0.5s;
}
.btn-full-width:hover {
  background: #0A0A0B;
  border-color: #0A0A0B;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .btn-full-width {
    font-size: 14px;
    height: 44px;
  }
}

.btn-full-width-xl {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 400;
  background: #0A0A0B;
  display: block;
  text-align: center;
  padding: 15px 20px;
  border: 1px solid #0A0A0B;
  transition: all 0.35s;
}
.btn-full-width-xl:hover {
  color: #fff;
  background: #BEA95E;
  border-color: #BEA95E;
}
.btn-full-width-xl.outlined {
  color: #707174;
  border: 1px solid #707174;
  background: transparent;
}
.btn-full-width-xl.outlined:hover {
  color: #0A0A0B;
  border-color: #0A0A0B;
}
@media screen and (max-width: 1200px) {
  .btn-full-width-xl {
    padding: 12px 20px;
  }
}
@media screen and (max-width: 992px) {
  .btn-full-width-xl {
    padding: 8px 20px;
    font-size: 14px;
  }
}

.breadcrumb__style {
  padding: 40px 0;
  border-bottom: 1px solid #EBEBEB;
}
@media screen and (max-width: 992px) {
  .breadcrumb__style {
    padding: 30px 0;
  }
}
.breadcrumb__style .breadcrumb__list li {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  display: inline-block;
  padding: 0 8px;
  position: relative;
}
.breadcrumb__style .breadcrumb__list li::before {
  position: absolute;
  right: -3px;
  content: "/";
  color: #707174;
}
.breadcrumb__style .breadcrumb__list li:first-child {
  padding-left: 0;
}
.breadcrumb__style .breadcrumb__list li:last-child {
  padding-right: 0;
}
.breadcrumb__style .breadcrumb__list li:last-child::before {
  display: none;
}
.breadcrumb__style .breadcrumb__list li a {
  color: #707174;
}
.breadcrumb__style .breadcrumb__list li a.active__page {
  color: #0A0A0B;
}
.breadcrumb__style .breadcrumb__title {
  margin-top: 12px;
  font-size: 64px;
  line-height: 1;
  color: #0A0A0B;
}
@media screen and (max-width: 1200px) {
  .breadcrumb__style .breadcrumb__title {
    font-size: 44px;
  }
}
@media screen and (max-width: 992px) {
  .breadcrumb__style .breadcrumb__title {
    font-size: 34px;
  }
}
.breadcrumb__style .breadcrumb__disc {
  font-weight: 400;
  line-height: 140%;
  color: #707174;
}

.common__dropdown {
  z-index: 9;
  width: 260px;
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  border-radius: 8px;
  padding: 16px 20px;
  background: #fff;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all 0.35s;
}
.common__dropdown.common_dropdown__active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.logged-in {
  padding-top: 32px;
}

.woocommerce-breadcrumb {
  display: none;
}

/*topbar style start*/
.topbar__style {
  background: #0a0a0b;
  padding: 5px 0;
}
.topbar__style .topbar__list li {
  padding: 0 10px;
  position: relative;
}
.topbar__style .topbar__list li a {
  color: #fff;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .topbar__style .topbar__list li a {
    font-size: 12px;
  }
}
.topbar__style .topbar__list li:not(:last-child)::before {
  position: absolute;
  height: 60%;
  width: 1px;
  content: "";
  background: #fff;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*Header & Searchbar style start*/
.header-area {
  transition: all 0.3s;
  padding: 10px 0;
  background: #ffffff;
  border-bottom: 1px solid #e1e1e1;
  position: relative;
  z-index: 99;
}

.header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 21;
  padding: 0;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5px 0;
}

.hamburger-menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  margin-left: 5px;
}

.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 1;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 1;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 1;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 1;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 1;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 1;
}

.main-navigation .navigation .menu-item {
  font-size: 14px;
  color: #000000;
  text-transform: capitalize;
  font-weight: 500;
  position: relative;
}
.main-navigation .navigation .menu-item i > a {
  transition: all 0.25s;
}
.main-navigation .navigation > .menu-item {
  display: inline-block;
  margin: 10px 5px;
  position: relative;
}
.main-navigation .navigation > .menu-item > a {
  display: block;
  padding: 0 20px;
  position: relative;
  transition: all 0.2s;
}
.main-navigation .navigation > .menu-item > a:hover {
  font-weight: 600;
  color: #0a0a0b;
}
.main-navigation .navigation > .menu-item.has-submenu {
  position: relative;
}
.main-navigation .navigation > .menu-item.has-submenu > a::before {
  transition: all 0.25s;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.25s;
  height: 20px;
  width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}
@media screen and (max-width: 1200px) {
  .main-navigation .navigation > .menu-item.has-submenu > a::before {
    display: none;
  }
}
.main-navigation .navigation > .menu-item.has-submenu .sub-menu {
  position: absolute;
  background: #ffffff;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.08);
  width: 200px;
  padding: 12px 0px;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
}
@media screen and (min-width: 1200px) {
  .main-navigation .navigation > .menu-item.has-submenu .sub-menu {
    height: auto !important;
  }
}
@media screen and (min-width: 1200px) {
  .main-navigation .navigation > .menu-item.has-submenu .sub-menu li .sub-menu {
    left: 150%;
    top: 0;
    opacity: 0;
    visibility: hidden;
  }
}
.main-navigation .navigation > .menu-item.has-submenu .sub-menu li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.main-navigation .navigation > .menu-item.has-submenu .sub-menu > .menu-item a {
  padding: 10px 15px;
  display: block;
  transition: all 0.2s;
}
.main-navigation .navigation > .menu-item.has-submenu .sub-menu > .menu-item a:hover {
  color: #0a0a0b;
  background: #fafafa;
  font-weight: 600;
}
.main-navigation .navigation > .menu-item.has-submenu .sub-menu > .menu-item.menu-item-has-children {
  position: relative;
}
.main-navigation .navigation > .menu-item.has-submenu .sub-menu > .menu-item.menu-item-has-children::before {
  transition: all 0.25s;
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.25s;
  height: 20px;
  width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='1' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-right'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}
@media screen and (max-width: 1200px) {
  .main-navigation .navigation > .menu-item.has-submenu .sub-menu > .menu-item.menu-item-has-children::before {
    display: none;
  }
}
.main-navigation .navigation > .menu-item.has-submenu:hover .sub-menu {
  top: 100%;
  transform: translateX(-50%);
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1200px) {
  .main-navigation {
    background: #fff;
    position: fixed;
    left: 0;
    width: 290px;
    height: 100%;
    min-height: 100vh;
    top: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  }
  .main-navigation.mobile-nav__active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .main-navigation .navigation > .menu-item {
    display: block;
    border-bottom: 1px solid #f4f4f4;
    padding: 0 0;
    margin: 0 0;
  }
  .main-navigation .navigation > .menu-item > a {
    padding: 10px 20px;
    margin-right: 40px;
  }
  .main-navigation .navigation > .menu-item.has-submenu > a::before {
    right: 15px;
  }
  .main-navigation .navigation > .menu-item.has-submenu > a.link_active::before {
    transform: rotate(180deg);
    transform-origin: center 24%;
  }
  .main-navigation .navigation > .menu-item.has-submenu .sub-menu {
    display: block;
    position: static;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    width: auto;
    margin-left: 20px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .main-navigation .navigation > .menu-item.has-submenu .sub-menu.open {
    max-height: unset;
    transition: max-height 0.3s ease;
  }
  .main-navigation .navigation > .menu-item.has-submenu .sub-menu.nav-show {
    height: auto;
    transition: height 0.3s;
  }
  .main-navigation .navigation > .menu-item.has-submenu:hover .sub-menu {
    top: unset;
    transform: unset;
    opacity: unset;
    visibility: unset;
  }
}

.dropdown__icon {
  display: none;
}
@media screen and (max-width: 1200px) {
  .dropdown__icon {
    display: block;
    font-style: normal;
    font-size: 20px;
    position: absolute;
    right: 15px;
    top: 5px;
  }
}

.sidebar__logo {
  margin-left: 20px;
  margin-top: 30px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .main-navigation {
    overflow-y: scroll;
  }
}
.admin-bar .search__modal .modal-dialog {
  margin-top: 128px;
}

.search__modal .modal-dialog {
  margin-top: 98px;
}

.search__modal .modal-dialog {
  max-width: 1262px;
}
.search__modal .modal-content {
  background: #ffffff;
  border: 1px solid #e6e5e5;
  border-radius: 16px;
  overflow: hidden;
}
.search__modal .modal-body {
  padding: 0;
}
.search__modal .modal-body .search__input {
  padding: 16px 30px;
}
@media screen and (max-width: 768px) {
  .search__modal .modal-body .search__input {
    padding: 16px 20px;
  }
}
.search__modal .modal-body .search__input input {
  padding: 0 10px;
}
.search__modal .modal-body .search__input input::placeholder {
  font-size: 14px;
  color: #707174;
}
.search__modal .modal-body .search__result {
  padding: 30px 15px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
}
.search__modal .modal-body .search__result .search_result__list li {
  margin-bottom: 8px;
}
.search__modal .modal-body .search__result .search_result__list li:not(:first-child) {
  margin-top: 8px;
}
.search__modal .modal-body .search__result .search_result__list li svg {
  margin-right: 8px;
  flex-shrink: 0;
}
.search__modal .modal-body .search__result .search_result__list li a {
  display: block;
  color: #363739;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #363739;
  transition: all 0.3s;
  padding: 8px 15px;
}
.search__modal .modal-body .search__result .search_result__list li a:hover {
  background: #fafafa;
}
@media screen and (max-width: 992px) {
  .search__modal .modal-body .search__result .search_result__list li {
    font-size: 12px;
  }
  .search__modal .modal-body .search__result .search_result__list li svg {
    max-width: 14px;
  }
}

.search_item__wrap {
  padding-top: 20px;
}
.search_item__wrap > h5 {
  font-size: 24px;
  color: #000000;
  margin-bottom: 12px;
  margin-left: 15px;
}
@media screen and (max-width: 992px) {
  .search_item__wrap {
    padding-top: 15px;
  }
  .search_item__wrap h5 {
    font-size: 18px;
  }
}

.single_search__item {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  transition: 0.3s;
}
.single_search__item:hover {
  background: #fafafa;
}
.single_search__item .si__thumb {
  max-width: 48px;
  flex-shrink: 0;
  margin-right: 16px;
}
.single_search__item .si__thumb img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .single_search__item .si__thumb {
    max-width: 40px;
    margin-right: 10px;
  }
}
.single_search__item .si__disc h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #363739;
}
.single_search__item .si__disc p {
  font-weight: 400;
  line-height: 140%;
  color: #707174;
}
@media screen and (max-width: 768px) {
  .single_search__item .si__disc h5 {
    font-size: 14px;
  }
  .single_search__item .si__disc p {
    font-size: 12px;
  }
}

/*Header style end*/
/*hero style start*/
/*hero style two*/
.hero_style__two .hero__container {
  margin-left: calc((100% - 1723px) / 2);
  overflow: hidden;
}

@media screen and (max-width: 1800px) {
  .hero_style__two .hero__container {
    margin-left: 0;
    padding-left: 14px;
  }
}
@media screen and (max-width: 992px) {
  .hero_style__two .hero__container {
    padding-left: 0;
  }
}
.hero__content {
  padding: 140px 0;
  max-width: 740px;
}

.hero__content h1 {
  color: #0A0A0B;
  font-size: 75px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}

.hero__content .hero__btn {
  max-width: 522px;
  margin-top: 90px;
}

.hero__content p {
  color: #707174;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-top: 22px;
}

@media screen and (max-width: 1400px) {
  .hero__content {
    padding: 100px 0;
  }
}
@media screen and (max-width: 992px) {
  .hero__content {
    text-align: center;
    padding: 80px 14px;
    padding-bottom: 40px;
  }
  .hero__content .hero__btn {
    margin: 0 auto;
    margin-top: 50px;
  }
  .hero__content h1 {
    font-size: 44px;
  }
  .hero__content p {
    font-size: 16px;
  }
}
@media screen and (max-width: 567px) {
  .hero__content h1 {
    font-size: 34px;
  }
}
.hero__image .simpleParallax {
  height: 100%;
}

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

.hero_style__start {
  padding-top: 72px;
}

.hero__img {
  padding-top: 40px;
}
.hero__img img {
  min-height: 220px;
  object-fit: cover;
}

.hero_right__content h1 {
  font-weight: 300;
  line-height: 106%;
  text-transform: uppercase;
  color: #0a0a0b;
}
@media screen and (max-width: 1800px) {
  .hero_right__content h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 1400px) {
  .hero_right__content h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 1400px) {
  .hero_right__content h1 {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .hero_right__content h1 {
    font-size: 34px;
  }
}

.hero_left__content {
  margin-top: 10px;
}
@media screen and (max-width: 992px) {
  .hero_left__content {
    margin-top: 0;
  }
}
.hero_left__content p {
  font-weight: 400;
  line-height: 150%;
  color: #363739;
}
.hero_left__content .hero__btn {
  margin-top: 60px;
}
@media screen and (max-width: 1400px) {
  .hero_left__content .hero__btn {
    margin-top: 40px;
  }
}

@media screen and (max-width: 992px) {
  .nav-logo {
    max-width: 50px;
  }
}

.nav__actions > li:not(:last-child) {
  margin-right: 22px;
}
@media screen and (max-width: 1200px) {
  .nav__actions li:not(:last-child) {
    margin-right: 5px;
  }
  .nav__actions li svg {
    max-width: 20px;
  }
}

.nav_search__button {
  display: flex;
  align-items: center;
  background: #f2f2f2;
  border: 1px solid #e6e5e5;
  border-radius: 16px;
  font-weight: 400;
  font-size: 14px;
  color: #aeaeae;
  padding: 12px 16px;
  margin-right: 80px;
  margin-left: 80px;
  min-width: 32%;
}
.nav_search__button svg {
  max-width: 18px;
}
.nav_search__button span {
  margin-left: 10px;
}
@media screen and (max-width: 1400px) {
  .nav_search__button {
    margin-right: 30px;
    margin-left: 30px;
    min-width: 20%;
  }
}
@media screen and (max-width: 992px) {
  .nav_search__button {
    padding: 0 0;
    background: transparent;
    margin-left: 0;
    width: auto;
    border: none;
    min-width: auto;
    margin-right: 16px;
    margin-top: 1px;
  }
  .nav_search__button span {
    display: none;
  }
  .nav_search__button svg {
    max-width: 20px;
  }
}

/*hero style end*/
/*category style start*/
.category__pills {
  justify-content: center;
}
.category__pills > li {
  margin-top: 10px;
}
.category__pills > li:not(:last-child) {
  margin-right: 16px;
}
.category__pills .nav-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  color: #707174;
  padding: 14px 18px;
  border: 1px solid #d1d1d1;
  border-radius: 6px;
}
.category__pills .nav-link.active {
  background: #363739;
}
@media screen and (max-width: 992px) {
  .category__pills .nav-link {
    font-size: 14px;
    padding: 12px 14px;
  }
}
@media screen and (max-width: 576px) {
  .category__pills .nav-link {
    font-size: 12px;
    padding: 8px 10px;
  }
}

.category__contents {
  margin-left: calc((100% - 1723px) / 2);
  overflow: hidden;
  margin-top: 36px;
}
@media screen and (max-width: 1200px) {
  .category__contents {
    margin-left: 0;
  }
}
.category__contents .tab-pane {
  transform: translateY(15px);
  transition: all 0.2s;
}
.category__contents .tab-pane.active.show {
  transform: translateY(0);
}

.category__item {
  position: relative;
  overflow: hidden;
  display: block;
}
.category__item .category_item__thumb {
  overflow: hidden;
}
.category__item .category_item__thumb img {
  width: 100%;
}
.category__item .category__overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: scale(1.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s;
}
@media screen and (max-width: 576px) {
  .category__item .category__overlay {
    padding: 14px;
  }
}
.category__item .category__overlay .category__title {
  color: #ffffff;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .category__item .category__overlay .category__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .category__item .category__overlay .category__title {
    font-size: 14px;
  }
}
.category__item .category__overlay .category__disc {
  margin-top: 6px;
  font-weight: 500;
  font-size: 13px;
  line-height: 120%;
  color: #ffffff;
}
@media screen and (max-width: 576px) {
  .category__item .category__overlay .category__disc {
    font-size: 11px;
  }
}
.category__item .category__overlay .category__btn {
  margin-top: 7px;
}
.category__item .category__overlay .category__btn span {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 576px) {
  .category__item .category__overlay .category__btn span {
    font-size: 12px;
  }
}
.category__item .category__overlay .category__btn span i,
.category__item .category__overlay .category__btn span svg {
  margin-left: 4px;
  transition: 0.25s;
}
.category__item .category__overlay .category__btn:hover i,
.category__item .category__overlay .category__btn:hover svg {
  transform: rotate(45deg);
}
.category__item:hover .category__overlay {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

/*category style end*/
/*newslatter style start*/
.newslatter__wrap {
  background: #0a0a0b;
  border-radius: 8px;
  overflow: hidden;
}

.newslatter__content {
  max-width: 560px;
}
.newslatter__content .newslatter__title {
  font-weight: 300;
  line-height: 117%;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .newslatter__content .newslatter__title {
    font-size: 34px;
  }
}
.newslatter__content .newslatter_input__wrap {
  margin-top: 34px;
  position: relative;
}
.newslatter__content .newslatter_input__wrap .field__icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.newslatter__content .newslatter_input__wrap .field__icon svg {
  transition: all 0.35s;
}
.newslatter__content .newslatter_input__wrap input {
  font-size: 24px;
  color: #fff;
  border-bottom: 1px solid #888888;
  width: 100%;
  transition: all 0.35s;
  padding: 8px 0;
}
@media screen and (max-width: 992px) {
  .newslatter__content .newslatter_input__wrap input {
    font-size: 18px;
  }
}
.newslatter__content .newslatter_input__wrap input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.newslatter__content .newslatter_input__wrap input:focus {
  border-bottom: 1px solid #c5c4c4;
}
.newslatter__content .newslatter_input__wrap input:focus + .field__icon svg {
  transform: rotate(45deg);
}

/*newslatter style end*/
/*footer style start*/
.footer__style {
  background-color: #0A0A0B;
  padding-bottom: 25px;
  padding-top: 68px;
}

.footer__widget .footer_widget_title__sm {
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .footer__widget .footer_widget_title__sm {
    margin-bottom: 20px;
  }
}
.footer__widget .footer_widget__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  .footer__widget .footer_widget__title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.footer__about .footer_about__disc {
  margin-left: 60px;
  max-width: 250px;
}
@media screen and (max-width: 1200px) {
  .footer__about .footer_about__disc {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media screen and (max-width: 992px) {
  .footer__about .footer_about__disc {
    margin: 0 auto;
    margin-top: 20px;
  }
}
.footer__about .footer__contact li {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
}
.footer__about .footer__contact li:not(:first-child) {
  margin-top: 16px;
}
.footer__about .footer__contact li a {
  color: inherit;
}
@media screen and (max-width: 1200px) {
  .footer__about .footer__contact li {
    font-size: 14px;
  }
}

.copyright__wrap {
  padding-top: 58px;
  font-weight: 400;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.6);
}
.copyright__wrap p {
  font-size: 12px;
}

.footer_link__list li {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.6);
}
.footer_link__list li:not(:first-child) {
  margin-top: 16px;
}
.footer_link__list li a {
  color: inherit;
  display: inline-block;
}

.newslatter_input {
  position: relative;
}
.newslatter_input input {
  border: 1px solid #888888;
  border-radius: 8px;
  color: #fff;
  width: 287px;
  padding: 7px 24px 7px 10px;
  font-size: 14px;
}
.newslatter_input input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.newslatter_input input:focus {
  border-color: #c59854;
}
@media screen and (max-width: 992px) {
  .newslatter_input input {
    width: 250px;
  }
}
.newslatter_input .input__arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.social_links__wrap {
  margin-top: 32px;
}
.social_links__wrap h5 {
  font-weight: 600;
  font-size: 20px;
  margin-top: 8px;
  margin-right: 17px;
}
.social_links__wrap .social__links li {
  margin-top: 8px;
}
.social_links__wrap .social__links li:not(:last-child) {
  margin-right: 16px;
}
.social_links__wrap .social__links li a {
  color: red;
  display: inline-flex;
  width: 30px;
  color: #0a0a0b;
  transition: 0.25s;
  justify-content: center;
  align-items: center;
}
.social_links__wrap .social__links li a:hover {
  color: #fff;
}

/*footer style end*/
/*mini cart style start*/
@media screen and (min-width: 48em) {
  .cart-wrap .site-header-cart:hover .widget_shopping_cart,
  .site-header-cart.focus .widget_shopping_cart {
    left: unset;
    display: unset;
  }
}
.widget_shopping_cart_content {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.widget_shopping_cart_content .woocommerce-mini-cart {
  flex-grow: 1;
  overflow-y: scroll;
}

.cart-wrap .widget_shopping_cart {
  width: 450px !important;
  z-index: 9999 !important;
  background: #fff;
  height: 100%;
  margin-left: auto;
  padding: 20px !important;
  padding-right: 0 !important;
  position: fixed !important;
  right: 0;
  top: 0 !important;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px !important;
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}
.cart-wrap .widget_shopping_cart.active-card {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .cart-wrap .widget_shopping_cart {
    width: 310px !important;
  }
}

.cart-wrap .woocommerce-mini-cart {
  padding: 16px 0 !important;
}

.cart-wrap .woocommerce-mini-cart-item {
  padding-left: 0 !important;
  display: flex;
  padding: 10px 0 !important;
  gap: 0;
  padding-right: 10px !important;
}
.cart-wrap .woocommerce-mini-cart-item * {
  flex-shrink: 0;
}
.cart-wrap .woocommerce-mini-cart-item .remove_from_cart_button {
  position: static !important;
}
.cart-wrap .woocommerce-mini-cart-item .mini-cart-thumbnail img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}
.cart-wrap .woocommerce-mini-cart-item .mini-cart-item-details {
  padding-left: 14px;
  flex-shrink: 1;
}
.cart-wrap .woocommerce-mini-cart-item .remove_from_cart_button {
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
  margin-top: 8px;
  color: #707174;
}
.cart-wrap .woocommerce-mini-cart-item .product-name {
  font-weight: 500;
  color: #0a0a0b;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  margin-top: -2px;
}
.cart-wrap .woocommerce-mini-cart-item .product-name:hover {
  color: #bea95e;
}
.cart-wrap .woocommerce-mini-cart-item .variation {
  font-size: 12px;
  color: #707174;
  margin-top: 4px;
}
.cart-wrap .woocommerce-mini-cart-item .variation p {
  font-size: 12px;
}
.cart-wrap .woocommerce-mini-cart-item .variation .variation-Note {
  margin-bottom: 0 !important;
}
.cart-wrap .woocommerce-mini-cart-item .quantity {
  font-size: 12px;
  color: #707174;
  margin-top: 8px;
  display: block;
}

.mini-cart-footer {
  padding-top: 20px;
  padding-right: 20px;
  border-top: 1px solid #e5e5e5;
}
.mini-cart-footer .woocommerce-mini-cart__total {
  border-top: none !important;
  padding: 0 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.mini-cart-footer .woocommerce-mini-cart__total * {
  margin: 0 !important;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.mini-cart-footer .mini-cart-info-text {
  font-size: 12px;
  color: #707174;
  margin-top: 10px;
  text-align: center;
}
.mini-cart-footer .woocommerce-mini-cart__buttons {
  display: flex;
  gap: 10px;
  padding-top: 16px;
}
.mini-cart-footer .woocommerce-mini-cart__buttons::before, .mini-cart-footer .woocommerce-mini-cart__buttons::after {
  display: none !important;
}
.mini-cart-footer .woocommerce-mini-cart__buttons a {
  flex-basis: 50%;
  text-align: center;
  font-weight: 500;
  border-radius: 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  transition: all 0.25s ease-in-out;
}
.mini-cart-footer .woocommerce-mini-cart__buttons a:first-child {
  border: 1px solid #000;
  color: #000;
}
.mini-cart-footer .woocommerce-mini-cart__buttons a:first-child:hover {
  background: #000;
  color: #fff;
}
.mini-cart-footer .woocommerce-mini-cart__buttons a:last-child {
  background: #000;
  color: #fff;
}

.mini-cart-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #e5e5e5;
}
.mini-cart-header .cart-title {
  font-size: 20px;
  font-weight: 500;
  color: #0a0a0b;
}

.mini-cart-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  display: none;
}
.mini-cart-overlay.active-overlay {
  display: block;
}

.open-mini-cart {
  position: relative;
}
.open-mini-cart .cart-count {
  position: absolute;
  background: #000;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
  top: -7px;
  right: -7px;
  font-size: 14px;
}

.empty-cart-wrap {
  height: 100%;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}
.empty-cart-wrap .empty-cart-img {
  max-width: 250px;
}

/*mini cart style end*/
/*shop page style start*/
.in-store-only-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(54, 55, 57, 0.8);
  padding: 4px 13px;
  z-index: 9;
  font-size: 14px !important;
  color: #fff !important;
  text-transform: uppercase;
}

.discount-percentage-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(54, 55, 57, 0.8);
  padding: 4px 13px;
  z-index: 9;
  font-size: 14px !important;
  color: #fff !important;
  text-transform: uppercase;
}

.product-card {
  border: 1px solid #ebebeb;
  padding: 16px;
}
.product-card .UOM {
  font-size: 16px;
  padding-left: 6px;
  color: #0a0a0b;
  font-weight: 400;
  line-height: 150%;
}
.product-card .save-bd-price {
  display: none !important;
}
.product-card .product-image {
  overflow: hidden;
  position: relative;
  position: relative;
}
.product-card .product-image img {
  width: 100% !important;
  object-fit: cover;
  margin: 0 !important;
}
.product-card .product-image .image-upper img {
  height: 286px !important;
}
.product-card .product-image .image-lower img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  opacity: 0;
  transition: 0.4s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}
.product-card:hover .product-image .image-lower img {
  transform: scale(1.06) translate3d(0px, 0px, 0px);
  z-index: 3;
  opacity: 1;
}
.product-card:hover .product-image .image-upper img {
  transition: 0.4s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  transform: scale(1.06) translate3d(0px, 0px, 0px);
}
.product-card .product-details {
  text-align: center;
  padding-top: 16px;
}
.product-card .product-details .product-title h2 {
  color: #0a0a0b;
  font-weight: 600 !important;
  font-size: 20px !important;
  line-height: 150%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 60px;
  padding: 0 !important;
}
.product-card .product-details .product__info {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #707174;
  padding-top: 6px;
}
.product-card .product-details .star-rating {
  display: none;
}
.product-card .product-details .custom-price.pd__pricing {
  margin-bottom: 0;
}
.product-card .product-details .product-loop {
  margin: 0 !important;
}
.product-card .product-details .price {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
}
.product-card .product-details .price del {
  margin-right: 8px !important;
  text-decoration-color: #87898e !important;
}
.product-card .product-details .price ins {
  text-decoration: none !important;
  color: #0a0a0b !important;
}
.product-card .product-details .product-card-btn {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card .product-details .product-card-btn > a {
  border: 1px solid #cccccc;
  background: transparent;
  text-align: center;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #0a0a0b !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.35s;
  margin-top: 0 !important;
  border-radius: 0 !important;
}
.product-card .product-details .product-card-btn > a::before {
  position: absolute;
  z-index: -1;
  content: "";
  background: #0a0a0b;
  width: 50%;
  height: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
  opacity: 0;
}
.product-card .product-details .product-card-btn > a:hover {
  color: #fff !important;
  border-color: #0a0a0b;
}
.product-card .product-details .product-card-btn > a:hover::before {
  width: 110%;
  height: 110%;
  opacity: 1;
}

.beta_product__btn {
  border: 1px solid #cccccc;
  background: transparent;
  text-align: center;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #0a0a0b !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.35s;
  margin-top: 0 !important;
  border-radius: 0 !important;
}
.beta_product__btn::before {
  position: absolute;
  z-index: -1;
  content: "";
  background: #0a0a0b;
  width: 50%;
  height: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
  opacity: 0;
}
.beta_product__btn:hover {
  color: #fff !important;
  border-color: #0a0a0b;
}
.beta_product__btn:hover::before {
  width: 110%;
  height: 110%;
  opacity: 1;
}

.columns-5 .products.columns-4 {
  grid-template-columns: repeat(5, 1fr);
}

.products.columns-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.products.columns-4::before {
  display: none !important;
}
.products.columns-4 li {
  width: 100% !important;
  margin: 0 !important;
  height: 100% !important;
}

@media screen and (max-width: 1400px) {
  .products.columns-4 {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px;
  }
  .product-card .product-image .image-upper img {
    height: 200px !important;
  }
}
@media screen and (max-width: 992px) {
  .product-card .product-details .product-title h2 {
    font-size: 16px !important;
    min-height: 48px;
  }
  .product-card .product-details .product__info {
    font-size: 12px;
  }
}
@media screen and (max-width: 676px) {
  .products.columns-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .product-card .product-image .image-upper img {
    height: 165px !important;
  }
  .product-card .product-details .price span.woocommerce-Price-amount.amount {
    font-size: 16px !important;
  }
}
/*product listing style start*/
.products__listing {
  margin-bottom: 100px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.products__grid .products_filter__wrap {
  grid-column: span 2;
}
.products__grid .products_filter__wrap .filter__actions {
  position: sticky;
  background: #fff;
  padding: 20px;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.products__grid .products_filter__wrap .filter__actions li button {
  border: 1px solid #ccc;
  text-align: center;
  padding: 7px 10px;
  width: 100%;
  font-size: 12px;
  color: #000;
  transition: all 0.35s;
}
.products__grid .products_filter__wrap .filter__actions li button:hover {
  background: #0a0a0b;
  border-color: #0a0a0b;
  color: #fff;
}
.products__grid .products_filter__wrap .filter__actions li:not(:first-child) {
  margin-top: 10px;
}
.products__grid .products__row {
  grid-column: span 10;
}
@media screen and (max-width: 1400px) {
  .products__grid .products_filter__wrap {
    grid-column: span 3;
  }
  .products__grid .products__row {
    grid-column: span 9;
  }
}
@media screen and (max-width: 992px) {
  .products__grid {
    display: block;
  }
}
@media screen and (max-width: 992px) and (max-width: 992px) {
  .products__grid .products_filter__wrap {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background: #fff;
    left: 0;
    padding: 30px 20px;
    padding-bottom: 0;
    top: 0;
    z-index: 99;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .products__grid .products_filter__wrap.filter__active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}

.single_filter__group {
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
}
.single_filter__group .accordion-button {
  text-transform: uppercase;
  color: #000000;
  padding: 15.5px 0px;
}
.single_filter__group .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3E%3Cline x1='12' y1='5' x2='12' y2='19'%3E%3C/line%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
.single_filter__group .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-minus'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3C/svg%3E");
}
.single_filter__group .filter__list {
  padding-bottom: 16px;
}
.single_filter__group .filter__list li label {
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #707174;
  padding: 8px 0;
  margin: 0 10px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .single_filter__group .filter__list li label {
    font-size: 12px;
    padding: 6px 0;
  }
}
.single_filter__group .filter__list li [type=checkbox]:checked + label {
  color: #0a0a0b;
  background: #fafafa;
}
.single_filter__group .filter__list li [type=checkbox]:checked,
.single_filter__group .filter__list li [type=checkbox]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.single_filter__group .filter__list li [type=checkbox]:checked + label,
.single_filter__group .filter__list li [type=checkbox]:not(:checked) + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 20px;
}
.single_filter__group .filter__list li [type=checkbox]:checked + label:before,
.single_filter__group .filter__list li [type=checkbox]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #363739;
  border-radius: 2px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.single_filter__group .filter__list li [type=checkbox]:checked + label:after,
.single_filter__group .filter__list li [type=checkbox]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #363739;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 2px;
  transition: all 0.2s ease;
}
.single_filter__group .filter__list li [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.single_filter__group .filter__list li [type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1) translateY(-50%);
}

.filter__header .filter-btn {
  margin-left: 8px;
  font-size: 16px;
  text-transform: uppercase;
  color: #0a0a0b;
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  .filter__header .filter-btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .filter__header > h5 {
    font-size: 18px;
  }
}

.filterd__tags {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .filterd__tags {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.filterd__tags .filter-tags {
  background: #ebebeb;
  border-radius: 6px;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
  color: #707174;
  padding: 6px 7.5px;
  display: inline-block;
  margin-top: 8px;
  margin-right: 10px;
}
.filterd__tags .filter-tags button {
  padding: 0;
  padding-left: 4px;
}
.filterd__tags .filter-tags svg,
.filterd__tags .filter-tags i {
  color: #707174;
}
@media screen and (max-width: 992px) {
  .filterd__tags .filter-tags {
    font-size: 10px;
  }
}

.filter__form {
  margin: 0 10px;
  margin-bottom: 10px;
  margin-top: 6px;
}
.filter__form input {
  height: 41px;
  border: 1px solid #ebebeb;
  width: 100%;
  padding: 5px 10px 5px 44px;
}
.filter__form input:focus {
  border-color: #0a0a0b;
}
.filter__form svg {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.filter_toggle__btn {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  color: #707174;
  border: 1px solid #cccccc;
  padding: 10px 32px;
}

/*shop page style end*/
/*banner style start*/
.banner__style {
  position: relative;
  z-index: 1;
  padding: 140px 0;
  overflow: hidden;
  margin-top: 100px;
}
@media screen and (max-width: 992px) {
  .banner__style {
    padding: 100px 0;
  }
}
@media screen and (max-width: 768px) {
  .banner__style {
    padding: 80px 0;
  }
}
.banner__style .banner_imag__wrap {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.banner__content {
  max-width: 475px;
  margin-left: auto;
}
.banner__content .banner__title {
  font-weight: 800;
  font-size: 48px;
  line-height: 120%;
}
.banner__content p {
  font-weight: 300;
  font-size: 32px;
  line-height: 129%;
}
@media screen and (max-width: 992px) {
  .banner__content .banner__title {
    font-size: 34px;
  }
  .banner__content p {
    font-size: 24px;
  }
}

.flooring__style .flooring_featured__text img {
  border-radius: 100px;
  object-fit: cover;
}

@media screen and (max-width: 992px) {
  .banner__content {
    margin: 0 auto;
    margin-right: auto;
    text-align: center !important;
  }
}
/*banner style end*/
/* Order sample button in archive page */
.woocommerce div.product form.cart.product-loop {
  margin-top: 2em;
}

.cart.product-loop .woo-sample-button {
  float: unset !important;
}

/* Order Sample button styling for product loops */
.order-sample-btn {
  color: #fff !important;
  background: #bba145 !important;
  background-color: #c7ac49 !important;
  border-radius: 10px !important;
  font-weight: 500 !important;
  padding: 8px 16px !important;
  margin-top: 10px !important;
  display: inline-block !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
}

.order-sample-btn:hover {
  background-color: #a89440 !important;
  color: #fff !important;
}

.order-sample-btn:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
}

.tiles-content {
  min-height: 75px;
}

/* Tile Calculator Styles */
.tile-form.pd__canculator {
  margin-bottom: 20px;
}

.tile-form h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.cal__fields {
  gap: 15px;
}

.cal__field {
  position: relative;
}

.cal__field input {
  padding-right: 50px;
  border: 1px solid #ddd;
  border-radius: 4px;
  height: 45px;
  font-size: 16px;
}

.cal__field .right_placeholder {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 14px;
  pointer-events: none;
}

.divider-text {
  padding: 0 10px;
  color: #666;
  font-weight: 500;
}

.cal__check {
  gap: 8px;
}

.cal__check input[type=checkbox] {
  width: 18px;
  height: 18px;
}

.cal__check label {
  font-size: 14px;
  color: #666;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cal__check button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.cart-total.pd_total__price {
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.cart-total .tile-price {
  color: #e74c3c;
  font-weight: 700;
}

@media (max-width: 768px) {
  .cal__fields {
    flex-direction: column;
  }
  .divider-text {
    padding: 10px 0;
  }
}
/* Custom Cart and Quantity Styles */
.custom-cart.box-count_tiels {
  margin-top: 20px;
}

.beyond-quantity-label p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.custom-cart .quantity {
  margin-bottom: 15px;
}

.custom-cart .quantity input[type=number] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  height: 45px;
}

/* Add to Cart Button Styles */
.pd__buttons {
  margin-top: 20px;
}

.single_add_to_cart_button:hover {
  background-color: #555 !important;
  color: #fff !important;
}

.single_add_to_cart_button:disabled {
  background-color: #ccc !important;
  cursor: not-allowed !important;
}

/* In Store Only Button */
.btn.button.btn-primary:disabled {
  background-color: #6c757d !important;
  border-color: #6c757d !important;
  color: #fff !important;
  padding: 15px 30px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 0px !important;
  width: 100% !important;
  text-transform: uppercase !important;
  border: 1px solid #0a0a0b;
}

/* Product Normal Total Price */
.product_normal.sample-art-total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

/* Custom Price Section */
.custom-price.pd__pricing {
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Single Product Page
--------------------------------------------------------------*/
.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0 !important;
}

.single.single-product .quantity {
  display: none;
}

.discount-label-2 {
  position: relative;
  display: inline-block;
}

.single-product div.product {
  overflow: hidden !important;
}

.single.single-product .content-area {
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  max-width: 1784px;
}
@media screen and (max-width: 992px) {
  .single.single-product .content-area {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.woocommerce div.product form.cart .button {
  background-color: #0a0a0b !important;
  color: #fff !important;
  border: none !important;
  padding: 15px 30px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  border-radius: 0px !important;
  width: 100% !important;
  text-transform: uppercase !important;
  transition: background-color 0.3s ease !important;
  cursor: pointer !important;
  margin-bottom: 10px;
  height: 54px;
}
@media screen and (max-width: 992px) {
  .woocommerce div.product form.cart .button {
    padding: 12px 20px !important;
    font-size: 14px !important;
    height: 48px;
  }
}

.woocommerce div.product form.cart .button:hover {
  background-color: #bea95e !important;
  color: #fff !important;
}

@media screen and (min-width: 992px) {
  .woocommerce-tabs {
    padding-top: 20px;
  }
}
.woocommerce-tabs ul {
  padding: 0 !important;
  display: flex !important;
}
.woocommerce-tabs ul::before {
  display: none !important;
}
.woocommerce-tabs ul li {
  padding: 0 !important;
  border-radius: 0 !important;
  width: 33.3333333333% !important;
  text-align: center;
  width: 100%;
  border: 1px solid #363739;
  border-radius: 0;
  background: transparent !important;
  border: 1px solid #0a0a0b !important;
  margin: 0 !important;
  margin-left: -1px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.woocommerce-tabs ul li:first-child {
  margin-left: 0 !important;
}
.woocommerce-tabs ul li.active {
  background: #0a0a0b !important;
}
.woocommerce-tabs ul li.active a {
  color: #fff !important;
}
.woocommerce-tabs ul li a {
  color: #0a0a0b !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  display: block !important;
  padding: 12px 30px !important;
  width: 100% !important;
}
@media screen and (max-width: 768px) {
  .woocommerce-tabs ul li a {
    padding: 10px 18px !important;
    font-size: 12px !important;
  }
}
.woocommerce-tabs ul li::before {
  display: none !important;
}
.woocommerce-tabs ul li::after {
  display: none !important;
}
.woocommerce-tabs .woocommerce-Tabs-panel p {
  font-size: 16px;
  color: #707174;
  margin-top: 10px;
  line-height: 1.8;
}
.woocommerce-tabs .woocommerce-Tabs-panel h2 {
  font-size: 28px;
  margin-bottom: 16px;
}
@media screen and (max-width: 992px) {
  .woocommerce-tabs .woocommerce-Tabs-panel p {
    font-size: 14px;
  }
  .woocommerce-tabs .woocommerce-Tabs-panel h2 {
    font-size: 24px;
  }
}
.woocommerce-tabs table.shop_attributes th {
  padding: 14px 16px !important;
  width: auto !important;
}

.comment-reply-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.comment-form {
  padding: 24px;
  border: 1px solid #e5e5e5;
}
.comment-form .stars {
  margin-top: 8px;
}
.comment-form textarea {
  background: #fafafa;
  padding: 10px 20px;
}
.comment-form .comment-form-rating-label,
.comment-form .comment-form-comment {
  display: block;
  margin-bottom: 10px;
}
.comment-form .form-submit {
  margin-bottom: 0 !important;
}
.comment-form .form-submit .submit {
  background: #0a0a0b !important;
  color: #fff !important;
  border: none !important;
  padding: 15px 30px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border-radius: 0px !important;
  transition: background-color 0.3s ease !important;
  cursor: pointer !important;
}
.comment-form .form-submit .submit:hover {
  background-color: #bea95e !important;
  color: #fff !important;
}

.comment_container .comment-text {
  border: 1px solid #e5e5e5 !important;
  border-radius: 0 !important;
}

.woocommerce p.stars a::before {
  color: #bea95e !important;
}

.woocommerce .star-rating::before,
.woocommerce .star-rating span::before {
  color: #bea95e !important;
}

.related-products {
  padding-top: 80px;
}

@media screen and (max-width: 992px) {
  .product_overview .pd__canculator {
    margin-top: 30px;
  }
}
.type-product {
  padding-top: 50px;
}
.type-product .onsale {
  display: none;
}
.type-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  width: 100%;
  height: 750px !important;
  object-fit: cover;
}
.type-product .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  gap: 20px;
  padding-top: 20px !important;
}
.type-product .woocommerce-product-gallery .flex-control-thumbs li {
  width: calc(25% - 15px) !important;
}
.type-product .woocommerce-product-gallery .flex-control-thumbs li img {
  height: 197px !important;
  object-fit: cover;
  opacity: 1 !important;
  position: relative !important;
}
@media screen and (max-width: 1400px) {
  .type-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
    height: 556px !important;
  }
  .type-product .woocommerce-product-gallery .flex-control-thumbs li img {
    height: 150px !important;
  }
}
@media screen and (max-width: 992px) {
  .type-product .woocommerce-product-gallery .flex-control-thumbs {
    padding-top: 10px !important;
    gap: 10px;
  }
  .type-product .woocommerce-product-gallery .flex-control-thumbs li {
    width: calc(25% - 7.5px) !important;
  }
  .type-product .woocommerce-product-gallery .flex-control-thumbs li img {
    height: 140px !important;
  }
}
@media screen and (max-width: 768px) {
  .type-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
    height: 350px !important;
  }
  .type-product .woocommerce-product-gallery .flex-control-thumbs li img {
    height: 100px !important;
  }
}
@media screen and (max-width: 576px) {
  .type-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
    height: 300px !important;
  }
  .type-product .woocommerce-product-gallery .flex-control-thumbs li img {
    height: 70px !important;
  }
}
@media screen and (max-width: 992px) {
  .type-product .woocommerce-product-gallery {
    width: 100% !important;
  }
  .type-product .summary {
    width: 100% !important;
  }
}
.type-product .product_overview .cal__fields {
  display: flex;
  gap: 15px;
  align-items: center;
}
.type-product .product_overview .cal__fields input {
  border-radius: 0px !important;
}
@media screen and (max-width: 768px) {
  .type-product .product_overview .cal__fields {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
}
.type-product .product_overview .woocommerce-product-rating {
  display: none !important;
}
.type-product .product_overview .product_title {
  font-weight: 600 !important;
  font-size: 38px;
  line-height: 140%;
  color: #000000;
  padding-right: 60px;
}
@media screen and (max-width: 992px) {
  .type-product .product_overview .product_title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .type-product .product_overview .product_title {
    font-size: 24px;
  }
}
.type-product .product_overview .price-group .save-bd-price {
  text-align: center;
  padding: 5px 14px;
  font-size: 16px !important;
  color: #fff !important;
  border: none !important;
  background: #bea95e;
}
.type-product .product_overview .price-group del {
  text-decoration-color: #87898e !important;
  text-decoration-thickness: 1px;
}
.type-product .product_overview .price-group ins {
  text-decoration: none !important;
  color: #0a0a0b !important;
}
.type-product .product_overview .price-group .UOM {
  font-size: 16px;
  padding-left: 6px;
}

/* For Clearance bg color */
.product_card__alpha .product__thumb .product__tag.verient-3 {
  background: #b81b1b !important;
}

.discount-label {
  position: absolute;
  top: 276px;
  left: 28px;
  background: rgba(54, 55, 57, 0.8);
  padding: 4px 13px;
  z-index: 9;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  top: 275px;
  left: 16px;
}

@media screen and (max-width: 1400px) {
  .discount-label {
    top: 189px !important;
  }
}
@media screen and (max-width: 992px) {
  .discount-label {
    top: 229px !important;
  }
}
@media screen and (max-width: 567px) {
  .discount-label {
    top: 138px !important;
    left: 0 !important;
  }
}
.discount-label-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(54, 55, 57, 0.8);
  padding: 4px 13px;
  z-index: 9;
  font-size: 14px !important;
  color: #fff !important;
  text-transform: uppercase;
}

.product_overview .discount-label-2 {
  position: relative;
  display: inline-block;
  font-size: 16px !important;
}

.product_overview .price-group del {
  margin-right: 8px;
  text-decoration-color: #87898e;
}
.product_overview .price-group del .amount {
  color: #87898e !important;
  font-size: 20px !important;
  font-weight: 600 !important;
}
.product_overview .price-group del .amount span {
  color: #87898e !important;
  font-size: 20px !important;
}
.product_overview .price-group ins .amount {
  font-weight: 600 !important;
}
.product_overview .price-group ins span {
  color: #000 !important;
  font-size: 20px !important;
}
.product_overview .amount .amount {
  color: #000 !important;
  font-size: 20px !important;
  font-weight: 600 !important;
}
.product_overview .amount .amount span {
  color: #000 !important;
  font-size: 20px !important;
  font-weight: 600 !important;
}
.product_overview .price-group > .amount {
  color: #000 !important;
  font-size: 20px !important;
  font-weight: 600 !important;
}
.product_overview .save-bd-price {
  font-size: 16px !important;
  color: #fff !important;
  border: none !important;
  background: #bea95e;
}
.product_overview .save-bd-price .woocommerce-Price-currencySymbol {
  color: #fff !important;
}
.product_overview .save-bd-price .woocommerce-Price-amount {
  font-size: inherit !important;
  color: #fff !important;
}
.product_overview .custom-price del {
  color: #87898e !important;
  text-decoration-color: #87898e;
  font-weight: 600 !important;
  opacity: 1 !important;
}
.product_overview .custom-price del .amount {
  color: #87898e !important;
  font-weight: 600 !important;
}
.product_overview .custom-price ins .amount {
  font-weight: 600 !important;
}
.product_overview .custom-cart .quantity {
  position: relative;
}
.product_overview .custom-cart .quantity .right_placeholder {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #707174;
}
@media screen and (max-width: 992px) {
  .product_overview .custom-cart .quantity .right_placeholder {
    font-size: 14px;
  }
}
.product_overview .custom-cart .quantity input {
  height: 54px;
  background: #fafafa;
  border: 1px solid #ebebeb;
  padding: 8px 16px;
  color: #0a0a0b;
}
@media screen and (max-width: 992px) {
  .product_overview .custom-cart .quantity input {
    height: 40px;
    font-size: 14px;
  }
}
.product_overview .custom-cart .quantity input::placeholder {
  color: #707174;
}
.product_overview .custom-cart .quantity input:focus {
  border: 1px solid #363739;
}

.product_overview .pd__gap {
  margin-top: 32px;
}
.product_overview .pd__header {
  font-weight: 500;
  font-size: 38px;
  line-height: 140%;
  color: #000000;
  padding-right: 60px;
}
@media screen and (max-width: 992px) {
  .product_overview .pd__header {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .product_overview .pd__header {
    font-size: 24px;
  }
}
.product_overview .pd__id {
  margin-top: 16px;
  font-weight: 400;
  color: #707174;
  display: inline-block;
}
.product_overview .pd__pricing .pd_price__box {
  margin-top: 8px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #000000;
}
.product_overview .pd__pricing .pd_price__box del {
  color: #707174;
  font-weight: 400;
}
.product_overview .pd__pricing .pd_price__box span {
  font-weight: 400;
  font-size: 16px;
  color: #707174;
}
@media screen and (max-width: 992px) {
  .product_overview .pd__pricing .pd_price__box {
    font-size: 16px;
  }
  .product_overview .pd__pricing .pd_price__box span {
    font-size: 14px;
  }
}
.product_overview .pd__canculator {
  border-bottom: 1px solid #cccccc;
}
.product_overview .pd__canculator h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
@media screen and (max-width: 992px) {
  .product_overview .pd__canculator h5 {
    font-size: 18px;
  }
}
.product_overview .pd__canculator .divider-text {
  color: #000000;
  padding: 15px 10px;
}
.product_overview .pd__canculator .divider-text span {
  font-size: 14px;
}
.product_overview .pd__canculator .cal__field {
  position: relative;
}
.product_overview .pd__canculator .cal__field .right_placeholder {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #707174;
}
@media screen and (max-width: 992px) {
  .product_overview .pd__canculator .cal__field .right_placeholder {
    font-size: 14px;
  }
}
.product_overview .pd__canculator .cal__field input {
  height: 54px;
  background: #fafafa;
  border: 1px solid #ebebeb;
  padding: 8px 16px;
  color: #0a0a0b;
}
@media screen and (max-width: 992px) {
  .product_overview .pd__canculator .cal__field input {
    height: 40px;
    font-size: 14px;
  }
}
.product_overview .pd__canculator .cal__field input::placeholder {
  color: #707174;
}
.product_overview .pd__canculator .cal__field input:focus {
  border: 1px solid #363739;
}
.product_overview .pd__canculator .cal__check input {
  width: 19px;
  height: 19px;
  border: 1.5px solid #cccccc;
  border-radius: 4px;
  margin-right: 10px;
}
.product_overview .pd__canculator .cal__check label {
  color: #707174;
}
@media screen and (max-width: 992px) {
  .product_overview .pd__canculator .cal__check input {
    width: 16px;
    height: 16px;
  }
  .product_overview .pd__canculator .cal__check label {
    font-size: 14px;
  }
}
.product_overview .pd_total__price {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: #000000;
}
@media screen and (max-width: 992px) {
  .product_overview .pd_total__price {
    font-size: 18px;
  }
}
.product_overview .pd_total__price.pd_total__price {
  color: #707174;
}
.product_overview .pd_total__price.pd_total__price span {
  font-size: 16px;
  font-weight: 400;
  color: #707174;
}

.pd_special__price {
  background: #fcf7e7;
  border-radius: 8px;
  padding: 20px;
  color: #0a0a0b;
}
.pd_special__price h5 {
  font-size: 24px;
  line-height: 120%;
}
.pd_special__price h5:not(:first-of-type) {
  margin-top: 10px;
}
@media screen and (max-width: 992px) {
  .pd_special__price h5 {
    font-size: 18px;
  }
}
.pd_special__price p {
  margin-top: 10px;
}

.pd__additional {
  padding-top: 40px;
}
.pd__additional > h5 {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .pd__additional > h5 {
    font-size: 18px;
  }
}
.pd__additional > p {
  font-weight: 400;
  color: #707174;
}
@media screen and (max-width: 576px) {
  .pd__additional > p {
    font-size: 12px;
  }
}
@media screen and (max-width: 992px) {
  .pd__additional {
    padding-top: 24px;
  }
}
.pd__additional .additional__list li {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: 150%;
  padding: 15px 10px;
  border-bottom: 1px solid #cccccc;
  background: #fff;
}
.pd__additional .additional__list li:nth-child(even) {
  background: #fafafa;
}
@media screen and (max-width: 1200px) {
  .pd__additional .additional__list li {
    font-size: 16px;
    padding: 12px 10px;
  }
}
@media screen and (max-width: 576px) {
  .pd__additional .additional__list li {
    font-size: 12px;
    padding: 10px 10px;
  }
}

.details__preview {
  position: sticky;
  top: 0;
}

.product__bg .has__parallax {
  min-height: 150px;
  object-fit: cover;
}

.simpleParallax {
  height: 100%;
}

.woocommerce-message, .woocommerce-error, .woocommerce-info {
  margin: 20px 0 !important;
  display: flex;
  align-items: center;
  background: rgba(190, 169, 94, 0.07) !important;
  border: 1px solid rgb(190, 169, 94) !important;
  color: #0A0A0B !important;
  border-radius: 8px;
  padding: 14px 24px !important;
  padding-left: 50px !important;
  font-size: 14px !important;
  gap: 10px;
}
.woocommerce-message::before, .woocommerce-error::before, .woocommerce-info::before {
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.woocommerce-message::after, .woocommerce-error::after, .woocommerce-info::after {
  display: none !important;
}
.woocommerce-message:focus-visible, .woocommerce-error:focus-visible, .woocommerce-info:focus-visible {
  outline: none !important;
}
.woocommerce-message .wc-forward, .woocommerce-error .wc-forward, .woocommerce-info .wc-forward {
  flex-shrink: 0 !important;
  margin-left: auto !important;
  font-weight: 400 !important;
  padding: 0 !important;
  border: 0 !important;
  text-decoration: underline !important;
  color: #0A0A0B !important;
  background: transparent !important;
}
.woocommerce-message .wc-forward:hover, .woocommerce-error .wc-forward:hover, .woocommerce-info .wc-forward:hover {
  color: #bea95e !important;
}
@media screen and (max-width: 992px) {
  .woocommerce-message, .woocommerce-error, .woocommerce-info {
    padding: 12px 20px !important;
    padding-left: 45px !important;
    flex-wrap: wrap;
  }
  .woocommerce-message .wc-forward, .woocommerce-error .wc-forward, .woocommerce-info .wc-forward {
    font-size: 14px !important;
    margin-left: 0 !important;
  }
  .woocommerce-message::before, .woocommerce-error::before, .woocommerce-info::before {
    top: 24px !important;
    left: 20px !important;
  }
}

.woocommerce-error {
  flex-direction: column;
  gap: 5px;
  background-color: rgba(255, 0, 0, 0.08) !important;
  border: 1px solid rgb(255, 0, 0) !important;
  align-items: flex-start !important;
  font-size: 14px !important;
  padding-left: 65px !important;
}
.woocommerce-error li {
  list-style: disc !important;
  padding-left: 10px;
}

.entry-title {
  font-weight: 500;
  font-size: 44px;
  line-height: 1.4;
  color: #0a0a0b;
}
@media screen and (max-width: 1200px) {
  .entry-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 992px) {
  .entry-title {
    font-size: 34px;
  }
}
@media screen and (max-width: 576px) {
  .entry-title {
    font-size: 28px;
  }
}

/*login-signup page styles*/
.my-account-login .type-page {
  padding: 80px 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .my-account-login .type-page {
    padding: 60px 0;
  }
}
.my-account-login .type-page .entry-content {
  padding-top: 10px;
}
.my-account-login .type-page .entry-content h2 {
  font-size: 24px;
  font-weight: 500;
  color: #0a0a0b;
}
.my-account-login .woocommerce-form-login,
.my-account-login .lost_reset_password {
  padding: 40px 50px !important;
  border: none !important;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border-radius: 0 !important;
  border: 1px solid #f4f4f4 !important;
  background: #fff !important;
  max-width: 650px;
  margin: 0 auto !important;
  margin-top: 20px !important;
}
.my-account-login .woocommerce-form-login .woocommerce-form-row,
.my-account-login .lost_reset_password .woocommerce-form-row {
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 24px !important;
  text-align: start;
  width: 100% !important;
}
.my-account-login .woocommerce-form-login .woocommerce-form-row::before,
.my-account-login .lost_reset_password .woocommerce-form-row::before {
  display: none !important;
}
.my-account-login .woocommerce-form-login .woocommerce-form-row:first-child,
.my-account-login .lost_reset_password .woocommerce-form-row:first-child {
  margin-top: 0 !important;
}
.my-account-login .woocommerce-form-login .woocommerce-form-row label,
.my-account-login .lost_reset_password .woocommerce-form-row label {
  font-weight: 400 !important;
  font-size: 16px !important;
  color: oklch(21% 0.034 264.665deg) !important;
  margin-bottom: 7px !important;
}
.my-account-login .woocommerce-form-login .woocommerce-form-row .woocommerce-Input,
.my-account-login .lost_reset_password .woocommerce-form-row .woocommerce-Input {
  height: 50px !important;
  border-radius: 0 !important;
  border: 1px solid rgba(10, 10, 11, 0.3) !important;
  padding: 10px 20px !important;
}
.my-account-login .woocommerce-form-login .woocommerce-form-row .woocommerce-Input:focus,
.my-account-login .lost_reset_password .woocommerce-form-row .woocommerce-Input:focus {
  border-color: rgb(10, 10, 11) !important;
}
@media screen and (max-width: 992px) {
  .my-account-login .woocommerce-form-login .woocommerce-form-row,
  .my-account-login .lost_reset_password .woocommerce-form-row {
    margin-top: 16px !important;
  }
  .my-account-login .woocommerce-form-login .woocommerce-form-row:first-child,
  .my-account-login .lost_reset_password .woocommerce-form-row:first-child {
    margin-top: 0 !important;
  }
  .my-account-login .woocommerce-form-login .woocommerce-form-row label,
  .my-account-login .lost_reset_password .woocommerce-form-row label {
    font-size: 14px !important;
  }
  .my-account-login .woocommerce-form-login .woocommerce-form-row .woocommerce-Input,
  .my-account-login .lost_reset_password .woocommerce-form-row .woocommerce-Input {
    height: 40px !important;
    font-size: 14px !important;
    padding: 8px 16px !important;
  }
}
.my-account-login .form-row {
  padding: 0 !important;
}
.my-account-login .woocommerce-form-login__submit,
.my-account-login .woocommerce-Button {
  border-radius: 0 !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 150% !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  font-weight: 400 !important;
  background: #0A0A0B !important;
  display: block !important;
  text-align: center !important;
  padding: 15px 20px !important;
  border: 1px solid #0A0A0B !important;
  transition: all 0.35s !important;
  display: block !important;
  width: 100% !important;
  margin-top: 24px !important;
}
@media screen and (max-width: 1200px) {
  .my-account-login .woocommerce-form-login__submit,
  .my-account-login .woocommerce-Button {
    padding: 12px 20px !important;
  }
}
@media screen and (max-width: 992px) {
  .my-account-login .woocommerce-form-login__submit,
  .my-account-login .woocommerce-Button {
    padding: 8px 20px !important;
    font-size: 14px !important;
  }
}
.my-account-login .woocommerce-form-login__submit:hover,
.my-account-login .woocommerce-Button:hover {
  color: #fff !important;
  background: #BEA95E !important;
  border-color: #BEA95E !important;
}
.my-account-login .woocommerce-form__label-for-checkbox {
  display: flex !important;
  margin-top: 14px;
  color: oklch(21% 0.034 264.665deg) !important;
  gap: 8px;
}
.my-account-login .woocommerce-LostPassword {
  color: #363739;
  text-decoration: underline;
  display: block;
  margin-top: 24px;
}
@media screen and (max-width: 992px) {
  .my-account-login .woocommerce-form-login {
    padding: 24px 20px !important;
  }
  .my-account-login .woocommerce-form-login__submit {
    margin-top: 16px !important;
  }
  .my-account-login .woocommerce-form__label-for-checkbox {
    margin-top: 10px;
  }
  .my-account-login .woocommerce-LostPassword {
    margin-top: 16px;
  }
}

/*login-signup page styles end*/
/*woocommerce account page styles*/
.woocommerce-account .post-edit-link {
  text-decoration: underline;
  margin-top: 20px;
}
.woocommerce-account .woocommerce-message {
  margin-top: 0 !important;
}
.woocommerce-account .entry-content {
  margin-top: 20px;
}
.woocommerce-account .type-page {
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .woocommerce-account .type-page {
    padding: 60px 0;
  }
}
.woocommerce-account .woocommerce-MyAccount-navigation li {
  padding-top: 24px;
}
.woocommerce-account .woocommerce-MyAccount-navigation li:first-child {
  padding-top: 0 !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a {
  font-size: 18px;
  color: rgba(10, 10, 11, 0.8);
  font-weight: 400;
  display: inline-block;
  position: relative;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: transparent;
  bottom: 0;
  left: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  color: #0a0a0b !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover::before {
  background: #0a0a0b;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  color: #0a0a0b !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a::before {
  background: #0a0a0b;
}
@media screen and (max-width: 992px) {
  .woocommerce-account .woocommerce-MyAccount-navigation li {
    padding-top: 16px;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation li a {
    font-size: 16px;
  }
}

.woocommerce-dashboard .woocommerce-MyAccount-content p {
  margin-top: 12px;
}
.woocommerce-dashboard .woocommerce-MyAccount-content p:first-of-type {
  margin-top: 0 !important;
}
.woocommerce-dashboard .woocommerce-MyAccount-content p a {
  text-decoration: underline;
}

.woocommerce-edit-address .woocommerce-Address {
  padding: 24px;
  border: 1px solid #ebebeb;
  margin-top: 14px;
  border-radius: 10px;
}
.woocommerce-edit-address .woocommerce-Address h2 {
  font-size: 24px;
  font-weight: 500;
  color: #0a0a0b;
  margin-bottom: 16px;
}
.woocommerce-edit-address .woocommerce-Address .edit {
  display: block;
  float: left !important;
  text-decoration: underline;
  font-weight: 500;
  margin-bottom: 14px;
}
.woocommerce-edit-address .woocommerce-Address address {
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  color: #707174;
}
.woocommerce-edit-address form h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}

.woocommerce-edit-address form button[type=submit],
.woocommerce-edit-account .woocommerce-EditAccountForm button[type=submit] {
  background-color: #0a0a0b !important;
  color: #fff !important;
  border: none !important;
  padding: 15px 30px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  border-radius: 0px !important;
  width: 100% !important;
  text-transform: uppercase !important;
  transition: background-color 0.3s ease !important;
  cursor: pointer !important;
  margin-top: 14px;
}
.woocommerce-edit-address form button[type=submit]:hover,
.woocommerce-edit-account .woocommerce-EditAccountForm button[type=submit]:hover {
  background-color: #bea95e !important;
  color: #fff !important;
}

.woocommerce-form-row input,
.woocommerce-input-wrapper input {
  border: 1px solid rgba(10, 10, 11, 0.2) !important;
  padding: 10px 16px !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  height: 44px !important;
  border-radius: 6px !important;
}
.woocommerce-form-row input:focus,
.woocommerce-input-wrapper input:focus {
  border-color: rgb(10, 10, 11) !important;
  box-shadow: none !important;
}
@media screen and (max-width: 992px) {
  .woocommerce-form-row input,
  .woocommerce-input-wrapper input {
    height: 40px !important;
    font-size: 14px !important;
  }
}

.woocommerce-EditAccountForm fieldset {
  margin-top: 30px !important;
}
.woocommerce-EditAccountForm .woocommerce-form-row {
  padding: 0 !important;
  margin: 0 0 15px !important;
}
.woocommerce-EditAccountForm .woocommerce-form-row label {
  color: #707174;
  display: block;
  margin-bottom: 6px;
}
.woocommerce-EditAccountForm .woocommerce-form-row #account_display_name_description {
  margin-top: 6px;
  display: block;
  color: rgba(112, 113, 116, 0.9);
  font-size: 14px;
}
@media screen and (max-width: 992px) {
  .woocommerce-EditAccountForm fieldset {
    margin-top: 20px !important;
  }
  .woocommerce-EditAccountForm .woocommerce-form-row {
    margin: 0 0 10px !important;
  }
  .woocommerce-EditAccountForm .woocommerce-form-row label {
    font-size: 14px !important;
  }
  .woocommerce-EditAccountForm .woocommerce-form-row #account_display_name_description {
    font-size: 12px;
  }
}

.woocommerce-address-fields .select2-selection {
  border: 1px solid rgba(10, 10, 11, 0.2) !important;
  height: 42px !important;
  border-radius: 6px !important;
}
.woocommerce-address-fields .select2-selection .select2-selection__rendered {
  padding: 10px 16px !important;
}
.woocommerce-address-fields .form-row {
  padding: 0 !important;
  margin: 0 0 15px !important;
}
.woocommerce-address-fields .form-row label {
  color: #707174;
  display: block;
  margin-bottom: 6px;
}
@media screen and (max-width: 992px) {
  .woocommerce-address-fields .form-row {
    margin: 0 0 10px !important;
  }
  .woocommerce-address-fields .form-row label {
    font-size: 14px !important;
  }
}

.woocommerce-MyAccount-orders {
  font-size: 16px !important;
  padding: 8px;
}
.woocommerce-MyAccount-orders .woocommerce-button {
  border: 1px solid rgba(10, 10, 11, 0.3) !important;
  background: transparent !important;
  font-weight: 400 !important;
  transition: background-color 0.2s ease !important;
}
.woocommerce-MyAccount-orders .woocommerce-button:hover {
  background: #0a0a0b !important;
  color: #fff !important;
}
@media screen and (max-width: 992px) {
  .woocommerce-MyAccount-orders {
    font-size: 14px !important;
    padding: 6px;
  }
}

/*cart page style*/
.woocommerce-cart .type-page,
.woocommerce-order-received .type-page,
.woocommerce-checkout .type-page {
  padding: 60px 0;
}
.woocommerce-cart .type-page .entry-header,
.woocommerce-order-received .type-page .entry-header,
.woocommerce-checkout .type-page .entry-header {
  padding-bottom: 10px;
}
.woocommerce-cart .type-page .is-large.wc-block-cart,
.woocommerce-order-received .type-page .is-large.wc-block-cart,
.woocommerce-checkout .type-page .is-large.wc-block-cart {
  padding-bottom: 0 !important;
}
.woocommerce-cart .wc-block-cart__submit-button,
.woocommerce-order-received .wc-block-cart__submit-button,
.woocommerce-checkout .wc-block-cart__submit-button {
  border-radius: 0 !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 150% !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  font-weight: 400 !important;
  background: #0A0A0B !important;
  display: block !important;
  text-align: center !important;
  padding: 15px 20px !important;
  border: 1px solid #0A0A0B !important;
  transition: all 0.35s !important;
}
@media screen and (max-width: 1200px) {
  .woocommerce-cart .wc-block-cart__submit-button,
  .woocommerce-order-received .wc-block-cart__submit-button,
  .woocommerce-checkout .wc-block-cart__submit-button {
    padding: 12px 20px !important;
  }
}
@media screen and (max-width: 992px) {
  .woocommerce-cart .wc-block-cart__submit-button,
  .woocommerce-order-received .wc-block-cart__submit-button,
  .woocommerce-checkout .wc-block-cart__submit-button {
    padding: 8px 20px !important;
    font-size: 14px !important;
  }
}
.woocommerce-cart .wc-block-cart__submit-button:hover,
.woocommerce-order-received .wc-block-cart__submit-button:hover,
.woocommerce-checkout .wc-block-cart__submit-button:hover {
  color: #fff !important;
  background: #BEA95E !important;
  border-color: #BEA95E !important;
}

.woocommerce-checkout .wc-block-checkout__actions_row {
  gap: 20px;
}
.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  border-radius: 0 !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 150% !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  font-weight: 400 !important;
  background: #0A0A0B !important;
  display: block !important;
  text-align: center !important;
  padding: 15px 20px !important;
  border: 1px solid #0A0A0B !important;
  transition: all 0.35s !important;
}
@media screen and (max-width: 1200px) {
  .woocommerce-checkout .wc-block-components-checkout-place-order-button {
    padding: 12px 20px !important;
  }
}
@media screen and (max-width: 992px) {
  .woocommerce-checkout .wc-block-components-checkout-place-order-button {
    padding: 8px 20px !important;
    font-size: 14px !important;
  }
}
.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  color: #fff !important;
  background: #BEA95E !important;
  border-color: #BEA95E !important;
}
.woocommerce-checkout .wc-block-components-checkout-place-order-button * {
  text-align: center;
  justify-content: center;
}
.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
  flex-grow: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  text-decoration: underline;
}
.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button svg {
  position: static !important;
  transform: translateY(0) !important;
}

.woocommerce-order-received .type-page {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.woocommerce-order-received .woocommerce-thankyou-order-details {
  padding-top: 20px;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  border-top: 1px solid #f4f4f4;
}
.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details {
  margin-bottom: 0 !important;
  margin-top: 30px !important;
}
.woocommerce-order-received .woocommerce-order-details h2,
.woocommerce-order-received .woocommerce-customer-details h2 {
  font-size: 24px;
  margin-bottom: 16px;
}
.woocommerce-order-received .woocommerce-order-details address,
.woocommerce-order-received .woocommerce-customer-details address {
  line-height: 1.6;
}
.woocommerce-order-received .woocommerce-thankyou-order-details {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.woocommerce-order-received .woocommerce-thankyou-order-details li {
  flex-grow: 1;
}

/*for blog details*/
@media screen and (min-width: 992px) {
  .section-blog-details .alignright {
    float: right;
  }
  .section-blog-details .alignleft {
    float: left;
  }
}
/* style for slider blog card */
.blog-box {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-box .blog-thumb img {
  height: 240px;
  object-fit: cover;
}

@media screen and (max-width: 992px) {
  .blog-box .blog-content h5 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .blog-box .blog-thumb img {
    height: 180px;
  }
}
.clearance,
.clearance a:hover {
  font-weight: bold !important;
  color: #b81b1b !important;
}

.taxonomy-terms {
  margin-top: 15px;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.taxonomy-terms span {
  background: #f0f0f0;
  padding: 5px 10px;
  text-transform: capitalize;
}

.section-blog-listing {
  padding-bottom: 80px;
}

.page-header {
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #EBEBEB;
  margin-bottom: 40px;
}

.blog-box .blog-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  overflow: hidden;
}
.blog-box .blog-thumb img {
  width: 100%;
  transition: all 0.25s;
  height: 380px;
  object-fit: cover;
}
.blog-box .blog-content {
  padding-top: 20px;
}
.blog-box .blog-content .blog-thumb-badge {
  color: rgba(54, 55, 57, 0.8);
  font-size: 16px;
}
.blog-box .blog-content h5 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  padding-top: 12px;
}
.blog-box .blog-content .bt-wrap {
  margin-top: 18px;
}
.blog-box:hover .blog-thumb img {
  transform: scale(1.04);
}
@media screen and (max-width: 1200px) {
  .blog-box .blog-thumb img {
    height: 350px;
  }
  .blog-box .blog-thumb-badge {
    font-size: 14px;
  }
  .blog-box .blog-content h5 {
    font-size: 22px;
  }
}
@media screen and (max-width: 992px) {
  .blog-box .blog-thumb img {
    height: 300px;
  }
  .blog-box .blog-thumb-badge {
    font-size: 14px;
  }
  .blog-box .blog-content h5 {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .blog-box .blog-thumb img {
    height: 250px;
  }
}

.blog-sidebar .post-listing:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 992px) {
  .blog-sidebar .post-listing:not(:first-child) {
    margin-top: 30px;
  }
}
.blog-sidebar .widget-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media screen and (max-width: 992px) {
  .blog-sidebar .widget-title {
    margin-bottom: 14px;
    font-size: 20px;
  }
}
.blog-sidebar .post-listing:not(.social-listing) .post-listing-list {
  padding: 20px;
  border: 1px solid #EBEBEB;
}
@media screen and (max-width: 992px) {
  .blog-sidebar .post-listing:not(.social-listing) .post-listing-list {
    padding: 16px;
  }
}
.blog-sidebar .post-listing:not(.social-listing) .post-listing-list li {
  font-size: 16px;
  color: #363739;
  border-bottom: 1px solid #EBEBEB;
  padding: 10px 0;
  line-height: 1.6;
}
.blog-sidebar .post-listing:not(.social-listing) .post-listing-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.blog-sidebar .post-listing:not(.social-listing) .post-listing-list li:first-child {
  padding-top: 0;
}
.blog-sidebar .post-listing:not(.social-listing) .post-listing-list li a {
  transition: all 0.25s;
}
.blog-sidebar .post-listing:not(.social-listing) .post-listing-list li a:hover {
  color: #BEA95E;
}
.blog-sidebar .post-listing.social-listing .post-listing-list {
  padding: 20px;
  border: 1px solid #EBEBEB;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 992px) {
  .blog-sidebar .post-listing.social-listing .post-listing-list {
    padding: 16px;
  }
}
.blog-sidebar .post-listing.social-listing .post-listing-list li a {
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #EBEBEB;
  transition: all 0.25s;
}
.blog-sidebar .post-listing.social-listing .post-listing-list li a img {
  max-width: 90%;
}
.blog-sidebar .post-listing.social-listing .post-listing-list li a:hover {
  border-color: #BEA95E;
}
.blog-sidebar .tagcloud {
  padding: 20px;
  border: 1px solid #EBEBEB;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 992px) {
  .blog-sidebar .tagcloud {
    padding: 16px;
  }
}
.blog-sidebar .tagcloud .tag-cloud-link {
  font-size: 14px !important;
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid #EBEBEB;
  color: #363739;
  background: transparent;
  transition: all 0.25s;
}
.blog-sidebar .tagcloud .tag-cloud-link:hover {
  background: #BEA95E;
  color: #fff;
}

.section-blog-details {
  padding-bottom: 80px;
}
.section-blog-details .post-thumbnail img {
  height: 700px;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .section-blog-details .post-thumbnail img {
    height: 600px;
  }
}
@media screen and (max-width: 576px) {
  .section-blog-details .post-thumbnail img {
    height: 380px;
  }
}

.blog-details-list {
  padding-top: 15px;
  display: flex;
  font-size: 22px;
  color: #BEA95E;
  font-weight: 400;
  flex-wrap: wrap;
}
.blog-details-list li {
  padding: 0px 18px;
  margin-top: 8px;
  border-right: 1px solid #EBEBEB;
}
.blog-details-list li:last-child {
  border-right: none;
  padding-right: 0;
}
.blog-details-list li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 992px) {
  .blog-details-list {
    font-size: 18px;
  }
  .blog-details-list li {
    padding: 0px 12px;
  }
}

.blog-details h1, .blog-details h2, .blog-details h3, .blog-details h4, .blog-details h5 {
  margin-top: 30px;
}
.blog-details h2 {
  font-size: 48px;
}
.blog-details .featured-thumb {
  max-height: 600px;
  overflow: hidden;
}
.blog-details h1 {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.25;
}
.blog-details p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(54, 55, 57, 0.9);
  margin-top: 20px;
}
.blog-details img {
  max-height: 700px;
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  margin-top: 20px;
}
.blog-details ul {
  list-style: disc;
  margin-top: 20px;
  margin-left: 20px;
}
.blog-details ul li {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #363739;
  padding-left: 0px;
}
.blog-details ul li:not(:first-child) {
  margin-top: 8px;
}
.blog-details blockquote {
  padding: 40px 54px;
  background: #BEA95E;
  position: relative;
  z-index: 1;
  margin-top: 40px;
  margin-bottom: 20px;
}
.blog-details blockquote::before {
  position: absolute;
  content: "";
  background: url("https://beyonds3.s3.amazonaws.com/web-uploads/uploads/2023/06/quote.webp") no-repeat;
  width: 100px;
  bottom: 0;
  right: 10%;
  aspect-ratio: 1/0.8;
}
.blog-details blockquote p {
  margin-top: 0;
  font-size: 22px;
  line-height: 1.45;
  color: #fff;
  font-weight: 400;
}
.blog-details blockquote cite {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-top: 16px;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .blog-details blockquote {
    padding: 30px 40px;
  }
  .blog-details blockquote P {
    font-size: 20px;
  }
  .blog-details h1 {
    font-size: 44px;
  }
  .blog-details h2 {
    font-size: 38px;
  }
  .blog-details h3 {
    font-size: 30px;
  }
  .blog-details h4 {
    font-size: 24px;
  }
  .blog-details h5 {
    font-size: 20px;
  }
  .blog-details p {
    font-size: 15px;
  }
}
@media screen and (max-width: 567px) {
  .blog-details h1 {
    font-size: 40px;
  }
  .blog-details h2 {
    font-size: 32px;
  }
  .blog-details h3 {
    font-size: 28px;
  }
  .blog-details h4 {
    font-size: 24px;
  }
  .blog-details h5 {
    font-size: 20px;
  }
  .blog-details p {
    font-size: 15px;
  }
}
.blog-details .post-navigation {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #EBEBEB;
}
.blog-details .nav-links {
  display: flex;
  gap: 30px;
}
.blog-details .nav-links .nav-next {
  flex-basis: 50%;
  text-align: end;
}
.blog-details .nav-links .nav-previous {
  text-align: start;
  flex-basis: 50%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .blog-details .nav-links .nav-previous::before {
    position: absolute;
    z-index: -1;
    content: "";
    height: 100%;
    right: -15px;
    border-right: 1px solid #EBEBEB;
  }
}
.blog-details .nav-links .blog-listing .blog-thumb {
  display: none;
}
.blog-details .nav-links .blog-listing .nav-title {
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  .blog-details .nav-links {
    flex-direction: column;
    gap: 20px;
  }
  .blog-details .nav-links .nav-next {
    text-align: start;
  }
  .blog-details .nav-links .blog-listing .nav-title {
    font-size: 20px;
  }
}

/*flooring banner style start*/
.flooring__style {
  margin-top: 100px;
  padding: 70px 0;
  padding-top: 60px;
  background: #56665f;
}
.flooring__style .flooring_featured__text {
  font-weight: 100;
  font-size: 90px;
  line-height: 150%;
  text-transform: uppercase;
  color: #ffffff;
  max-width: 950px;
  margin: 0 auto;
}
.flooring__style .flooring_featured__text span {
  vertical-align: middle;
}
.flooring__style .flooring_featured__text img {
  height: 105px;
}
@media screen and (max-width: 992px) {
  .flooring__style .flooring_featured__text {
    max-width: 650px;
    font-size: 60px;
    text-align: center;
  }
  .flooring__style .flooring_featured__text img {
    height: 70px;
  }
}
@media screen and (max-width: 576px) {
  .flooring__style .flooring_featured__text {
    font-size: 30px;
  }
  .flooring__style .flooring_featured__text img {
    height: 35px;
  }
}

.flooring__title {
  padding-bottom: 40px;
}
.flooring__title h3 {
  font-size: 48px;
  line-height: 150%;
}
.flooring__title p {
  font-weight: 300;
  font-size: 20px;
}
@media screen and (max-width: 992px) {
  .flooring__title h3 {
    font-size: 34px;
  }
  .flooring__title p {
    font-size: 16px;
  }
}

/*Contact Us */
.contact-page {
  padding-top: 80px;
}
.contact-page .contact-grid {
  display: flex;
  gap: 30px;
  align-items: center;
}
.contact-page .contact-grid > div {
  flex-basis: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  .contact-page .contact-grid {
    flex-direction: column;
  }
  .contact-page .contact-grid > div {
    flex-basis: 100%;
  }
}
.contact-page .contact-content .section__title {
  line-height: 1.25;
}
.contact-page .contact-content > p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(54, 55, 57, 0.8);
  margin-top: 16px;
}
.contact-page .contact-info-wrap {
  padding-top: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  max-width: 400px;
}
.contact-card .contact-icon {
  flex-shrink: 0;
  border-radius: 6px;
  width: 60px;
  aspect-ratio: 1/1;
  background: #BEA95E;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}
.contact-card .contact-icon img {
  width: 25px;
}
.contact-card .contact-disc a {
  font-size: 18px;
  font-weight: 400;
  color: rgb(54, 55, 57);
  line-height: 1.4;
  display: block;
  transition: color 0.2s ease;
}
.contact-card:hover .contact-disc a {
  color: #BEA95E;
}
@media screen and (max-width: 992px) {
  .contact-card {
    margin-top: 12px;
  }
  .contact-card .contact-icon {
    width: 50px;
    aspect-ratio: 1/1;
  }
  .contact-card .contact-icon img {
    width: 20px;
  }
  .contact-card .contact-disc a {
    font-size: 16px;
  }
}

.contact-form-wrap {
  background: #0A0A0B;
  border: 1px solid rgb(190, 169, 94);
  border-radius: 10px;
  padding: 40px !important;
  position: relative;
}
.contact-form-wrap .wpcf7-response-output {
  color: #fff !important;
}
.contact-form-wrap .wpcf7-spinner {
  position: absolute;
  bottom: 10px;
  left: 35px;
  margin: 0 !important;
}
.contact-form-wrap h3 {
  color: #fff;
  padding-bottom: 10px;
}
@media screen and (max-width: 992px) {
  .contact-form-wrap {
    padding: 24px !important;
  }
  .contact-form-wrap h3 {
    font-size: 24px;
  }
}

.contact-form-col input {
  margin-top: 14px;
  border: 1px solid #313131;
  background: #221e1e;
  height: 50px;
  padding: 6px 16px;
  width: 100%;
}
.contact-form-col input:focus {
  border: 1px solid #BEA95E;
}
.contact-form-col input[type=submit] {
  height: 50px;
  display: block;
  margin-top: 20px;
  border: 1px solid #BEA95E;
  color: #fff;
  text-align: center;
  border-radius: 0;
  background: #BEA95E;
  width: 100%;
  font-weight: 500;
  transition: all 0.3s;
}
.contact-form-col input[type=submit]:hover {
  background-color: #BEA95E;
  color: #fff;
}
.contact-form-col textarea {
  margin-top: 20px;
  border: 1px solid #313131;
  background: #221e1e;
  padding: 6px 16px;
  width: 100%;
}
.contact-form-col textarea:focus {
  border: 1px solid #BEA95E;
}

.wpcf7-not-valid-tip {
  display: block !important;
  font-size: 14px !important;
  font-style: italic !important;
  margin-top: 8px !important;
}

.wpcf7-response-output {
  border: 1px solid #BEA95E !important;
  color: #0A0A0B !important;
  font-size: 14px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0 !important;
  margin-top: 20px !important;
  text-align: center;
}

/*FAQ Style Start*/
.faq-page .entry-title {
  font-size: 40px;
}

.faq-accordion {
  margin-top: 50px;
}

.faq-accordion .accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.faq-accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.faq-accordion .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0 !important;
}

.faq-accordion .accordion-button {
  font-size: 22px;
  font-weight: 500;
  color: #0A0A0B;
}

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

.faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
  color: #0A0A0B;
}

.faq-accordion .accordion-body, .faq-accordion .accordion-body p {
  font-size: 16px;
  line-height: 1.6;
  color: #363739;
}

/*error section start*/
.error-section {
  padding: 100px 0;
}
.error-section .error-illustration {
  max-width: 400px;
}
.error-section .error-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.error-section .error-content .section__title {
  margin-top: 20px;
}
.error-section .error-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(54, 55, 57, 0.8);
  margin-top: 16px;
}
.error-section .error-content .btn-full-width-xl {
  max-width: 300px;
  margin: 0 auto;
  margin-top: 36px;
}/*# sourceMappingURL=main.css.map */