@font-face {
  font-family: "Playfair Display";
  font-weight: 600;
  src: url(../fonts/PlayfairDisplay-SemiBold.ttf);
}
@font-face {
  font-family: "Playfair Display";
  font-weight: 700;
  src: url(../fonts/PlayfairDisplay-Bold.ttf);
}
@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  src: url(../fonts/OpenSans-Regular.ttf);
}
@font-face {
  font-family: "Open Sans";
  font-weight: 500;
  src: url(../fonts/OpenSans-Medium.ttf);
}
@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  src: url(../fonts/OpenSans-SemiBold.ttf);
}
@font-face {
  font-family: "Open Sans";
  font-weight: 700;
  src: url(../fonts/OpenSans-Bold.ttf);
}
@font-face {
  font-family: "DM Sans";
  font-weight: 400;
  src: url(../fonts/DMSans-Regular.ttf);
}
@font-face {
  font-family: "DM Sans";
  font-weight: 700;
  src: url(../fonts/DMSans-Bold.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
}

body {
  background: #fefefe;
}

.body-wrapper-container {
  height: 100vh;
  background: #fefefe;
  overflow-x: hidden;
  overflow-y: auto;
}

/* In your CSS file or <style> tag */
@media (prefers-color-scheme: dark) {
  html,
  body {
    background-color: white !important;
    color: black !important;
  }
  * {
    background-color: inherit !important;
    color: inherit !important;
  }
}
html {
  color-scheme: only light;
}

.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: rgba(47, 47, 47, 0.5215686275);
  transition: 0.2s ease;
  border-bottom: 2px solid #000000;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2509803922);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.navbar-toggler {
  outline: none !important;
  border: none !important;
}
.navbar-toggler:focus {
  box-shadow: unset !important;
}

.img-brand,
.scrolled-up .img-brand {
  height: 58px;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .img-brand,
  .scrolled-up .img-brand {
    height: 48px;
  }
}
@media (max-width: 575px) {
  .img-brand,
  .scrolled-up .img-brand {
    height: 40px;
  }
}

.navbar-nav {
  gap: 50px;
  padding: 14px 36px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #ececec !important;
  font-family: Inter;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: capitalize;
  position: relative;
  display: flex !important;
  align-items: center;
  cursor: pointer;
}

.nav-link:after {
  content: "";
  position: absolute;
  height: 4px;
  border-radius: 4px;
  width: 30px;
  left: calc(50% - 15px);
  top: 35px;
  background: #F59090;
  opacity: 0;
  height: 3px;
}

.menu-active .nav-link:after,
.page-active .nav-link:after,
.menu-temp-active .nav-link:after {
  opacity: 1;
}

.menu-active .nav-link:after,
.page-active .nav-link:after {
  width: 45px;
  left: calc(50% - 22.5px);
}

.nav-sub-menu {
  display: none;
  position: absolute;
  padding-top: 10px;
  z-index: 99;
}

.nav-sub-menu-sm {
  left: calc(50% - 115px);
}

.nav-sub-menu-md {
  left: calc(50% - 144px);
}

.menu-active .nav-sub-menu,
.menu-temp-active .nav-sub-menu {
  display: block;
}

.nav-sub-menu-item-wrapper {
  border-radius: 10px;
  background: #ededed;
  padding: 20px 15px;
  margin-top: 12px;
}

.nav-sub-menu-sm .nav-sub-menu-item-wrapper {
  width: 230px;
}

.nav-sub-menu-md .nav-sub-menu-item-wrapper {
  min-width: 288px;
}

.nav-sub-menu-items:not(:last-child) {
  margin-bottom: 10px;
}

.nav-sub-menu-link {
  display: block;
  white-space: nowrap;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.88px;
  text-transform: capitalize;
  padding: 5px 10px;
  color: #848892;
  text-decoration: none;
  border-left: 3px solid transparent;
}

.nav-sub-menu-items:hover .nav-sub-menu-link {
  color: #02720d;
  border-color: transparent;
}

.nav-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 700;
  cursor: pointer;
  height: 28px;
  width: 28px;
  z-index: 999;
  margin-right: 30px;
  flex-shrink: 0;
}

