: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: "Rethink Sans", sans-serif;
  --font-heading: "DM Serif Display", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: #000000;
}

.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: 80px;
  /* line-height: 1.5; */
}

p {
  line-height: 1.55;
}

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-6 {
  display: grid;
  grid-template-columns: repeat(6, 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: 4rem 0;
}

.narrow-container {
  padding-inline: 6rem;
}

.section-padding-bottom {
  padding-bottom: 3.8rem;
}

.button-container {
  margin-top: 5px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.button {
  background-color: #c9ae6d;
  color: #121212;
  padding: 15px;
  border-radius: 30px;
  display: inline-block;
  align-items: center;
  gap: 13px;
  transition: 0.3s;
  cursor: pointer;
  font-family: var(--font-body);
  outline: none;
  border: none;
  font-weight: 500;
}

.button:hover {
  background-color: #fff;
  color: #121212;
}

.button.white {
  background-color: #fff;
  color: #121212;
  padding-block: 10px;
}

.button.white:hover {
  background-color: #c9ae6d;
  color: #121212;
}

.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 {
  z-index: 99;
  position: fixed;
  top: 0;
  box-shadow: 0 0 20px 2px #00000000;
  width: 100%;
  color: #fff;
  transition: 0.3s;
}

header.sticky-header {
  background: rgb(0 0 0 / 40%); /* Semi-transparent white */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  box-shadow: 0 0 20px 2px #0000001f;
}

header .container {
  max-width: 1380px;
}

.navigation .navigation-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

header .logo img {
  /* width: 100%; */
}

.navigation .navigation-list .nav-btn {
  font-weight: 400;
}
.header-contact-info {
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
}

.header-contact-info a {
  display: flex;
  gap: 10px;
}
.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: flex;
  gap: 10px;
  align-items: center;
  padding: 20px 0;
  justify-content: space-between;
}

.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' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M0.75 0.75L5.75 5.75L10.75 0.75' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  height: 8px;
  width: 12px;
  display: inline-block;
  margin-left: 7px;
  background-repeat: no-repeat;
}

.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 {
  display: flex;
  justify-content: center;
  align-items: 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-pagination-bullet {
  opacity: 0.3;
  background: #0f3d2e;
  width: 9px;
  height: 9px;
  border-radius: 20px;
  transition: 0.3s;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.section-head h2 {
  font-size: 50px;
  margin-bottom: 15px;
  text-transform: capitalize;
}

.section-head p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.section-content {
  padding-top: 15px;
}

.section-content h3 {
  font-size: 28px;
}

.section-head {
  padding-bottom: 20px;
}

footer {
  background-color: #0f3d2e;
  padding: 80px 0px 0;
  color: #fff;
}

.footer-navigation-wrapper {
  width: calc(40% - 40px);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .footer-row {
  gap: 45px;
  margin-bottom: 70px;
}

footer .footer-row .footer-logo img {
  border-radius: 8px;
}

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: 25px;
  flex-direction: column;
  width: calc(60% - 5px);
}

.footer-col-navigation h3 {
  margin-bottom: 15px;
  font-size: 20px;
  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: #0c3125;
  padding: 20px 0;
  color: #fff;
  font-size: 14px;
}

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;
  display: flex;
  align-items: center;
  /* padding-top: 5rem; */
}

.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;
  background: transparent;
  flex-direction: column;
  align-items: flex-start;
  padding-inline: 0;
}

.inner-banner .banner-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  opacity: 0.3;
}

.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: 13px 20px;
  font-size: 15px;
  border: none;
  font-family: inherit;
  background: #fff;
  border-radius: 15px;
  width: 100%;
}

.form-group label {
  font-size: 16px;
  font-weight: 600;
  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: calc((100% / 3) - 10px); */
}

.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;
  margin-top: 30px;
}

.slider-arrows .swiper-button-disabled {
  opacity: 0.5;
  cursor: initial;
  background-color: #fff;
}

.slider-arrows > div {
  cursor: pointer;
  display: flex;
  padding: 6px;
  border-radius: 50%;
  border: 1px solid rgb(0 0 0 / 10%);
  background-color: #c9ae6d;
}

