:root {
  --max-width: 1200px;
  --gap: 1rem;
  --color-white: #fff;
  --color-light: #3c2cda;
  --color-dark: #07125e;
  --mansory-gap: 13px;
  --color-orange: #f4ae52;
  --color-black: #151505;
  /*--font-body: "Hedvig Letters Serif", serif;*/
  --font-heading: "Ancizar Serif", serif;
  /*--font-body: "DM Serif Text", serif;*/
  --font-body: "Rethink Sans", sans-serif;
  /*--gradient: linear-gradient(95.67deg, #fcab72 1.98%, #934b40 154.7%);*/
  /* --dark-bg: #405659; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: #151515;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
  font-family: var(--font-heading);
}

h1 {
  font-size: 28px;
  /* line-height: 1.5; */
}

img {
  max-width: 100%;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 10px;
}

.pt-2 {
  padding-top: 20px;
}

.pt-3 {
  padding-top: 30px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-3I {
  padding-bottom: 30px !important;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.pb-2 {
  padding-bottom: 20px !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.direction-column {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.row-reverse .row {
  flex-direction: row-reverse;
}

.w-full {
  width: 100%;
}

.col-2 {
  width: 50%;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
}

.grid-span-2 {
  grid-column: span 2;
}

.grid-span-3 {
  grid-column: span 3;
}

.grid-span-4 {
  grid-column: span 4;
}

.grid-span-5 {
  grid-column: span 5;
}

.grid-span-6 {
  grid-column: span 6;
}

.grid-span-7 {
  grid-column: span 7;
}

.gap-0 {
  gap: 0px;
}

.gap-1 {
  gap: 10px;
}

.gap-2 {
  gap: 20px;
}

.gap-3 {
  gap: 30px;
}

.gap-4 {
  gap: 40px;
}

.gap-5 {
  gap: 50px;
}

.gap-y-5 {
  row-gap: 50px;
}

.gap-6 {
  gap: 6rem;
}

.gap-7 {
  gap: 7rem;
}

.gap-8 {
  gap: 8rem;
}

.gap-9 {
  gap: 9rem;
}

.gap-10 {
  gap: 10rem;
}

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

.align-center {
  align-items: center;
}

.overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
}

.section-border-top {
  border-top: 1px solid #bebebe;
}

.unstyled-button {
  font-weight: 500;
  color: #ff0102;
}

.unstyled-button.white {
  color: #fff;
}

.section-padding {
  padding: 3.8rem 0;
}

.narrow-container {
  padding-inline: 6rem;
}

.section-padding-bottom {
  padding-bottom: 3.8rem;
}

.button-container {
  /* margin-top: 30px; */
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.button {
  background-color: #701500;
  color: #fff;
  padding: 12px 30px 13px;
  border-radius: 3px;
  display: inline-block;
  align-items: center;
  gap: 13px;
  transition: 0.3s;
  cursor: pointer;
  font-family: var(--font-body);
  outline: none;
  border: none;
}

.button:hover {
  background-color: #151515;
}

.button.white {
  background-color: #fff;
  color: #151515;
}

.button.white:hover {
  background-color: #151515;
  color: #fff;
}

.cover-link {
  position: absolute;
  inset: 0;
}

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

header .logo img {
  display: flex;
  height: 80px;
  /* padding-block: 7px; */
}

header {
  position: relative;
  z-index: 99;
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 20px 2px #0000001f;
}

.navigation .navigation-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 32px;
  font-size: 18px;
  /* font-weight: 700; */
  font-family: var(--font-heading);
}

header .logo img {
  /* width: 100%; */
}

.navigation .navigation-list .nav-btn {
  font-weight: 400;
}

.topbar {
  background-color: #701500;
  color: #fff;
  text-align: center;
  padding: 9px 0;
  font-size: 16px;
  /*text-transform: uppercase;*/
}

.top-nav-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

.top-nav-list li a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.search-icon {
  display: flex;
}

.navbar .row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  padding: 0;
}

.dropdown {
  position: relative;
}

.dropdown .dropdown-menu {
  position: absolute;
  width: 130px;
  background-color: #fff;
  box-shadow: 0px 2px 4px #0000002e;
  padding: 5px 0;
  border-radius: 8px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

ul.submenu li a {
  display: block;
  padding: 5px 15px;
  font-size: 14px;
}

ul.submenu {
  list-style: none;
}

.navigation .navigation-list li {
  padding: 15px 0;
}

.navigation .navigation-list li a.active {
    color: #701500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.navigation .navigation-list li.dropdown:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z'/%3E%3C/svg%3E");
  height: 10px;
  width: 10px;
  display: inline-block;
  margin-left: 3px;
}

.navigation .navigation-list ul.submenu li {
  padding: 0;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.hamburg-icon .line {
  width: 20px;
  height: 2px;
  margin-bottom: 4px;
  background-color: var(--color-dark);
  border-radius: 5px;
  transition: 0.3s;
}

.hamburg-icon.open .line:first-child {
  transform: rotate(45deg) translate(5px, -2px);
}

.hamburg-icon.open .line:nth-child(2) {
  opacity: 0;
}

.hamburg-icon.open .line:last-child {
  transform: rotate(-46deg) translate(10px, -3px);
}

.hamburg-icon .line:last-child {
  margin: 0;
}

.hamburg-icon {
  display: none;
}

header .logo {
  display: flex;
  justify-content: center;
}

.header-contact {
  display: flex;
  justify-content: flex-end;
}

.header-contact .button {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding-inline: 20px;
}

.header-contact .button .icon {
  display: flex;
}

header .search-bar {
  position: relative;
}

header .search-bar input {
  border-bottom: 1px solid #ebebeb;
  border-radius: 0;
  padding-left: 30px;
  width: 200px;
  padding-block: 10px;
  outline: none;
}

header .search-bar .icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

header .search-bar input::placeholder {
  color: #151515;
  font-size: 16px;
}

.search-results {
    position: absolute;
    left: 0;
    width: 100%;
    font-size: 14px;
    text-transform: capitalize;
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 20px 30px 0px #0000001f;
    border-radius: 10px;
    display: none;
    max-height: 200px;
    overflow-y: scroll;
}

.search-results::-webkit-scrollbar {
  width: 5px;
}

.search-results::-webkit-scrollbar-track {
  background: #fff; 
}
 
.search-results::-webkit-scrollbar-thumb {
  background: #6e1500; 
}

.search-results ul {
    list-style: none;
}

.search-results li a {
    padding-block: 7px;
    display: block;
    border-bottom: 1px solid #00000017;
    transition: 0.3s;
}

.search-results li a:hover {
    color: #6e1500;
}

input::placeholder {
  font-family: inherit;
  color: #151515;
}

header .navigation {
  border-top: 1px solid hsl(0deg 0% 0% / 10%);
  display: flex;
  justify-content: center;
}

.main-banner .container,
.home-slider .container {
  position: absolute;
  color: #fff;
  /* font-weight: 700; */
  width: 100%;
  margin-inline: auto;
  margin-left: calc((100vw - (var(--max-width))) / 2);
}

.banner-content h1 {
  font-size: 60px;
  text-transform: capitalize;
}

.home-banner-section {
  position: relative;
  /* height: 85vh; */
  overflow: hidden;
}

.banner-content {
  padding: 60px;
  display: flex;
  align-items: center;
  background-color: #F1E8E5;
}

.section-head h4 {
  font-size: 18px;
  letter-spacing: 0.15em;
  text-decoration-line: underline;
  /*text-transform: uppercase;*/
  margin-bottom: 10px;
}

.banner-content p {
  margin: 10px 0 20px;
}

.home-banner-section .banner-image {
  display: flex;
  width: 100%;
}

.home-banner-section .banner-image video,
.home-banner-section .banner-image iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-section .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-section .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: auto;
}

.home-banner .banner-content {
  width: 60%;
  /* padding: 6rem 20px 5rem 4.3rem; */
  /* background-color: #272727; */
  color: #fff;
}

.home-banner .banner-content .button {
  display: inline-block;
  margin-top: 10px;
}

.home-banner .banner-content p {
  padding: 10px 0 25px;
  font-size: 18px;
}

.home-banner {
  background-color: #000;
}

.main-banner .banner-content {
  width: 70%;
}

.swiper .swiper-pagination-bullet {
  border: 1.5px solid #ddf8fe;
  opacity: 0.6;
  background: #d3f6fd;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  transition: 0.3s;
}

.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 40px;
  background-color: #ddf8fe;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  border-color: #0072bb;
  background-color: #0072bb;
}

.section-head h2 {
  font-size: 50px;
  margin-bottom: 15px;
}

.section-head p {
  font-size: 17px;
}

.section-content {
  padding-top: 15px;
}

.section-content h3 {
  font-size: 28px;
}

.section-head {
  padding-bottom: 20px;
}

footer {
  background-color: #F1E8E5;
  padding: 60px 0px 0;
  /* color: #fff; */
}

.footer-navigation-wrapper {
  width: calc(70% - 40px);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .footer-row {
  gap: 55px;
  margin-bottom: 30px;
  padding-top: 30px;
}

footer .footer-row .footer-logo img {
  border-radius: 8px;
  mix-blend-mode: darken;
}

footer .footer-row .footer-map-locator a {
  display: flex;
  gap: 5px;
  text-decoration: underline;
  font-size: 13px;
  color: #bbc4cb;
  text-underline-offset: 2px;
}

footer .footer-row .footer-logo {
  display: flex;
  gap: 30px;
  flex-direction: column;
  width: calc(30% - 15px);
}

.footer-col-navigation h3 {
  margin-bottom: 15px;
  font-size: 21px;
  /* font-family: var(--font-body); */
}

footer .navigation-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 16px;
  /* font-weight: 500; */
}

.footer-copyright {
  width: 100%;
  /* font-family: var(--font-heading); */
  background-color: #701500;
  padding: 20px 0;
  color: #fff;
}

footer .footer-row-navigation {
  padding: 40px 0px;
}

.main-banner-section {
  height: 55vh;
}

.main-banner-section .container {
  min-height: 100%;
  display: flex;
  align-items: center;
}

.main-banner {
  height: 100%;
}

.row-reverse .about-image {
  padding-left: 0;
  padding-right: 77px;
}

.tab-content.category-grids-row.active {
  display: grid;
}

.accordion-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
  font-size: 20px;
}

.accordion-content {
  display: none;
}

.accordion-label .arrow {
  display: flex;
}

.accordion-label .arrow svg {
  height: 8px;
  width: 11px;
  transition: 0.3s;
}

.accordion.active .accordion-label .arrow svg {
  transform: rotate(180deg);
}

.inner-banner {
  position: relative;
  overflow: hidden;
  height: 55vh;
  display: flex;
  align-items: center;
}

.inner-banner .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.inner-banner .banner-content {
  position: relative;
  z-index: 1;
  color: #fff;
  width: 100%;
  padding-block: 2rem;
}

.inner-banner .banner-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.3;
}

