: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;
  /*--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: 40px;
  /* 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: 16px;
  /* font-weight: 700; */
}

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: 20px 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.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;
}

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

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

input::placeholder {
  font-family: inherit;
}

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: #e1e0d4;
}

.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: 18px;
  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: #5c5c5c;
}

.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 .content {
  text-align: center;
  padding-block: 15px;
}

.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 20s linear infinite;
  will-change: transform;
}

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

/* 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::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: 40px;
}

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

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

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

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

.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;
}

.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%;
}

.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: 17px;
  line-height: 1.8;
  padding-top: 25px;
}

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

.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;
}

.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-top: 30px;
}

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

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

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

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

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

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

.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;
}

.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 .swiper-pagination .swiper-pagination-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;
}

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

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

.timeline-container .swiper-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 .swiper-pagination-area {
  position: relative;
  width: 60px;
  height: fit-content;
}

.timeline-container
  .swiper-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);
}

.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;
}

.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;
}