.slider-arrows > div svg path {
  /* stroke: #fff; */
}

.split-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.split-head .head {
  max-width: 80%;
}

.split-head .slider-arrows {
  margin-top: 20px;
  gap: 10px;
}

.split-head p {
  color: #000;
}

.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: 15px;
  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;
}

.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: 75%;
  display: flex;
  align-items: center;
}

.video-content-section {
  position: relative;
}

.main-home-banner .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.7;
}

.video-content-section .image img {
  max-height: 76px;
}

.featured-logo-section {
  background-color: #f7f9f8;
  padding-block: 50px;
}
.featured-logos {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.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 {
  font-weight: 500;
}

.newsletter-form input {
  background-color: #e9efec;
  padding-right: 40px;
}

.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;
}

.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: #fff;
  background: none;
  padding-top: 0;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 0;
  padding-inline: 0;
}

.inner-banner-section.only-heading h1 {
  /* font-size: 50px; */
}

.enquiry-form .form-group label {
  margin-bottom: -20px;
  padding-inline: 7px;
}

.enquiry-form .form-control {
  padding: 25px 7px 10px;
  outline: none;
  border-radius: 0;
}

.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;
}

.blogs-grid {
  position: relative;
  padding: 12px 12px 19px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  color: #fff;
  transition: 0.3s;
}

.blogs-grid .content h4 {
  color: #000;
}

.blogs-grid .content p {
  color: #5c5c5c;
  font-size: 14px;
  font-weight: 600;
  margin-block: 10px;
  transition: 0.3s;
}

.blogs-grid .content {
  margin-top: 15px;
}

.blogs-grid .image {
  display: flex;
  border-radius: 15px;
  overflow: hidden;
}

.insights-container {
  row-gap: 30px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.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-weight: 500;
  color: #5c5c5c;
}

.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: 10px;
  line-height: 1.5;
}

.section-content p {
  color: #5c5c5c;
  font-weight: 500;
}

.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: 30px;
}

.share-blog-div .label {
  font-size: 24px;
  font-weight: 700;
}

.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;
}

.main-home-banner .section-head .button {
  margin-top: 20px;
}

.about-skin-roots-section {
  background-size: cover;
}

.about-skin-roots-section .section-head {
  width: 40%;
}

.about-skin-roots-slider-area {
  width: 50%;
  position: relative;
  padding-bottom: 40px;
}

.about-skin-roots-section .row {
  justify-content: space-between;
  align-items: center;
}

.about-skin-roots-slider-area img {
  border-radius: 15px;
}

.about-skin-roots-slider-area .image {
  display: flex;
}

.about-skin-roots-section .section-head .button {
  margin-top: 20px;
}

.about-skin-roots-section .section-head h2 {
  font-size: 60px;
  margin-bottom: 15px;
}

.featured-logo-section .section-head h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.why-choose-section {
  background-color: #0f3d2e;
  color: #fff;
  text-align: center;
}

.cost-hair-transplant-grid .icon,
.why-choose-grid .icon {
  width: 80px;
  height: 80px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff1a;
  border-radius: 50%;
  margin-bottom: 15px;
}

.why-choose-grid .content h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.why-choose-grid {
  padding-top: 15px;
}

.why-choose-grid .content p {
  color: #ffffffcc;
}

.skinroots-glance-section {
  background-color: #f7f9f8;
}

.skinroots-glance-grid {
  background-color: #fff;
  text-align: center;
  padding: 15px;
  transition: 0.3s;
}

.skinroots-glance-grid .icon {
  margin-bottom: 20px;
  margin-top: 10px;
}

.skinroots-glance-grid .content {
  font-weight: 600;
  font-size: 14px;
}

.skinroots-glance-grid .content .subheading {
  font-size: 16px;
  margin-bottom: 10px;
}

.skinroots-glance-grid:hover {
  background-color: #0f3d2e;
  color: #fff;
}