.products-page-section .product-filters {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.products-page-section .product-grid {
  text-align: center;
}

.product-detail-section {
  position: relative;
  padding-top: 2.7rem;
}

.product-image-slider-wrapper {
  position: relative;
  width: 40%;
  padding: 40px;
  background-color: #fff;
  border-radius: 8px;
}

.product-details-wrapper {
  width: 60%;
  padding-left: 5rem;
}

.product-details-wrapper h2 {
  color: inherit;
}

.product-details-wrapper .section-head {
  padding-bottom: 0;
}

.product-details-wrapper .section-content {
  padding-top: 0;
}

.form {
  background-color: #f6f6f6;
  padding: 30px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(7.5px);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-control {
  padding: 15px;
  font-size: 15px;
  border: none;
  border-bottom: 1px solid #151515;
  border-radius: 0;
  border-radius: 2px;
  font-family: inherit;
  background: transparent;
}

.form-group label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.form-button {
  margin: 20px 0 20px;
}

.form-button .button {
  /* padding-inline: 50px; */
  width: fit-content;
}

.contact-page-section .content {
  display: flex;
  flex-direction: column;
}

.button.dark {
  background-color: #000;
}

.container.extend {
  max-width: 1320px;
}

.button.outline {
  background-color: transparent;
  border: 2px solid #fff;
}

.navigation-button {
  width: 64px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  cursor: pointer;
}

.form-control::placeholder {
  color: #151515;
}

.footer-navigation-wrapper .footer-col-navigation {
  width: 25%;
}

.footer-navigation-wrapper .footer-col-navigation.contact-form {
  width: calc(45% - 10px);
}

.footer-contact-form > .row:first-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.footer-contact-form > .row:last-child {
  flex-direction: row;
  flex-wrap: initial;
  gap: 20px;
  align-items: flex-end;
}

.footer-contact-form > .row:last-child .form-group:first-child {
  width: 100%;
}

.footer-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slider-arrows {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.slider-arrows .swiper-button-disabled {
  opacity: 0.5;
  cursor: initial;
}

.slider-arrows > div {
  cursor: pointer;
  display: flex;
  padding: 6px;
  border-radius: 50%;
  border: 1px solid transparent;
}

.slider-arrows > div svg path {
  stroke: #fff;
}

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

.split-head .head {
  max-width: 80%;
}

.split-head .slider-arrows {
  margin-top: 20px;
  padding-right: 15px;
}

.split-head p {
  color: #575757;
}

.collection-slider-area {
  margin-left: calc(((100vw - (var(--max-width))) / 2) + 10px);
}

.collection-card {
  position: relative;
}

.collection-card .image {
  display: flex;
  border-radius: 2px;
  overflow: hidden;
}

.collection-card .image img {
    transition: 0.5s;
    aspect-ratio: 443 / 665;
    object-fit: cover;
}

.collection-card:hover .image img {
    transform: scale(1.05);
}

.collection-card .content {
  text-align: center;
  padding-block: 15px;
  /*text-transform: uppercase; */
}

.collection-card:hover .content {
  text-decoration-line: underline;
  /*text-transform: uppercase;*/
}

.marquee {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: scrollUp 35s linear infinite;
  will-change: transform;
}

.marquee-down .marquee-track {
  animation: scrollDown 35s linear infinite;
}

.spotlight-image-card .image {
    display: flex;
}

/* UP */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* DOWN */
@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* Hover pause */
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.spotlight-grids-container {
  display: flex;
  flex-wrap: wrap;
}

.spotlight-sliders-container {
  width: 62%;
}

.spotlight-content {
  width: 38%;
  padding-left: 40px;
  display: flex;
  align-items: center;
}

.spotlight-section {
  background-color: #701500;
  color: #fff;
}

.spotlight-content .section-head p {
  margin-bottom: 30px;
}

.video video {
  max-width: 100%;
}

.video-content-section .content {
  position: absolute;
  inset: 0;
  left: calc(((100vw - (var(--max-width))) / 2) + 10px);
  color: #fff;
  max-width: 40%;
  display: flex;
  align-items: center;
}

.video-content-section {
  position: relative;
}

.video-content-section video {
    width: 100%;
}

.video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.video-content-section .video {
  display: flex;
  position: relative;
}

.video-content-section .section-head p {
  line-height: 1.8;
  margin-top: 30px;
}

.video-content-section .image img {
  max-height: 76px;
}

.featured-logos {
  max-width: 80%;
  margin-inline: auto;
}

.featured-logos .logo {
  text-align: center;
}

.featured-logos .logo img {
  max-height: 95px;
}

footer > .container > .footer-logo {
  /*padding-bottom: 30px;*/
  border-bottom: 1px solid #0000001a;
}

.footer-logo img {
  max-height: 80px;
}

.logo-description h3 {
  font-size: 20px;
  /*text-transform: uppercase;*/
}

.logo-description p {
  margin-top: 15px;
  line-height: 1.7;
}

.newsletter-form input {
  background-color: #f1e8e5;
  padding-right: 40px;
  border-width: 2px;
  outline: none;
}

.newsletter-form input::placeholder {
    color: #151515 !important;
}

.newsletter-form .newsletter-button {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  background: none;
    border: none;
    outline: none;
}

.newsletter-form .form-group {
  position: relative;
  margin-bottom: 15px;
}

.newsletter-form p {
  line-height: 1.6;
}

.contact-info-footer {
  margin-top: 20px;
}

.contact-info-footer p {
  margin-bottom: 15px;
}

.breadcrumb-section {
  padding-top: 40px;
}

.breadcrumb-list {
  list-style: none;
  gap: 5px;
  align-items: center;
  text-transform: capitalize;
  font-weight: 500;
}

.breadcrumb-list li {
  color: #8f8f8f;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb-list li::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.45508 9.96004L7.71508 6.70004C8.10008 6.31504 8.10008 5.68504 7.71508 5.30004L4.45508 2.04004' stroke='%23818B9C' stroke-width='1.5' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 5px;
}

.breadcrumb-list li:last-child {
  color: #151515;
}

.breadcrumb-list li:last-child::after {
  content: none;
}

.inner-banner-section.only-heading {
  padding-top: 40px;
}

.inner-banner-section.only-heading .inner-banner {
  height: auto;
}

.inner-banner-section.only-heading .banner-content {
  color: #151515;
  background: none;
  padding: 0;
}

.inner-banner-section.only-heading h1 {
  font-size: 50px;
}

.collection-listing-section {
  padding-top: 40px;
}

.product-info-container {
  display: flex;
  flex-wrap: wrap;
}

.collection-listing-container .collection-card:hover .content {
  text-transform: capitalize;
}

.collection-listing-container .collection-card {
  text-transform: capitalize;
}

.button.blur {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.button.blur svg {
  height: 20px;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.collection-video-section .section-head p {
  margin-top: 15px;
}

.product-images-wrapper {
  width: 37%;
  position: sticky;
  top: 158px;
  height: 100%;
}

.product-content-wrapper {
  width: 63%;
  padding-left: 40px;
}

.product-content-wrapper .product-title {
  font-size: 46px;
  padding-bottom: 15px;
  border-bottom: 0.5px dashed #a3a3a3;
  border-radius: 2px;
}

.product-content-wrapper .description {
  font-size: 16px;
  line-height: 1.7;
  padding-top: 25px;
}

.product-content-wrapper .description h3 {
    font-family: var(--font-body);
    margin-block: 5px;
}

.product-content-wrapper .description ul {
  padding-left: 25px;
  padding-top: 3px;
}

.product-content-wrapper .description ul li::marker {
  font-size: 13px;
}

.product-content-wrapper .variants {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.product-content-wrapper .variants .variant {
  text-transform: capitalize;
}

.product-content-wrapper .variants .variant label {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}

.share-product {
  display: flex;
  gap: 10px;
  text-transform: capitalize;
  align-items: center;
  text-decoration: underline;
}

.share-product .icon {
  display: flex;
}

.product-images-wrapper .thumbs-slider {
  margin-bottom: 10px;
}

.pdp-you-may-like-section .collection-card:hover .content {
  text-transform: capitalize;
}

.pdp-you-may-like-section .collection-card .content {
  text-transform: capitalize;
}

.pdp-you-may-like-section {
  padding-top: 0;
}

.pdp-enquiry-section {
  background-color: #f1e8e5;
}

.enquiry-form .form-group label {
  margin-bottom: -20px;
  padding-inline: 7px;
}

.enquiry-form .form-control {
  padding: 25px 7px 10px;
  outline: none;
  border-radius: 0;
}

.pdp-enquiry-section .section-head h2,
.contact-enquiry-section .section-head h2 {
  font-size: 60px;
}

.enquiry-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.enquiry-form .button {
  display: inline-flex;
  width: fit-content;
  font-size: 17px;
}

.enquiry-form {
  margin-top: 30px;
}

.pdp-enquiry-section .section-head h4,
.contact-enquiry-section .section-head h4 {
  margin-bottom: 25px;
}

.philosophy-section {
  background-color: #701500;
  color: #fff;
}

.philosophy-section .container {
  align-items: center;
  gap: 30px;
}

.philosophy-section .section-head h4 {
  margin-bottom: 20px;
}

.philosophy-section .section-head h2 {
  margin-bottom: 30px;
  font-size: 45px;
}

.philosophy-section .content p {
  /*font-size: 15px;*/
  line-height: 1.7;
}

.philosophy-section .image-wrapper {
  padding-left: 20px;
}

.timeline-container {
  position: relative;
  display: flex;
  /* align-items: center; */
  gap: 30px;
  flex-wrap: wrap;
  margin-block: 30px;
}

.timeline-container .timeline-pagination {
  position: relative;
  width: 60px;
  inset: initial !important;
  transform: initial !important;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-container .swiper-timeline {
    position: relative;
  width: calc(100% - 90px);
  max-height: 80vh;
}

.timeline-container .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  /* align-items: center; */
}

.timeline-container .timeline-slide > div {
  display: flex;
  /* align-items: center; */
  width: 100%;
  justify-content: space-between;
}

.timeline-container .timeline-slide .image {
  width: 60%;
  display: flex;
  border-radius: 14px;
  overflow: hidden;
}

.timeline-container .timeline-slide .content {
  display: flex;
  justify-content: space-between;
  /* margin-top: 20px; */
  height: 100%;
}

.timeline-container .content h2 {
  font-size: 135px;
  font-weight: 600;
  color: rgba(0, 77, 81, 0.2);
  -webkit-text-stroke: 1px #701500;
  opacity: 0.4; /* faded look */
  display: flex;
  align-items: flex-end;
  line-height: 1;
  white-space: nowrap;
  padding-bottom: 40px;
}

.timeline-container .content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.timeline-container .content .inner-content p {
  font-size: 16px;
  margin-bottom: 15px;
}

.timeline-container .timeline-pagination .timeline-bullet {
  width: 60px;
  aspect-ratio: 1 / 1;
  height: auto;
  background: #fff;
  border: 2px solid #701500;
  font-size: 14px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  opacity: 1;
  margin: 0px !important;
  transition: 0.3s;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}

.timeline-container
  .timeline-pagination
  .timeline-bullet.active {
  background: #701500;
  color: #fff;
  border-color: #701500;
}

.timeline-container .timeline-pagination .timeline-bullet.completed {
  border-color: #701500;
  color: #701500;
}

.timeline-container .timeline-pagination-area .progress-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 2px;
  background-color: #701500;
  z-index: -1;
  top: 0;
}

.timeline-container .timeline-pagination-area {
  position: relative;
  width: 60px;
  height: fit-content;
}

.timeline-container
  .timeline-pagination-area
  .progress-line
  .progress-line-inner {
  height: 0%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: #701500;
  z-index: -1;
  top: 0;
  transition: height 1s ease;
}
.timeline-container .inner-content {
  width: calc(70% - 30px);
  /* display: inline-flex; */
  /* flex-direction: column; */
  /* align-self: center; */
}

.timeline-slide {
  opacity: 0;
  transform: translateY(40px);
  position: absolute;
  width: 100%;
  transition: 0.4s ease;
  pointer-events: none;
  height: 100%;
  display: flex;
}

.timeline-slide.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.timeline-slide.prev {
  opacity: 0;
  transform: translateY(-40px);
}

.timeline-container .content ul {
  font-size: 17px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-block: 15px;
}

.about-legacy-section {
  padding-bottom: 0;
}

.about-content-section .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.6;
}

.about-content-section .section-head h2 {
  font-size: 60px;
}

.blogs-grid {
  position: relative;
}

.blogs-grid .content h4 {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 400;
}

.blogs-grid .content p {
  color: #667085;
  font-size: 15px;
}

.blogs-grid .content {
  margin-top: 25px;
}

.blogs-grid .image {
  display: flex;
}

.blogs-grid .image img {
    width: 100%;
    transition: 0.5s;
}

.blogs-grid:hover .image img {
    transform: scale(1.05);
}

.insights-container {
  row-gap: 30px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 50px;
}

.pagination ul,
.pagination > div {
  display: flex;
  gap: 12px;
}

.pagination li,
.pagination .prev,
.pagination .next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(21, 33, 36, 0.1);
  cursor: pointer;
  transition: 0.3s;
}

.pagination li:hover,
.pagination li.active,
.pagination .prev:hover,
.pagination .next:hover {
  background-color: #701500;
  color: #fff;
  stroke: #fff;
}

.blogs-detail-banner-section {
  margin-top: 35px;
}

.blogs-detail-content-section {
  color: #1a1a1a;
  margin-top: 30px;
}

.blogs-title-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blogs-title-content .date {
  font-size: 14px;
}

.blogs-title-content h1 {
  font-size: 43px;
  font-family: var(--font-body);
}

.blogs-title-content h4 {
  font-size: 18px;
  font-family: var(--font-body);
}

.blogs-detail-content-section .section-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  line-height: 1.5;
}

.section-content p {
  color: #667085;
}

.section-content h3 {
  font-size: 24px;
  font-family: var(--font-body);
}

.share-icons ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  width: 42px;
  border: 1px solid rgba(21, 33, 36, 0.1);
  cursor: pointer;
  transition: 0.3s;
  aspect-ratio: 1 / 1;
}

.share-icons ul {
  display: flex;
  gap: 10px;
}

.share-icons {
  margin-top: 20px;
}

.share-blog-div {
  margin-top: 20px;
}

.share-blog-div .label {
  font-size: 24px;
}

.related-blogs-section .section-head h2 {
  font-size: 24px;
  font-family: var(--font-body);
  margin-bottom: 0;
}

.related-blogs-section .section-head {
  padding-bottom: 0;
}

.related-blogs-section {
  padding-top: 30px;
}

.contact-enquiry-section {
  background-color: initial;
  padding: 40px 0;
}

.contact-enquiry-section .contact-details-row {
  display: flex;
  flex-wrap: wrap;
}

.contact-enquiry-section .contact-details-row .enquiry-form {
  width: 72%;
  padding-right: 40px;
  margin-top: 0;
}

.contact-enquiry-section .contact-details-row .contact-details-area {
  width: 28%;
  padding-left: 35px;
  border-left: 1px solid #0000001a;
  display: flex;
  align-items: center;
}

.contact-details-area .contact-detail h3 {
  font-size: 16px;
  letter-spacing: 13%;
  font-family: var(--font-body);
}

.contact-details-area .contact-detail p {
  font-size: 23px;
  font-family: var(--font-heading);
}

.contact-details-area .contact-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-enquiry-section .contact-details-row .contact-details-area > div {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-details-area .contact-detail .contact-detail-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.city-distributors-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.city-container {
    width: 75%;
    height: fit-content;
    gap: 15px;
}

.distributors-container {
    width: calc(25% - 15px);
    position: sticky;
    top: var(--sticky-top);
    height: 100%;
}

.city-container .city-grid {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.distributors-container .distributor-grid {
    display: none;
    background-color: #701500;
    color: #fff;
    padding: 17px;
    border-radius: 5px;
}

.distributor-grid.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.city-container .city-grid .content {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 10px;
    transition: 0.3s;
    /* inset: 0; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30%;
    bottom: 0;
    font-weight: 600;
}

.city-container .city-grid .image {
    display: flex;
}

.city-container .city-grid .image img {
    aspect-ratio: 56 / 53;
    object-fit: cover;
    width: 100%;
}

.city-container .city-grid.active .content,
.city-container .city-grid:hover .content {
    height: 100%;
    background-color: #701500;
}

.distributor-section .section-head h2 {
    font-size: 35px;
}

.distributors-container .distributor-grid h2 {
    font-size: 18px;
    font-family: var(--font-body);
    margin-bottom: 10px;
}

.distributor-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.distributor-details .details-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.distributor-details .details-div .icon {
    width: 20px;
}

.distributor-details .details-div .detail {
    width: calc(100% - 35px);
}

.distributor-details .details-div .detail .label {
    opacity: 0.7;
    margin-bottom: 3px;
    font-size: 12px;
}

.distributors-container .distributor {
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.product-images-wrapper .thumbs-slider img {
    cursor: pointer;
}

.image-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-popup img {
  max-width: 90%;
  max-height: 90%;
}

.image-popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.product-images-wrapper .swiper-slide:has(video) video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-images-wrapper .swiper-slide:has(video) {
    position: relative;
    height: -webkit-fill-available;
}

.product-images-wrapper .swiper-slide:has(video) svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-images-wrapper .swiper-slide {
    display: flex;
    aspect-ratio: 3 / 4;
  cursor: pointer;
}

.product-images-wrapper .swiper-slide:has(video):before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #000;
    opacity: 0.3;
}


.thankyou-section {
    position: relative;
    background-color: #F1E8E5;
    color: #151515;
    height: calc(100vh - 90px);
    text-align: center;
    display: flex;
    align-items: center;
}

.tick-animation svg {
    width: 110px;
    height: 100%;
}

.thankyou-section h1 {
    font-size: 35px;
    text-transform: capitalize;
}

.close-distributor {
  display: none;
}

.image-popup .popup-video {
    max-height: 90vh;
    max-width: 90%;
}

.whatsapp-icon {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 99991;
    padding: 5px;
    background-color: #29a71a;
    border-radius: 50%;
    display: flex;
    aspect-ratio: 1 / 1;
}

.whatsapp-icon svg {
    width: 60px;
    height: auto;
}

@media screen and (max-width: 1024px) {
    .mobile-nav-toggle {
    display: inline-block;
    cursor: pointer;
  }

  footer .navigation-list {
    display: grid;
    /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
    gap: 20px 0;
  }

  .container {
    padding: 0 15px;
  }

  .footer-map-locator {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0 0;
  }

  .menu-button {
    display: grid;
    gap: 6px 0;
  }

  .menu-button .line {
    width: 25px;
    height: 2px;
    background: #000;
    transition: 0.3s;
  }

  .menu-button.active .line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 2px);
    /* transform-origin: left top; */
  }

  .menu-button.active .line:nth-child(2) {
    opacity: 0;
  }

  .menu-button.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    /* transform-origin: left bottom; */
  }

  .navigation .navigation-list {
    /*display: none;*/
    /*position: absolute;*/
    /*top: 100%;*/
    /*left: 0;*/
    /*z-index: 2;*/
    /*background-color: #fff;*/
    /*width: 100%;*/
    /*padding: 10px 15px 20px;*/
    /*box-shadow: 0px 15px 10px #00000017;*/
  }

  .navigation .navigation-list li.dropdown:after {
    position: absolute;
    right: 0;
    top: 5px;
    width: 13px;
    height: 13px;
  }

  header .navigation .navigation-list > li.dropdown {
    padding-right: 20px;
  }

  .dropdown .dropdown-menu {
    position: relative;
    opacity: 1;
    display: none;
    visibility: visible;
    box-shadow: none;
    width: 100%;
    text-align: left;
    padding-top: 15px;
    padding-bottom: 0;
  }

  .navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 45%;
    height: 100%;
    background: #fff;
    transition: 0.3s;
    display: flex;
    align-items: center;
    padding-inline: 20px;
    visibility: hidden;
    transition: 0.2s visibility left;
    box-shadow: 0 0 40px #00000017;
  }

  .navigation.active {
    left: 0;
    visibility: visible;
  }

  header .navigation .navigation-list {
    gap: 20px;
  }

  header .navigation .navigation-list li {
    width: 100%;
    border: none !important;
  }

  header .navigation .navigation-list > li > a {
    display: block;
    padding-block: 0;
    font-size: 24px;
  }

  header .navigation .navigation-list > li a.button {
    display: inline-block;
  }
  .home-banner .banner-content {
    width: 100%;
  }

  .banner-content h1 {
    font-size: 31px;
    line-height: initial !important;
  }

  .home-banner-section {
  }
  .home-banner,
  .home-banner .banner-image {
    height: 100%;
  }

  .col-2 {
    width: 100%;
  }

  .section-head h2 {
    font-size: 27px;
    letter-spacing: 0;
  }

  .section-head h4 {
    font-size: 14px;
  }

  .section-head p {
    font-size: 16px;
  }

  .section-head.text-center {
    max-width: 100%;
  }

  .hamburg-icon {
    display: inline-block;
    position: relative;
    z-index: 1;
  }

  .navbar .row {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 10px;
    padding-block: 5px;
  }

  header .logo {
    justify-content: center;
  }

  .header-social-icons {
    margin-left: 0;
    padding-left: 0;
    border: none;
  }

  .navigation-area {
    justify-content: flex-end;
  }

  .navbar {
    padding-block: 10px;
  }

  .main-banner .container,
  .home-banner .container {
    margin: 0;
    bottom: 0;
  }
  
  header .search-bar {
      grid-column: 1 / -1;
      order: 99;
  }
  
  header .search-bar input {
      width: 100%;
  }

  header .search-bar input {
      width: 100%;
  }
  
  .header-contact .button {
      padding-inline: 10px;
      font-size: 14px;
      gap: 7px;
  }
  
  .header-contact .button .icon {
      width: 20px;
  }

  .marquee {
      max-height: 55vh;
      height: auto;
  }
  
  .collection-slider-area {
      margin-left: 15px;
  }
  
  .video-content-section .content {
      left: 15px;
      max-width: 55%;
  }
  
  .video-content-section .video {
      height: 50vh;
  }
  
  .video-content-section video {
      height: 100%;
      width: 100%;
      object-fit: cover;
  }

  footer {
      padding-top: 40px;
  }
  
  footer > .container > .footer-logo {
      padding-bottom: 20px;
  }
  
  footer .footer-row {
      gap: 20px;
  }
  
  .collection-listing-container.grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline-container .swiper-timeline {
      max-height: 50vh;
  }
  
  .timeline-container .timeline-slide .content {
      flex-direction: column;
      justify-content: flex-start;
  }
  
  .timeline-container .inner-content {
      width: 100%;
  }

  .contact-enquiry-section .contact-details-row {
      flex-direction: column;
  }
  
  .contact-enquiry-section .contact-details-row .enquiry-form {
      width: 100%;
  }
  
  .contact-enquiry-section .contact-details-row .contact-details-area {
      width: 100%;
      border: none;
      padding-left: 0;
  }
  
  .contact-enquiry-section .contact-details-row .contact-details-area > div {
      flex-direction: initial;
      flex-wrap: wrap;
      text-align: center;
  }
  
  .contact-enquiry-section .contact-details-row .contact-details-area .contact-detail {
      width: calc((100% / 3) - 28px);
      justify-content: center;
  }
  
  .contact-details-area .contact-detail .contact-detail-icons {
      justify-content: center;
  }
  
  .city-container.grid-5 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      width: 65%;
  }
  
  .distributors-container {
      width: calc(35% - 10px);
      position: sticky;
      top: 140px;
      height: 100%;
  }

  .distributors-container .distributor-grid.active {
       padding: 10px; 
      /*bottom: 0%;*/
  }
  
  .distributor-details .details-div .detail {
      /* width: calc(100% - 25px); */
      /* font-size: 13px; */
  }
  
  .distributor-details .details-div .icon {
      /* width: 15px; */
  }
  
  .distributor-details .details-div .icon svg {
      width: 100%;
  }
  
  .distributors-container .distributor-grid h2 {
      font-size: 16px;
  }
  
  .featured-logos {
    gap: 30px;
    max-width: 100%;
  }
  
  .product-content-wrapper {
      width: 55%;
      padding-left: 25px;
  }
  
  .product-images-wrapper {
      width: 45%;
  }
  
  .product-content-wrapper .product-title {
      font-size: 30px;
  }
  
  .product-content-wrapper .description {
      font-size: 15px;
  }

  .blogs-grid .content {
      margin-top: 10px;
  }
  
  .blogs-grid .content h4 {
      font-size: 20px;
  }
  
  .whatsapp-icon {
      background: none;
  }
}