.toggler-icon-top,
.toggler-icon-middle,
.toggler-icon-bottom {
  position: absolute;
  background: #fff;
  height: 3px;
  width: 24px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.toggler-icon-top {
  transform: rotate(45deg);
  animation: icon-top-close 0.3s;
}

.toggler-icon-middle {
  opacity: 0;
  top: 15px;
}

.toggler-icon-bottom {
  transform: rotate(-45deg);
  animation: icon-bottom-close 0.3s;
}

.navbar-toggler[aria-expanded=false] .toggler-icon-top,
.hover-menu-open .toggler-icon-top {
  transform: none;
  top: 7px;
  animation: icon-top-open 0.3s;
}

.navbar-toggler[aria-expanded=false] .toggler-icon-middle,
.hover-menu-open .toggler-icon-middle {
  top: 15px;
  opacity: 1;
}

.navbar-toggler[aria-expanded=false] .toggler-icon-bottom,
.hover-menu-open .toggler-icon-bottom {
  transform: none;
  top: 23px;
  animation: icon-bottom-open 0.3s;
}

@keyframes icon-top-open {
  from {
    top: 13px;
    transform: rotate(45deg);
  }
  to {
    top: 7px;
    transform: rotate(0deg);
  }
}
@keyframes icon-top-close {
  from {
    top: 7px;
    transform: rotate(0deg);
  }
  to {
    top: 13px;
    transform: rotate(45deg);
  }
}
@keyframes icon-bottom-open {
  from {
    top: 13px;
    transform: rotate(-45deg);
  }
  to {
    top: 23px;
    transform: rotate(0deg);
  }
}
@keyframes icon-bottom-close {
  from {
    top: 23px;
    transform: rotate(0deg);
  }
  to {
    top: 13px;
    transform: rotate(-45deg);
  }
}
.page-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 26px;
  line-height: 35px;
  color: #494949;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .page-nav {
    scale: 0.8;
    transform: translate(-30px);
  }
}

.section-wrapper {
  position: relative;
}
.section-wrapper:last-child, .section-wrapper.section-end {
  margin-bottom: 100px;
}
@media (max-width: 575px) {
  .section-wrapper:last-child, .section-wrapper.section-end {
    margin-bottom: 60px;
  }
}

.page-section {
  max-width: 1400px;
  margin-inline: auto;
}
.page-section.page-section-sm {
  max-width: 991px;
}

.section-inner {
  margin-inline: auto;
  padding-top: 1px;
  padding-bottom: 1px;
}

.section-inner:not(.section-hero) {
  padding: 60px 20px;
}

.section-hero-wrapper {
  background-size: cover;
  background-position: center;
  height: 832px;
}
@media (max-width: 991px) {
  .section-hero-wrapper {
    height: 780px;
  }
}
@media (max-width: 767px) {
  .section-hero-wrapper {
    height: 650px;
  }
}

.section-homepage-hero-wrapper {
  background-image: url(../images/img-hero.webp);
}
.section-homepage-hero-wrapper .hero-header {
  padding: 220px 30px 0;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .section-homepage-hero-wrapper .hero-header {
    margin-bottom: 50px;
  }
}

.section-aboutus-hero-wrapper {
  background-image: url(../images/img-aboutus-hero.webp);
}

.section-contactus-hero-wrapper {
  background-image: url(../images/img-contactus-hero.webp);
}

.section-gallery-hero-wrapper {
  background-image: url(../images/img-gallery-hero.webp);
}

.section-accolade-hero-wrapper {
  background-image: url(../images/img-accolade-hero.webp);
}

.section-brands-hero-wrapper {
  background-image: url(../images/img-brands-hero.webp);
}

.section-products-hero-wrapper {
  background-image: url(../images/img-products-hero.webp);
}