.skinroots-glance-stats-container {
  margin-top: 30px;
  text-align: center;
}

.skinroots-glance-stats .icon {
  width: 80px;
  height: 80px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.skinroots-glance-stats .content {
  font-weight: 500;
}

.skinroots-glance-stats .content h3 {
  margin-bottom: 7px;
  font-size: 31px;
}

.skinroots-glance-grids-container {
  margin-block: 30px;
}

.home-founder-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 30px 30px;
  gap: 25px;
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  color: #fff;
  width: 52%;
}

.home-founder-section {
  background-size: cover;
}

.founder-header {
  width: 100%;
  padding-bottom: 25px;
  border-bottom: 2px solid rgb(255 255 255 / 20%);
}

.founder-header h3 {
  font-size: 32px;
}

.founder-header h2 {
  font-size: 42px;
}

.expert-care-slider-area {
  width: 100%;
  padding-inline: 60px;
  position: relative;
  margin-top: 30px;
}

.expert-care-slider-area .image {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.expert-care-slider-area .content h3 {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 600;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
  padding-block: 10px;
}

.trusted-celebrities-section {
  background-color: #f7f9f8;
}

.trusted-celebrities-slider-area {
  margin-top: 30px;
}

.celebrity-card {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
}

.celebrity-card .image {
  width: calc(40% + 20px);
  display: flex;
}

.celebrity-card .content {
  width: calc(60% - 35px);
  display: flex;
  flex-direction: column;
}

.celebrity-card .name h3 {
  font-family: var(--font-body);
  color: #212121;
  font-weight: 700;
  font-size: 23px;
}

.celebrity-card .name p {
  color: #0f3d2e;
  font-weight: 600;
}

.celebrity-card .text {
  font-size: 12px;
  color: #808080;
  font-weight: 500;
  margin-top: 5px;
}

.celebrity-card .details {
  list-style: none;
  font-weight: 600;
  font-size: 14px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 8px;
}

.celebrity-card .details li {
  border-bottom: 1px solid rgb(0 0 0 / 15%);
  padding-bottom: 3px;
}

.transformation-slider-area {
  margin-top: 30px;
}

.follow-us-section {
  background-color: #f7f9f8;
}

.follow-us-grid {
  border-radius: 15px;
  overflow: hidden;
}

.follow-us-grid .video {
  display: flex;
}

.faq-item {
  background-color: #f3f5f4;
  border-radius: 15px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  align-items: center;
  color: #212121;
  transition: 0.3s;
  transition-delay: 0.2s;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  max-width: calc(100% - 30px);
}

.faq-answer {
  padding-inline: 18px;
  padding-block: 0;
  font-weight: 500;
  color: #212121;
  max-height: 0;
  transition: 0.3s;
}

.faq-item ul {
  padding-left: 20px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.faq-question svg {
  width: 16px;
  transition: 0.3s;
}

.faq-item.active .faq-question {
  background-color: #0f3d2e;
  color: #fff;
  transition-delay: 0s;
}

.faq-item.active .faq-question path {
  fill: #fff;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  padding-block: 18px;
  max-height: 100vh;
}

.life-changing-section {
  position: relative;
}

.life-changing-section .image {
  display: flex;
}

.life-changing-section .content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  backface-visibility: hidden;
}

.life-changing-section .content h2 {
  margin-bottom: 7px;
  font-size: 55px;
}

.life-changing-section .content p {
  font-size: 21px;
  font-weight: 400;
}

.appointment-section {
  background-color: #f7f9f8;
  color: #212121;
}

.contact-form {
  background-color: #e2e9e6;
  padding: 30px;
  border-radius: 15px;
}

.contact-form .row {
  gap: 15px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form .button {
  font-size: 17px;
  padding: 13px 30px 14px;
  background-color: #0f3d2e;
  color: #fff;
}

.appointment-section .row {
  justify-content: space-between;
}

.appointment-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 10px;
}

.appointment-section .contact-form {
  width: 45%;
}

.appointment-section .content {
  width: calc(55% - 30px);
}

.appointment-details .label {
  position: relative;
  font-weight: 600;
}

.appointment-details .label::after {
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  margin-top: 10px;
}

.appointment-details a {
  font-weight: 600;
  display: inline-block;
}

.appointment-details .details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.assistance-hours {
  font-size: 14px;
}

.social-icons-contact {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.footer-logo-image {
  display: flex;
  gap: 90px;
  align-items: center;
}

.real-rating-section {
  background-color: #fef3e6;
}

.real-rating-grids-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.real-rating-sliders-container {
  width: calc(60% - 30px);
}

.rating-card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 15px;
}

.star-rating-inner {
  display: flex;
  margin-bottom: 15px;
}

.rating-text p {
  color: #808080;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
}

.rating-text .client-name {
  color: #212121;
  font-size: 18px;
  font-weight: 600;
  margin-top: 15px;
}

.real-rating-content {
  width: 40%;
}

.star-rating-outer {
  margin-top: 25px;
}

.rating-card:hover {
  background-color: #0f3d2e;
  color: #fff;
  transition: 0.3s;
}

.rating-card:hover p {
  color: #fff !important;
}

.skin-hair-animation-section {
  position: relative;
  background-color: #0f3d2e;
}

.animation-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  width: 100%;
}