@media only screen and (max-width: 570px) {
  .product-content-wrapper {
      width: 100%;
      padding-left: 0;
      padding-top: 20px;
  }
  
  .product-images-wrapper {
      width: 100%;
      position: relative;
      top: initial;
  }

  .navbar .row {
      gap: 10px;
  }
  
  .header-contact .button {
      font-size: 13px;
      padding: 8px;
  }
  
  .header-contact .button .icon {
      width: 16px;
  }
  
  .enquiry-form .grid-4 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .video-content-section .content {
      max-width: 100%;
  }
  
  footer .footer-row .footer-logo {
      width: 100%;
  }
  
  .footer-navigation-wrapper {
      width: 100%;
  }
  
  .footer-navigation-wrapper .footer-col-navigation {
      width: calc(50% - 5px);
      padding-block: 15px;
  }
  
  .footer-navigation-wrapper .footer-col-navigation.contact-form {
      width: 100%;
  }
  
  .footer-copyright .container {
      justify-content: center;
      text-align: center;
      gap: 10px;
      font-size: 13px;
  }
  
  .footer-copyright {
      padding-block: 10px 15px;
  }
  
  .pdp-enquiry-section .section-head h2,
  .contact-enquiry-section .section-head h2 {
      font-size: 45px;
  }

  header .navigation {
      width: 100%;
  }
  
  .home-banner-section .grid-2 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .banner-content {
      padding: 40px;
  }
  
  .spotlight-sliders-container {
      width: 100%;
      gap: 10px;
  }
  
  .spotlight-content {
      width: 100%;
      padding: 50px 0;
      text-align: center;
  }
  
  .marquee {
      max-height: 40vh;
  }
  
  .featured-logos.grid-5 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .inner-banner-section.only-heading h1 {
      font-size: 37px;
  }
  
  .collection-listing-container.grid-4 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
  }
  
  .collection-card .content h3 {
      font-size: 16px;
  }

  .about-content-section .section-head h2 {
      font-size: 47px;
  }
  
  .philosophy-section .container.grid-2 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .philosophy-section .image-wrapper {
      padding-left: 0;
  }
  
  .timeline-container .content h2 {
      padding-bottom: 0;
  }
  
  .timeline-container .swiper-timeline {
      max-height: 100vh;
  }

  .contact-enquiry-section .contact-details-row .contact-details-area > div {
      gap: 20px;
  }
  
  .contact-enquiry-section .contact-details-row .contact-details-area .contact-detail {
      width: calc((100% / 1) - 28px);
      justify-content: center;
      text-align: left;
  }
  
  .contact-details-area .contact-detail .contact-detail-icons {
      justify-content: flex-start;
  }
  
  .contact-enquiry-section {
      padding-bottom: 0px;
  }
  
  .city-container.grid-5 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      width: 100%;
      position: static;
  }
  
  .city-container .city-grid .content {
      height: 20%;
      font-size: 18px;
  }
  
  .contact-enquiry-section .contact-details-row .enquiry-form {
      padding-top: 15px;
      padding-right: 0;
  }

  .insights-container.grid-3 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .blogs-title-content h1 {
      font-size: 33px;
  }
  
  .distributors-container .distributor-grid {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 50%;
    z-index: 9999;
    transition: 0.5s;
    overflow-y: auto;
    border-radius: 15px 15px 0 0;
    display: flex;
    max-height: 80%;
  }

  .distributor-grid.active.mobile-open {
    bottom: 0;
    padding: 17px;
  }

  .close-distributor {
    font-size: 35px;
    line-height: 0.5;
    position: sticky;
    z-index: 1;
    cursor: pointer;
    display: inline-block;
    margin-left: auto;
  }

  .distributors-container {
    width: 100%;
  }
}