.hero-header {
  font-weight: 800;
  font-size: 54px;
  line-height: 74px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F3E13E;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
  max-width: 1186px;
  margin-inline: auto;
  line-height: 90px;
}
@media (max-width: 991px) {
  .hero-header {
    line-height: 80px;
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero-header {
    line-height: 70px;
    font-size: 44px;
  }
}
@media (max-width: 575px) {
  .hero-header {
    line-height: 60px;
    font-size: 34px;
  }
}

.section-page-hero-wrapper {
  height: 838px;
  display: flex;
  align-items: center;
}
.section-page-hero-wrapper .hero-header {
  padding-inline: 30px;
}
@media (max-width: 1399px) {
  .section-page-hero-wrapper {
    height: 700px;
  }
}
@media (max-width: 1199px) {
  .section-page-hero-wrapper {
    height: 600px;
  }
}
@media (max-width: 991px) {
  .section-page-hero-wrapper {
    height: 500px;
  }
}

.hero-cta-wrapper {
  margin-bottom: 60px;
  text-align: center;
}

.hero-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 78px;
  width: 244px;
  border-radius: 18px;
  background: #951313 !important;
  text-decoration: none;
  text-align: center;
  font-family: "Playfair Display";
  font-weight: 600;
  color: #FCFCFC;
  font-size: 30px;
  font-weight: 600;
  line-height: 130px;
  letter-spacing: 0.6px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .hero-cta {
    font-size: 20px;
    height: 48px;
    width: 180px;
  }
}

.page-section-header {
  font-family: "Playfair Display";
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0.05em;
  color: #0B0B0B;
  margin-bottom: 70px;
  position: relative;
}
@media (max-width: 991px) {
  .page-section-header {
    margin-bottom: 80px;
    font-size: 28px;
    line-height: 38px;
  }
}
@media (max-width: 767px) {
  .page-section-header {
    margin-bottom: 60px;
    font-size: 22px;
    line-height: 32px;
  }
}

.page-section-header-highlight {
  display: inline-block;
}
.page-section-header-highlight:after {
  display: inline-block;
  content: "";
  position: absolute;
  width: 120%;
  max-width: 1200px;
  height: 3px;
  left: 0;
  bottom: -22px;
  background: linear-gradient(to right, #B70000, transparent);
}
@media (max-width: 1199px) {
  .page-section-header-highlight:after {
    width: 90%;
  }
}

.page-section-header-sm {
  font-size: 28px;
}
@media (max-width: 991px) {
  .page-section-header-sm {
    margin-bottom: 80px;
    font-size: 22px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .page-section-header-sm {
    margin-bottom: 60px;
    font-size: 20px;
    line-height: 28px;
  }
}

.page-section-description {
  font-family: "Open Sans";
  font-weight: 400;
  font-size: 24px;
  line-height: 42px;
  color: #3E3E3E;
}
.page-section-description:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .page-section-description {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .page-section-description {
    font-size: 16px;
    line-height: 32px;
  }
}

.page-section-image-container {
  display: block;
  position: relative;
  width: 100%;
  max-width: 375px;
  margin: 0 auto 40px;
  overflow: hidden;
  transition: ease-in-out 0.3s;
}

.page-section-image-container:hover {
  transform: translateY(-10px);
}

a.page-section-image-container:hover .seciton-image-desc {
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.page-seciton-image {
  width: 100%;
  height: 430px;
  background-position: center;
  background-size: cover;
  border-radius: 28px;
  background-color: #F9F9F9;
  border: 1px solid #D4D4D4;
  transition: ease-in-out 0.3s;
}

.page-seciton-image-modal {
  width: 100%;
  height: 75vh;
  max-height: 600px;
  background-position: center;
  background-size: cover;
  border-top-right-radius: var(--bs-modal-inner-border-radius);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
}

.modal-image-only {
  border-radius: var(--bs-modal-inner-border-radius);
}

.section-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: inherit;
  background: transparent;
  border-radius: 28px;
}

a.page-section-image-container:hover .section-image-overlay {
  background: rgba(0, 0, 0, 0.0941176471);
}

.img-gallery {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  aspect-ratio: 1/1;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.2509803922);
  border-radius: 8px;
  margin-bottom: 30px;
}

.img-accolade {
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1.3/1;
  width: 100%;
}

.section-range {
  background: #FCFAFA;
}

.contactus-form-container,
.contactus-details-container {
  padding: 56px;
  border-radius: 12px;
}
@media (max-width: 991px) {
  .contactus-form-container,
  .contactus-details-container {
    padding: 40px 20px;
  }
}

.contactus-form-container {
  background: #FBFBFB;
}

.contactus-form-header {
  color: #F01919;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  line-height: 65px;
  letter-spacing: 0.6px;
  text-transform: capitalize;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .contactus-form-header {
    font-size: 22px;
    margin-bottom: 50px;
  }
}

.contactus-form-container .form-control {
  padding: 0.75rem 1rem;
}

.contact-details-wrapper {
  margin-bottom: 36px;
}
@media (max-width: 991px) {
  .contact-details-wrapper {
    margin-bottom: 26px;
  }
}

.contact-details {
  font-weight: 600;
  font-size: 22px;
  line-height: 40px;
  letter-spacing: 0.05em;
  color: #696969;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .contact-details {
    font-size: 18px;
    line-height: auto;
    letter-spacing: 0.04em;
  }
}
@media (max-width: 575px) {
  .contact-details {
    font-size: 16px;
    letter-spacing: 0.02em;
  }
}