.animation-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.animation-row {
  display: flex;
  gap: 20px;
}

.animation-image h3 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  font-size: 30px;
  color: #fff;
  z-index: 1;
  transition: 0.3s;
}

.animation-col {
  width: calc(50% - 10px);
  position: relative;
  transition: 0.5s;
  overflow: hidden;
  border-radius: 18px;
}

.animation-col.active {
  width: 75%;
}

.animation-col.not-active {
  width: 25%;
}

.animation-content {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  color: #fff;
  z-index: 1;
  padding: 30px;
  gap: 30px;
  transform: translateX(100px);
  transition: 0.1s;
  opacity: 0;
}

.animation-image img {
  height: 90vh;
  width: 100%;
  object-fit: cover;
}

.animation-col.active .animation-image h3 {
  opacity: 0;
  visibility: hidden;
}

.animation-content .heading {
  display: flex;
  justify-content: space-between;
  font-size: 30px;
}

.animation-content .heading .button {
  font-size: 16px;
  background-color: #212121;
  color: #fff;
}

.hover-usp-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 14px;
  text-align: center;
  font-size: 17px;
}

.animation-col.active .animation-content {
  transform: translateX(0px);
  opacity: 1;
  transition: 0.3s;
  transition-delay: 0.3s;
}

.animation-col:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.3s;
  opacity: 0;
}

.animation-col:hover:after {
  opacity: 1;
}

.blogs-listing-section .blogs-grid .button {
  padding: 0;
  font-size: 16px;
}

.blogs-grid .date {
  color: #5c5c5c;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  transition: 0.3s;
}

.blogs-grid:hover .date {
  color: #fff;
}

.blogs-listing-section .blogs-grid:hover {
  background-color: #0f3d2e;
}

.blogs-listing-section .blogs-grid .button path {
  transition: 0.3s;
  stroke: #c9ae6d;
}

.blogs-listing-section .blogs-grid .text {
  padding-inline: 7px;
}

.blogs-listing-section .blogs-grid:hover p {
  color: #5c5c5c;
}

.pagination {
}

.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;
  border-radius: 10px;
  color: #040b0b;
  font-weight: 500;
  font-size: 14px;
}

.pagination li:hover,
.pagination li.active,
.pagination .prev:hover,
.pagination .next:hover {
  background-color: #0f3d2e;
  color: #fff;
  stroke: #fff;
}

.pagination li a {
  display: flex;
}

.button.unstyled {
  padding: 0;
  color: #c9ae6d;
  background: transparent !important;
  display: flex;
  gap: 7px;
}

.inner-banner-section.only-heading {
  background: #0f3d2e;
}

.inner-banner-section.only-heading .inner-banner {
  height: auto;
}

.blogs-grid .content h4 {
  font-size: 18px;
  font-family: var(--font-body);
  transition: 0.3s;
  font-weight: 600;
}