.contact-details:hover {
  text-decoration: none;
  color: #605757;
}

.contact-details-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.contactus-map-container iframe {
  width: 100% !important;
  height: 420px;
}

.contact-map {
  border-radius: 12px;
}

.contact-instruction-wrapper {
  margin-bottom: 100px;
  padding-inline: 20px;
}

.instruction-container {
  margin-bottom: 40px;
}

.lbl-highlight {
  color: #C9020A;
  font: bold 18px;
}

.lbl-instruction {
  font-size: 14px;
  margin-bottom: 10px;
}

.swiper {
  width: 100%;
  padding-inline: 40px !important;
}
@media (max-width: 767px) {
  .swiper {
    padding-inline: 25px !important;
  }
}
@media (max-width: 575px) {
  .swiper {
    padding-inline: 15px !important;
  }
}

.range-swiper {
  height: 650px;
}
@media (max-width: 767px) {
  .range-swiper {
    height: 550px;
  }
}
@media (max-width: 575px) {
  .range-swiper {
    height: 480px;
  }
}

.category-swiper {
  height: 46px;
  padding-inline: 40px !important;
}
.category-swiper .swiper-slide {
  width: auto !important;
}
.category-swiper .swiper-button-next,
.category-swiper .swiper-button-prev {
  background: #fff;
  padding-block: 3px;
  box-sizing: content-box;
  translate: 0 -2px;
  cursor: default;
}
.category-swiper .swiper-button-next::after,
.category-swiper .swiper-button-prev::after {
  transition: 0.2s ease-in-out;
  font-size: 25px !important;
}
.category-swiper .swiper-button-next::after:active,
.category-swiper .swiper-button-prev::after:active {
  font-size: 22px !important;
}
.category-swiper .swiper-button-prev {
  left: -6px !important;
  background: linear-gradient(to right, #fff, transparent);
  padding-right: 30px;
}
.category-swiper .swiper-button-next {
  background: linear-gradient(to left, #fff, transparent);
  right: -6px !important;
  padding-left: 30px;
}

.product-nav-tabs {
  height: 46px;
  justify-content: center;
  gap: 20px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #5C5C5C !important;
}
@media (max-width: 767px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 30px !important;
  }
}
@media (max-width: 575px) {
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 25px !important;
  }
}
@media (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    height: 30px !important;
    right: -6px !important;
  }
}
@media (max-width: 575px) {
  .swiper-button-next,
  .swiper-button-prev {
    right: -6px !important;
    height: 25px !important;
  }
}

@media (max-width: 767px) {
  .swiper-button-prev {
    left: -6px !important;
  }
}

@media (max-width: 767px) {
  .swiper-button-next {
    right: -6px !important;
  }
}

.swiper-pagination-bullet-active {
  background: #CD3737 !important;
}

.custom-card {
  position: relative;
  margin-inline: auto;
  overflow: hidden;
  text-decoration: none;
  width: 100%;
}