.blogs-grid:hover .content h4,
.blogs-grid:hover .content p,
.blogs-grid:hover .content .date {
  color: #fff;
}

.blogs-detail-banner-section .image {
  display: flex;
  margin-bottom: 15px;
}

.blogs-detail-content-section h3 {
  font-weight: 700;
}

.share-blog-div .share-icons ul li {
  border: none;
  width: auto;
  padding: 0;
}

.blogs-detail-banner-section h1 {
  font-size: 48px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

header.not-sticky {
  position: sticky;
  background: #0f3d2e;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 20px 2px #0000001f;
}

.blogs-detail-related-section .section-head h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 12px;
}

.blogs-detail-related-section {
  padding-top: 2rem;
}

.contact-page-details {
  background-color: #0f3d2e;
  color: #fff;
  padding: 30px;
  border-radius: 15px;
  width: calc(55% - 10px);
}

.contact-page-details h3 {
  font-family: var(--font-body);
  font-size: 24px;
}

.contact-details-grids .details-grid {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-details-grids .details-grid .icon {
  display: flex;
}

.contact-details-grids .details-grid .icon svg {
  width: 25px;
}

.contact-details-grids {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-block: 15px 25px;
}

.contact-map iframe {
  width: 100%;
}

.contact-map {
  display: flex;
}

.contact-page-section .container > .row {
  justify-content: space-between;
  gap: 20px;
}

.contact-page-form {
  width: calc(45% - 10px);
}

.distribution-grid {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.distribution-grid .image-text {
  position: relative;
}

.distribution-grid .image {
  display: flex;
}

.distribution-grid .city {
  position: absolute;
  bottom: 0;
  padding: 16px 20px 18px;
  width: 100%;
  background-color: #e7f3ed;
  font-weight: 600;
  font-size: 18px;
}

.distribution-grid .hover-content {
  background-color: #0f3d2e;
  position: absolute;
  inset: 0;
  padding: 30px;
  opacity: 0;
  color: #fff;
  transition: 0.3s;
}

.distribution-grid:hover .hover-content {
  opacity: 1;
}

.city-address {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.city-address .address-detail {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 15px;
}

.distribution-grid .hover-content h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-body);
}

.contact-distribution-section .section-head h2 {
  /* color: var(--color-light); */
  margin-bottom: 15px;
}

.contact-distribution-container {
  margin-top: 10px;
}

.city-address .address-detail strong {
  font-size: 14px;
  opacity: 0.4;
  font-weight: 500;
}

.testimonials-page-section {
  background-color: #fafafa;
}

.video-gallery-grid iframe {
  width: 100%;
  height: 240px;
  border-radius: 15px;
}

.video-gallery-grid .title {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 10px;
}

.video-gallery-grid .title h3 {
  font-family: var(--font-body);
  font-size: 16px;
}

.video-gallery-grid .title p {
  font-size: 12px;
  text-decoration: underline;
  font-weight: 500;
}

.video-gallery-grid .iframe-wrapper {
  display: flex;
}

.video-gallery-grid .content > p {
  font-size: 14px;
  margin-top: 7px;
  line-height: normal;
}

.video-gallery-container {
  row-gap: 40px;
}

.only-content-section .section-head p {
  margin-bottom: 15px;
}

.love-yourself-section {
  background-color: #0f3d2e;
  color: #fff;
}

.love-yourself-section .content-area {
  width: calc(67% - 20px);
}

.love-yourself-section .image-area {
  width: calc(33% - 10px);
  border-radius: 18px;
  overflow: hidden;
}

.love-yourself-section .row {
  justify-content: space-between;
}

.stats-container {
  padding: 20px 30px;
  background-color: rgb(255 255 255 / 7%);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.stat h3 {
  font-size: 28px;
  margin-bottom: 5px;
}

.love-yourself-section .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.love-yourself-section .image-area .image {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.stat p {
  font-size: 15px;
}

.bg-white {
  background-color: #fff;
}

.awards-slider .swiper-slide {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
}

.awards-slider {
  overflow: visible;
}

.awards-section {
  overflow-x: hidden;
  background-color: #f7f9f8;
}

.awards-slider-container {
  margin-top: 40px;
}

.awards-section .section-head p {
  font-size: 15px;
}

.awards-section .slider-arrows > div {
  background-color: #0f3d2e;
}

.awards-section .slider-arrows .swiper-button-disabled {
  background-color: #fff;
  opacity: 1;
}

.awards-section .slider-arrows > div svg {
  width: 30px;
  height: 30px;
}

.awards-section .slider-arrows .swiper-button-disabled path {
  stroke: #000;
}

.awards-section .slider-arrows > div svg path {
  stroke: #fff;
}

.awards-slider .image {
  max-width: 180px;
}

.causes-wrinkles-section {
  background-color: #0f3d2e;
  color: #fff;
}

.causes-wrinkles-section .content-area {
  width: 40%;
}

.images-marquee-container {
  width: calc(60% - 50px);
}

.causes-wrinkles-section .row {
  align-items: center;
  gap: 50px;
}

.images-marquee-container img {
  border-radius: 15px;
}

.causes-wrinkles-section .section-head p {
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
}

.treatment-wrinkles-grid {
  text-align: center;
  font-weight: 500;
  gap: 15px;
  display: flex;
  flex-direction: column;
  padding: 15px 15px 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  transition: 0.3s;
  background-color: #fff;
}

.treatment-wrinkles-grid .image {
  display: flex;
}

.treatment-wrinkles-grid .content {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-inline: 10px;
}

.treatment-wrinkles-grid .content .title {
  font-size: 18px;
}

.treatment-wrinkles-grid .content p {
  font-size: 14px;
}

.treatment-wrinkles-grid .image img {
  width: 100%;
  border-radius: 15px;
}

.treatment-wrinkles-slider-area {
  margin-top: 30px;
}

.treatment-wrinkles-grid:hover {
  background-color: #0f3d2e;
  color: #fff;
}

.treatment-wrinkles-slider {
  overflow: visible;
}

.treatment-wrinkles-section {
  overflow: hidden;
  background-color: #f7f9f8;
}

.generic-about-section .content-area {
  width: 65%;
}

.generic-about-section .image-area {
  width: calc(35% - 50px);
}

.generic-about-section .row {
  justify-content: space-between;
}

.generic-about-section .section-head p {
  font-size: 16px;
  line-height: 1.8;
}

.generic-about-section .section-head h2 {
  margin-bottom: 25px;
}

.generic-about-section .section-head .button {
  background-color: #212121;
  color: #fff;
  margin-top: 30px;
  padding: 14px 25px 16px;
}

.early-hair-loss-section {
  background-color: #f7f9f8;
}

.early-hair-loss-container {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.early-hair-loss-grid {
  background-color: #fff;
  padding: 35px;
  text-align: center;
  font-weight: 500;
  font-size: 17px;
  border-radius: 15px;
  transition: 0.3s;
}

.early-hair-loss-grid .heading {
  font-size: 23px;
  margin-bottom: 10px;
  line-height: initial;
}

.early-hair-loss-grid:hover {
  background-color: #0f3d2e;
  color: #fff;
}

.ideal-candidate-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 10px;
  border-top: 1px solid rgb(15 61 46 / 10%);
  padding-top: 30px;
}

.ideal-candidate-container .image {
  width: calc(50% - 20px);
  display: flex;
  border-radius: 15px;
  overflow: hidden;
}

.ideal-candidate-container .content {
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ideal-pointer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #0f3d2e;
}

.ideal-pointer .number {
  width: 43px;
  height: 43px;
  background-color: #0f3d2e;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
}

.ideal-pointer .text {
  width: calc(100% - 70px);
}

.ideal-pointer .text .heading {
  font-size: 20px;
  font-weight: 500;
}

.idea-candidate-section {
  background-color: #f7f9f8;
}

.benefits-hair-transplant-section {
  text-align: left;
}

.benefits-hair-transplant-section .why-choose-grids-container {
  gap: 0;
  text-align: center;
  margin-top: 30px;
  padding-block: 45px;
  margin-bottom: 15px;
  border-block: 1px solid rgb(255 255 255 / 10%);
}

.benefits-hair-transplant-section .why-choose-grid {
  padding-inline: 20px;
  padding-top: 0;
  border-right: 1px solid rgb(255 255 255 / 10%);
}

.benefits-hair-transplant-section .why-choose-grid .content h3 {
  font-family: var(--font-body);
  font-size: 21px;
}

.benefits-hair-transplant-section .why-choose-grid .content p {
  color: #fff;
  font-size: 15px;
}

.benefits-hair-transplant-section .why-choose-grid:last-child {
  border: none;
}

.cost-hair-transplant-section {
  background-color: #0f3d2e;
  color: #fff;
}

.cost-hair-transplant-section .section-head h2 {
  padding-right: 50px;
}

.cost-hair-transplant-grid .icon {
  margin-left: 0;
}

.cost-hair-transplant-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  padding-block: 30px;
}

.cost-hair-transplant-grid {
  width: 50%;
  padding-inline: 30px;
  border-right: 1px solid rgb(255 255 255 / 10%);
}

.cost-hair-transplant-row .cost-hair-transplant-grid:last-child {
  border: none;
}

.cost-hair-transplant-section .heading-area {
  width: calc(40% - 10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cost-hair-transplant-section .content-area {
  width: calc(60% - 10px);
}

.cost-hair-transplant-section .row {
  justify-content: space-between;
}

.cost-hair-transplant-grid .text .heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cost-hair-transplant-grid .text {
  font-size: 15px;
}

.cost-hair-transplant-section
  .content-area
  .cost-hair-transplant-row:first-child {
  padding-top: 0;
}

.cost-hair-transplant-section
  .content-area
  .cost-hair-transplant-row:last-child {
  border: none;
  padding-bottom: 0;
}

.pre-procedure-section {
  background-color: #f7f9f8;
}

.pre-procudure-grid {
  background-color: #fff;
  padding: 35px 20px;
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: 0.3s;
}

.pre-procudure-grid .heading {
  width: 40%;
  font-size: 20px;
  line-height: normal;
  font-weight: 600;
}

.pre-procudure-grid p:not(.heading) {
  width: calc(60% - 20px);
}

.pre-procudure-grid:hover {
  background-color: #0f3d2e;
  color: #fff;
}

.post-surgery-section {
  background-color: #0f3d2e;
  color: #fff;
}

.post-surgery-section .ideal-pointer {
  color: #fff;
}

.post-surgery-section .ideal-pointer .number {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff1a;
  border-radius: 50%;
}

.post-surgery-section .ideal-candidate-container .pointers-area {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.post-surgery-section .image {
  width: calc(45% - 20px);
}

.post-surgery-section .ideal-candidate-container .content {
  width: calc(55% - 20px);
}

.post-surgery-section .image img {
  object-fit: cover;
}

.how-it-works-section .heading-area {
  width: calc(50% - 50px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.how-it-works-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.how-it-works-section .content-area {
  width: 50%;
}

.how-works-stats-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: space-between;
  color: #0f3d2e;
}

.how-works-stats {
  font-weight: 600;
  padding-inline: 30px;
}

.how-works-stats .head {
  font-size: 85px;
  font-weight: 700;
}

.how-works-stats-container:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 3px;
  background-color: #0f3d2e;
  left: 50%;
}

.how-it-works-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-block: 20px;
  border-bottom: 1px solid rgb(15 61 46 / 10%);
  color: #000;
}

.how-it-works-grid .heading {
  width: 35%;
  font-size: 20px;
  line-height: normal;
  font-weight: 600;
}

.how-it-works-grid p:not(.heading) {
  width: calc(65% - 20px);
  font-weight: 500;
}

.how-it-works-section .content-area .how-it-works-grid:last-child {
  border: none;
}

.how-it-works-section .section-head p {
  font-size: 16px;
}