.custom-card-primary {
  border-radius: 8px;
  height: 570px;
  max-width: 378px;
}
.custom-card-primary .custom-card-footer {
  left: 14px;
  right: 14px;
  bottom: 14px;
  width: calc(100% - 28px);
  height: 76px;
  background: #FEFEFE;
  border-radius: 6px;
}
.custom-card-primary .custom-card-info {
  color: #2B2B2B;
}
@media (max-width: 767px) {
  .custom-card-primary {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .custom-card-primary {
    height: 400px;
  }
}

.custom-card-secondary {
  border-radius: 12px;
  height: 432px;
  max-width: 448px;
  margin-bottom: 30px;
}
.custom-card-secondary .custom-card-footer {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 115px;
  background: rgba(53, 53, 53, 0.5607843137);
}
.custom-card-secondary .custom-card-info {
  color: #fefefe;
}
@media (max-width: 767px) {
  .custom-card-secondary {
    height: 380px;
  }
}
@media (max-width: 575px) {
  .custom-card-secondary {
    height: 320px;
  }
}

.img-custom-card {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

.custom-card-footer {
  position: absolute;
  padding: 13px 20px 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-card-info {
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  text-transform: capitalize;
  color: #2B2B2B;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: calc(100% - 50px);
}
@media (max-width: 767px) {
  .custom-card-info {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .custom-card-info {
    font-size: 18px;
  }
}

.custom-card-cta {
  width: 50px;
  height: 50px;
  background: #CD3737;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.icon-card-cta {
  height: 20px;
  width: 20px;
  background-color: #fff;
}

.custom-card-cta .icon-card-cta {
  animation: flicker-reverse 0.4s ease-in-out forwards;
  transform: translate(0, 0);
}

.custom-card-cta:hover .icon-card-cta {
  animation: flicker-forward 0.4s ease-in-out forwards;
  transform: translate(4px, 0);
}

.brand-card-wrapper {
  margin-top: 40px;
}

.brand-card {
  max-width: 300px;
  height: 130px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  transition: ease 0.3s;
  margin-bottom: 40px;
}
@media (max-width: 1399px) {
  .brand-card {
    margin-bottom: 30px;
  }
}

.img-brand-card {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.category-tab-container {
  position: sticky;
  top: 100px;
  z-index: 9;
}
@media (max-width: 765px) {
  .category-tab-container {
    top: 85px;
  }
}
@media (max-width: 575px) {
  .category-tab-container {
    top: 75px;
  }
}

.product-nav-tabs {
  margin-bottom: 110px;
}

.tab-link {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  padding: 16px;
  width: auto;
  height: 46px;
  background: #F9F9F9;
  border: 1px solid #A5A5A5;
  border-radius: 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
  color: #696969;
  transition: 0.3s ease-in-out;
}
.tab-link:hover {
  background: #efefef;
}
.tab-link:active {
  transition: 0.3s ease-in-out;
  background: #e3e3e3;
}
.tab-link.active {
  background: #C84848;
  border-color: #C84848;
  color: #fefefe;
}
@media (max-width: 991px) {
  .tab-link {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .tab-link {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .tab-link {
    font-size: 16px;
  }
}

.tab-link-menu .tab-link {
  display: flex !important;
  justify-content: unset !important;
  border-radius: 6px;
  background: transparent;
  padding: 10px 15px !important;
}
.tab-link-menu .tab-link.active {
  background: #C84848;
  border-color: #C84848;
  color: #fefefe;
}
@media (max-width: 768px) {
  .tab-link-menu {
    height: 72vh;
    overflow-y: auto;
  }
}

.btn-tab-link-selector {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 300px;
  padding-inline: 18px;
  height: 48px;
  border-radius: 14px;
  border: 0px solid rgba(216, 216, 216, 0);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
  margin-bottom: 30px;
  position: relative;
  z-index: 9999;
}

.btn-tab-link-selector.show {
  border-radius: 14px 14px 0 0;
}

.tab-link-menu,
.btn-tab-link-selector,
.btn-tab-link-selector:active {
  background: #f6f6f6;
}

.btn-tab-link-selector,
.btn-tab-link-selector:active {
  color: #C84848;
}

.tab-link-menu {
  padding: 20px;
  width: -webkit-fill-available;
  transform: translate3d(0px, 35px, 0px) !important;
  border: unset;
  border-radius: 14px;
}
.tab-link-menu .tab-item {
  margin-left: 0;
}
.tab-link-menu .tab-item:not(:last-child) {
  margin-bottom: 10px;
}

.btn-tab-link-selector::after {
  content: unset;
}

.category-content {
  margin-top: 60px;
}

.section-product-details-wrapper {
  margin-top: 112px;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .section-product-details-wrapper {
    margin-top: 100px;
    padding: 0;
  }
}

.product-details-conatiner {
  margin-bottom: 175px;
}
@media (max-width: 991px) {
  .product-details-conatiner {
    margin-bottom: 100px;
  }
}

.product-details-image-container {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .product-details-image-container {
    height: auto;
  }
}

.img-product-details {
  max-width: 300px;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 500/300;
}
@media (max-width: 991px) {
  .img-product-details {
    height: 300px;
  }
}

.img-products {
  max-width: 204px;
  max-height: 284px;
}

.product-details-header {
  font-weight: 600;
  font-size: 42px;
  line-height: 57px;
  color: #2B2B2B;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .product-details-header {
    font-size: 28px;
    line-height: auto;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .product-details-header {
    font-size: 22px;
  }
}

product-details {
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: #696969;
  margin-bottom: 70px;
}

@keyframes flicker-forward {
  0% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(5px, 0);
  }
  60% {
    transform: translate(3px, 0);
  }
  100% {
    transform: translate(4px, 0);
  }
}
@keyframes flicker-reverse {
  0% {
    transform: translate(4px, 0);
  }
  40% {
    transform: translate(-1px, 0);
  }
  60% {
    transform: translate(1px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.testimonial-banner-wrapper {
  padding-inline: 20px;
}
@media (max-width: 768px) {
  .testimonial-banner-wrapper {
    padding-inline: 10px;
  }
}

.testimonial-banner {
  position: relative;
  height: 370px;
  max-width: 672px;
  width: 100%;
  background: #FEFEFE;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.1019607843);
  border-radius: 16px;
  flex-shrink: 0;
  padding: 56px 36px;
  margin-bottom: 62px;
  margin-top: 62px;
}
@media (max-width: 1024px) {
  .testimonial-banner {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .testimonial-banner {
    padding: 30px 15px;
    height: 290px;
  }
}

.testimonial-banner::before,
.testimonial-banner::after {
  content: '"';
  position: absolute;
  background-color: #BC1A1A;
  height: 70px;
  width: 70px;
  mask-image: url(../icons/quote.svg);
  -webkit-mask-image: url(../icons/quote.svg);
}
@media (max-width: 767px) {
  .testimonial-banner::before,
  .testimonial-banner::after {
    height: 50px;
    width: 50px;
  }
}

.testimonial-banner::before {
  top: -32px;
  left: 26px;
}
@media (max-width: 768px) {
  .testimonial-banner::before {
    top: -24px;
    left: 14px;
  }
}

.testimonial-banner::after {
  bottom: -32px;
  right: 26px;
  transform: rotateY(180deg);
}

.testimonial-content {
  height: 200px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 38px;
  color: #414141;
  overflow-y: auto;
}
@media (max-width: 575px) {
  .testimonial-content {
    font-size: 16px;
    line-height: 28px;
  }
}

.testimonial-info-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 42px;
}
@media (max-width: 575px) {
  .testimonial-info-wrapper {
    margin-bottom: 20px;
  }
}

.testimonial-name {
  font-weight: 600;
  font-size: 24px;
  color: #303030;
}
.testimonial-name small {
  font-weight: 400;
}
@media (max-width: 767px) {
  .testimonial-name {
    font-size: 18px;
  }
}

.img-testimonial {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .img-testimonial {
    height: 40px;
    width: 40px;
  }
}

.product-wrapper {
  padding-top: 59px;
}
@media (max-width: 991px) {
  .product-wrapper {
    padding-top: 11px;
  }
}

.img-footer-brand {
  width: 220px;
  margin-bottom: 30px;
}

.footer-area {
  position: relative;
  background: #2C2C2C;
  color: #F2F2F2;
  min-height: 15vh;
  overflow-x: hidden;
  padding: 50px 36px;
}

.footer-inner {
  max-width: 1400px;
  margin-inline: auto;
}

.brand-logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-nav-container {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.footer-nav-item {
  cursor: pointer;
  position: relative;
}
@media (max-width: 1199px) {
  .footer-nav-item {
    margin-bottom: 40px;
  }
}

.footer-nav-item:not(:last-child) {
  margin-bottom: 20px;
}

.footer-header, .footer-nav-items a {
  font-family: "DM Sans";
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  color: #ED5151;
  text-transform: capitalize;
  margin-bottom: 40px;
  text-decoration: none;
  display: inline-block;
}

@media (max-width: 575px) {
  .footer-header {
    margin-bottom: 20px;
  }
  .footer-nav-items:last-child a {
    margin-bottom: 0;
  }
}
.footer-header {
  cursor: default !important;
}

.footer-nav-items a:hover {
  color: #fff;
}

.footer-sub-menu-items,
.footer-links {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  text-transform: capitalize;
  color: #F2F2F2;
  text-decoration: none;
}
.footer-sub-menu-items.align-items-start,
.footer-links.align-items-start {
  line-height: 30px;
}

.footer-sub-menu-items:hover,
.footer-links:hover {
  color: #fff;
  text-decoration: none;
}

.footer-links {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 20px;
}

.social-icon-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.social-icons {
  width: 36px;
  height: 36px;
}

.lbl-copyright {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #F2F2F2;
  padding: 25px 0 0;
  margin-top: 20px;
  margin-inline: auto;
  border-top: 1px solid #D9DBE9;
}
@media (min-width: 1400px) {
  .lbl-copyright {
    max-width: 1240px;
  }
}
@media (min-width: 991px) {
  .lbl-copyright {
    max-width: 90%;
  }
}

.btn-common {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.btn-chat-whatsapp,
.btn-enquire {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 15px 46px !important;
  border-radius: 10px !important;
  background: #25d366 !important;
  border: 3px solid #25d366 !important;
}
@media (max-width: 767px) {
  .btn-chat-whatsapp,
  .btn-enquire {
    padding: 10px 20px !important;
  }
}

.btn-chat-whatsapp:hover {
  background: transparent !important;
}

.btn-chat-whatsapp-main {
  background: #25d366;
  border: 3px solid #25d366;
  position: absolute;
  width: 70px;
  height: 70px;
  right: 50px;
  bottom: 60px;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.2509803922);
  border-radius: 50%;
  z-index: 9999;
}
.btn-chat-whatsapp-main .icon-whatsapp {
  height: 34px;
  width: 34px;
  background-color: #fff;
}
.btn-chat-whatsapp-main:hover {
  background: transparent;
}
.btn-chat-whatsapp-main:hover .icon-whatsapp {
  background-color: #25d366;
}
@media (max-width: 575px) {
  .btn-chat-whatsapp-main {
    scale: 0.8;
    right: 20px;
    bottom: 30px;
  }
}

.lbl-contactus {
  color: #FFF;
  font-size: 25px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .lbl-contactus {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .lbl-contactus {
    font-size: 18px;
  }
}

.btn-chat-whatsapp:hover .lbl-contactus {
  color: #25d366;
}

.btn-brochure {
  width: 199px;
  height: 42px;
  background: #FFF;
  border-radius: 6px;
  border: 1px solid transparent;
  margin-top: 30px;
}
.btn-brochure .lbl-btn {
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 14px;
  color: #990000;
}
.btn-brochure .icon-brochure {
  height: 24px;
  width: 24px;
  background-color: #990000;
}
.btn-brochure:hover, .btn-brochure:active {
  border-color: #fff;
  background: transparent;
}
.btn-brochure:hover .icon-brochure, .btn-brochure:active .icon-brochure {
  background-color: #fff;
}
.btn-brochure:hover .lbl-btn, .btn-brochure:active .lbl-btn {
  color: #fff;
}

.lbl-bold {
  font-weight: 700;
}

.lbl-medium {
  font-weight: 500;
}

.lbl-regular {
  font-weight: 400;
}

.lbl-normalize {
  text-transform: none !important;
}

.lbl-ellipsis {
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}

.cursor-pointer {
  cursor: pointer;
}

.section-after-gap-lg {
  margin-bottom: 150px;
}

.section-after-gap-sm {
  margin-bottom: 40px;
}

.icon-common,
.testimonial-banner::before,
.testimonial-banner::after {
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  display: inline-block;
  /* background-color: #000; */
  vertical-align: middle;
  text-align: center;
  flex-shrink: 0;
}

.icon-social-link {
  height: 30px;
  width: 30px;
  background-color: #EF8080;
}

.icon-footer-links {
  width: 20px;
  height: 20px;
  background-color: #ED5151;
}

.icon-contact-details {
  width: 40px;
  height: 40px;
  background-color: #990000;
}
@media (max-width: 991px) {
  .icon-contact-details {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 991px) {
  .icon-contact-details {
    width: 26px;
    height: 26px;
  }
}

.icon-page-nav {
  height: 30px;
  width: 30px;
  background-color: #494949;
}

.footer-links:hover .icon-footer-links {
  background-color: #fff;
}

.icon-footer-links:first-child {
  margin-right: 10px;
}

.icon-nav:last-child {
  margin-left: 8px;
}

.icon-contact-us {
  width: 32px;
  height: 32px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .icon-contact-us {
    width: 25px;
    height: 25px;
  }
}

.icon-tab-link {
  height: 26px;
  width: 26px;
  background-color: #C84848;
}

.icon-chevron {
  mask-image: url(../icons/chevron-down.svg);
  -webkit-mask-image: url(../icons/chevron-down.svg);
}
.icon-chevron.icon-chevron-right {
  transform: rotate(-90deg);
}
.icon-chevron.icon-chevron-left {
  transform: rotate(90deg);
}

.menu-active .icon-chevron, .show .icon-chevron {
  transform: rotateX(180deg);
}

.icon-whatsapp {
  mask-image: url(../icons/whatsapp.svg);
  -webkit-mask-image: url(../icons/whatsapp.svg);
}

.icon-fb {
  mask-image: url(../icons/facebook.svg);
  -webkit-mask-image: url(../icons/facebook.svg);
}

.icon-insta {
  mask-image: url(../icons/instagram.svg);
  -webkit-mask-image: url(../icons/instagram.svg);
}

.icon-linkdin {
  mask-image: url(../icons/linkedin.svg);
  -webkit-mask-image: url(../icons/linkedin.svg);
}

.icon-x-twitter {
  mask-image: url(../icons/x-twitter.svg);
  -webkit-mask-image: url(../icons/x-twitter.svg);
}

.icon-youtube {
  mask-image: url(../icons/youtube.svg);
  -webkit-mask-image: url(../icons/youtube.svg);
}

.icon-brochure {
  mask-image: url(../icons/brochure.svg);
  -webkit-mask-image: url(../icons/brochure.svg);
}

.icon-location {
  mask-image: url(../icons/location.svg);
  -webkit-mask-image: url(../icons/location.svg);
}

.icon-location-fill {
  mask-image: url(../icons/location-fill.svg);
  -webkit-mask-image: url(../icons/location-fill.svg);
}

.icon-email {
  mask-image: url(../icons/envelope.svg);
  -webkit-mask-image: url(../icons/envelope.svg);
}

.icon-email-fill {
  mask-image: url(../icons/envelope-fill.svg);
  -webkit-mask-image: url(../icons/envelope-fill.svg);
}

.icon-telephone {
  mask-image: url(../icons/telephone.svg);
  -webkit-mask-image: url(../icons/telephone.svg);
}

.icon-old-phone {
  mask-image: url(../icons/old-phone.svg);
  -webkit-mask-image: url(../icons/old-phone.svg);
}

.icon-telephone-fill {
  mask-image: url(../icons/telephone-fill.svg);
  -webkit-mask-image: url(../icons/telephone-fill.svg);
}

.icon-land-line-fill {
  mask-image: url(../icons/land-line-fill.svg);
  -webkit-mask-image: url(../icons/land-line-fill.svg);
}

.icon-time-fill {
  mask-image: url(../icons/time-fill.svg);
  -webkit-mask-image: url(../icons/time-fill.svg);
}

.spoffer {
  background: #9d0100;
  display: flex;
  padding: 5px;
  height: 100%;
  max-height: 208px;
}
@media (min-width: 1485px) {
  .spoffer {
    height: 208px;
  }
}
@media (max-width: 767px) {
  .spoffer {
    height: 92px;
    margin-bottom: 20px;
  }
}

.spoffer-content {
  padding-left: 20px;
  width: 100%;
  display: flex;
  align-items: center;
}

.lbl-blinker {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  width: 222px;
  font-size: 14px;
  flex-shrink: 0;
  animation-name: blinker;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}
@media (max-width: 778px) {
  .lbl-blinker {
    font-size: 14px;
    width: 154px;
  }
}
@keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=site.css.map */