:root {
  --max-width: 1200px;
  --gap: 1rem;
  --color-light: #c8bfb0;
  --color-dark: #201501;
  /* --color-black: #012217; */
  --font-body: "Gilroy";
  /* --font-body-semibold: "Gilroy-SemiBold";
  --font-body-bold: "Gilroy-Bold"; */
  --font-heading: "Montserrat", sans-serif;
  --gradient: linear-gradient(95.67deg, #fcab72 1.98%, #934b40 154.7%);
  --body-bg: #201501;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  color: var(--color-light);
  background-color: var(--body-bg);
  line-height: 1.4;
  overflow-x: hidden;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
}

h1 {
  font-size: 28px;
  line-height: 1.3;
}

p {
  line-height: 1.4;
}

img {
  max-width: 100%;
}

.text-center {
  text-align: center;
}

.container {
  max-width: 1150px;
  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-0\! {
  padding-bottom: 0 !important;
}

.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;
}

.row-reverse .row {
  flex-direction: row-reverse;
}

.w-full {
  width: 100%;
}

.col-2 {
  width: 50%;
}
.flex {
  display: flex;
}
.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10px;
}

.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-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;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-flex-end {
  justify-content: flex-end;
}

.image-cover {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.align-center {
  align-items: center;
}

.image {
  border-radius: inherit;
  display: flex;
}

.image img {
  transform: scale(1.01);
  width: 100%;
}

.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 {
  position: relative;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
  font-size: inherit;
  border: none;
  font-weight: 500;
  font-family: inherit;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  padding: 10px 20px;
  background-image: var(--gradient);
  border-radius: 40px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-dark);
  flex-direction: row-reverse;
  z-index: 1;
  font-size: 14px;
}

.button:hover {
  /* background-color: var(--color-dark) !important; */
  color: #fff !important;
}

header.visible .navbar .container {
  padding-block: 7px;
}

.button:before {
  content: "";
  position: absolute;
  inset: 1.4px;
  background: var(--color-dark);
  z-index: -1;
  border-radius: inherit;
  transition: 0.3s;
  opacity: 0;
}

.button:hover:before {
  opacity: 1;
}

.button.white {
  background-color: #fff;
  color: var(--color-dark);
}

.button.white:hover {
  background-color: var(--color-dark);
  color: #fff;
}

.cover-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

header .logo {
  width: auto;
}

header {
  z-index: 99;
  width: 100%;
  position: fixed;
  top: 0;
  color: #fff;
  /* background: radial-gradient(
    59.44% 59.44% at 50.89% 46.56%,
    #382504 30.09%,
    #201501 100%
  ); */
  background-size: 90vw 100vw;
  background-position: top center;
  transition: 0.2s;
}

.navigation .navigation-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 35px;
  font-size: 13px;
  /* font-weight: 500; */
  text-transform: uppercase;
  color: var(--color-light);
}

header .logo img {
  width: 100%;
  object-fit: contain;
  height: 60px;
}

.navigation .navigation-list .nav-btn {
  font-weight: 400;
}

.home-banner-section {
  background: radial-gradient(
    59.44% 59.44% at 50.89% 40.56%,
    #382504 30.09%,
    #201501 100%
  );
  padding-top: 8.5rem;
  margin-bottom: 5.5rem;
  overflow: hidden;
}

header .menu-left {
  width: 35%;
}

header .logo .logo-colored {
  display: none;
}

header.visible .logo .logo-colored {
  display: block;
}

header.visible .logo .logo-white {
  display: none;
}

header .logo .logo-white {
  display: block;
}

header.visible {
  background: #fff;
  backdrop-filter: blur(5px);
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: flex-end;
  width: 35%;
}

.search-icon {
  display: flex;
  cursor: pointer;
}

.search-icon:hover svg path {
  stroke: #fff;
}

.search-icon svg path {
  transition: 0.3s;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
}

.dropdown {
  position: relative;
  border-bottom: 2px solid #fff;
}

.dropdown .dropdown-menu {
  position: absolute;
  width: 130px;
  background-color: var(--color-dark);
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  top: calc(100% + 2px);
  color: #fff;
}

ul.submenu li a {
  display: block;
  padding: 9px 15px;
  font-size: 13px;
}

.navigation-list li:not(.menu-button) a,
.menu-button,
.button-dark {
  display: inline-flex;
  position: relative;
  border: none;
  border-radius: 20px;
  padding: 10px 15px;
  background-image: var(--gradient);
  z-index: 1;
  font-weight: 600;
  flex-direction: row-reverse;
  gap: 10px;
  align-items: center;
}

.button-dark {
  color: var(--color-dark);
}

.navigation-list li:not(.menu-button) a:before,
.menu-button:before,
.button-dark:before {
  content: "";
  position: absolute;
  inset: 1.4px;
  background: var(--color-dark);
  z-index: -1;
  border-radius: inherit;
  transition: 0.3s;
}

.navigation-list li:not(.menu-button) a:hover,
.menu-button:hover,
.button-dark:hover {
  color: var(--color-dark);
}

.menu-button:hover:before {
  background: var(--gradient);
}

.menu-button:hover .hamburg-icon .line {
  background: var(--color-dark);
}

.navigation-list li a:hover:before,
.button-dark:hover:before {
  background: var(--gradient);
}

ul.submenu {
  list-style: none;
}

.navigation .navigation-list > .dropdown > a {
  display: inline-block;
  padding: 29px 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: 7px;
  width: 7px;
  display: inline-block;
  display: inline-block;
  opacity: 0;
  width: 0;
}

.navigation .navigation-list ul.submenu li {
  padding: 0;
  transition: 0.2s;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

header.visible .search-icon path {
  stroke: #624e39;
}

header.visible .navigation-list li:not(.menu-button) a,
header.visible .menu-button {
  color: var(--color-dark);
}

header.visible .navigation-list li:not(.menu-button) a:before,
header.visible .menu-button:before,
.button-dark:before {
  opacity: 0;
}

header.visible .hamburg-icon .line {
  background-color: var(--color-dark);
}

header .navbar {
  position: relative;
}

.header-search-overlay {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
}

.header-search-overlay.active {
  pointer-events: initial;
}

.header-search-overlay .search-container {
  background-color: var(--color-dark);
  position: relative;
  z-index: 1;
  width: 80%;
  margin-inline: auto;
  transition: 0.1s;
  opacity: 0;
  visibility: hidden;
  padding: 8.3px;
}

.header-search-overlay .search-container .search-form {
  width: 50%;
  max-width: 500px;
  margin-inline: auto;
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
}

.search-overlay-icon {
  height: calc(100% + 3px);
  display: flex;
  cursor: pointer;
}

.search-overlay-icon svg {
  height: auto;
}

.search-overlay-icon svg path {
  stroke: #000000;
}

.header-search-overlay .search-container .search-form input {
  border: 1.5px solid var(--color-light);
  /* color: #000; */
  font-weight: 600;
  /* color: var(--color-dark); */
  border-radius: 30px;
  text-transform: initial;
  font-size: 14px;
}

.header-search-overlay .search-container .container {
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}

#header-search-result {
  width: 100%;
  /* color: var(--color-dark); */
  max-width: 500px;
  padding-inline: 15px;
  padding-bottom: 30px;
}

.search-result-head {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 18px;
  text-decoration: underline;
}

#header-search-result li {
  list-style: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.navigation-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background-color: #ffffffe6;
  display: flex;
  backdrop-filter: blur(1px);
  align-items: center;
  width: 270px;
  z-index: 99;
  justify-content: center;
  transition: 0.3s;
}

span.close-search {
  position: absolute;
  z-index: 99;
  color: var(--color-light);
  right: 20px;
  font-size: 20px;
  border: 1.5px solid var(--color-light);
  height: 35px;
  width: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: 15px;
  cursor: pointer;
  /* color: var(--color-dark); */
}

.header-search-overlay.active .search-container {
  width: 100%;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

.navigation-drawer.active {
  transform: translateX(0) !important;
}

.navigation-drawer li {
  list-style: none;
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-dark);
}

.navigation-drawer .close-icon {
  display: flex;
  align-items: center;
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
}

.navigation-drawer .close-icon svg path {
  stroke: var(--color-dark);
}
/*
New Web CSS
*/
.container-fluid {
  padding-inline: 2rem;
}

header .logo,
.header-button {
  height: 60px;
  display: inline-flex;
  align-items: center;
}

.header-button {
  font-size: 13px;
  font-weight: 600;
}

li.dropdown:hover {
  border-bottom: 2px solid var(--color-light);
}

.navigation .navigation-list ul.submenu li:hover {
  background-color: var(--color-light);
}

.swiper .swiper-pagination-bullet {
  border: 1.5px solid inherit;
  opacity: 1;
  background: transparent;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  border-color: #0072bb;
  background-color: #0072bb;
}

.section-head h2 {
  font-size: 45px;
  margin-top: 10px;
  text-transform: uppercase;
  color: #fff;
}

.section-content {
  padding-top: 15px;
}

.section-content h3 {
  font-size: 28px;
}

.section-head {
  padding-bottom: 20px;
}

.button.dark {
  background-color: #012218;
}

.nav-icon {
  display: flex;
}

.hamburg-icon .line {
  width: 20px;
  height: 2px;
  margin-bottom: 4px;
  background-color: var(--color-light);
  border-radius: 5px;
  transition: 0.3s;
}

.hamburg-icon.open .line:first-child {
  transform: rotate(45deg) translate(5px, -3px);
}

.hamburg-icon.open .line:last-child {
  transform: rotate(-46deg) translate(7px, 0px);
}

.hamburg-icon .line:last-child {
  margin: 0;
}

.banner-content {
  width: 100%;
  font-size: calc((86vw / 10) - 7px);
  margin-bottom: -45px;
  position: relative;
  z-index: 1;
  /* margin-inline: auto; */
}

@media only screen and (min-width: 1400px) {
  .banner-content {
    font-size: calc(85vw / 12);
  }
}

.banner-content h1 {
  font-size: inherit;
  font-weight: 400;
  color: #fff;
}

.banner-image {
  max-width: 90%;
  margin-inline: auto;
}

.banner-image .image {
  border-radius: 20px 20px 0px 0px;
  overflow: hidden;
}

/** Need to place below code before Media Queryies **/
.kataria-crafts-section .section-head p {
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
}

.kataria-crafts-section {
  position: relative;
  padding: 6rem 0;
}

.kataria-crafts-section .graphic.center {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: -1;
}

.projects-slider-container {
  position: relative;
  height: 700px;
  padding-top: 12rem;
  overflow: hidden;
}

.projects-slider {
  height: 100%;
}

.project-image-grid {
  position: relative;
  box-shadow: 0 0 0 #fff0;
  transition: 0.3s;
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
}

.project-image-grid:hover {
  box-shadow: 0px 0px 60px rgba(252, 171, 114, 0.5);
}

.project-image-grid .image {
  border-radius: 20px;
  overflow: hidden;
}

.project-image-grid .project-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  color: var(--color-dark);
  font-family: var(--font-body);
  padding: 10px 25px;
  border-radius: 10px;
  overflow: hidden;
}

.project-image-grid .project-button span {
  background: linear-gradient(101.43deg, #fcab72 -30.77%, #934b40 203.13%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 600;
  margin-inline: 6px;
  text-transform: uppercase;
}

.project-image-grid .project-button h3 {
  color: var(--color-dark);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 35px;
  text-transform: uppercase;
}

.joy-of-kataria-section .section-head h2 {
  font-weight: 400;
  font-size: 5rem;
  width: 70%;
}

.joy-of-kataria-section .section-head h2 span:last-child {
  text-align: right;
}

.joy-of-kataria-section .section-head h2 span span {
  background: linear-gradient(165.1deg, #fcab72 57.69%, #934b40 111.17%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.joy-of-kataria-content {
  position: relative;
}

.joy-of-kataria-content .image-content .image-1 {
  position: absolute;
  bottom: 85%;
  right: 0;
  overflow: hidden;
  border-radius: 20px;
  transform: scale(0.8);
}

.joy-of-kataria-content .image-content .image-1 {
  position: absolute;
  bottom: 82%;
  right: 0;
  overflow: hidden;
  border-radius: 20px;
  transform: scale(0.8);
  width: 33%;
}

.joy-of-kataria-content .image-content .image-1 img {
  width: 100%;
}

.joy-of-kataria-content .grid-2 {
  align-items: flex-end;
}

.joy-of-kataria-content .text {
  font-size: 2.2rem;
  text-transform: uppercase;
}

.joy-of-kataria-content .image {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
}

.joy-of-kataria-content .image-content .image-1 img {
  transform: scale(1.01);
}

.joy-of-kataria-content .graphic {
  position: absolute;
  top: 13%;
  right: 10%;
  z-index: -1;
  transform: scale(0.9);
}
.testimonial-grid {
  text-align: left;
}

.testimonial-grid .name {
  display: flex;
  color: #fff;
}

.testimonial-grid .text {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.testimonial-grid .stars {
  text-align: right;
}

.testimonial-grid .name h4 {
  font-family: var(--body-font);
  display: flex;
  flex-direction: column;
  font-weight: 500;
  gap: 3px;
  font-size: 16px;
}

.testimonials-slider .swiper-slide.swiper-slide-next {
  position: relative;
}

.testimonials-slider .swiper-slide.swiper-slide-next:before,
.testimonials-slider .swiper-slide.swiper-slide-next:after {
  content: "";
  position: absolute;
  top: -15px;
  height: calc(100% + 30px);
  width: 1px;
  background-color: #544935;
}

.testimonials-slider .swiper-slide.swiper-slide-next:before {
  left: -22px;
}

.testimonials-slider .swiper-slide.swiper-slide-next:after {
  right: -22px;
}

.testimonials-slider {
  padding-block: 15px !important;
}

.testimonials-slider-progressbar {
  position: relative;
  display: flex;
  gap: 12px;
  color: var(--color-light);
  align-items: center;
  margin-top: 30px;
}

.testimonials-container .testimonials-prev,
.testimonials-container .testimonials-next,
.testimonials-container .testimonials-pagination {
  position: relative;
  width: fit-content;
  line-height: 1;
  height: auto;
  margin: 0;
  inset: 0;
  font-size: 26px;
}

.testimonials-container .testimonials-prev:after,
.testimonials-container .testimonials-next:after {
  color: var(--color-light);
  font-size: inherit;
}

.testimonials-slider-progressbar:after {
  content: "";
  position: absolute;
  right: 0;
  width: calc(100% - 150px);
  height: 1px;
  background-color: #5b503d;
}

.testimonials-container .testimonials-pagination .swiper-pagination-total {
  color: #5b503d;
}

.insights-grid {
  position: relative;
  background-color: #261e0f;
  border-radius: 20px;
  transition: 0.3s;
  outline: 1px solid #fff0;
}

.insights-grid .image {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.insights-grid .content {
  padding: 15px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.insights-grid .content .title {
  font-size: 19px;
  color: #fff;
}

.insights-button a {
  margin-top: 12px;
  background: linear-gradient(101.43deg, #fcab72 -30.77%, #934b40 203.13%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-block;
}

.insights-grid:hover,
.usps-grids .usp-grid:hover,
.our-values-grid:hover {
  background: #382504;
  outline: 1px solid #fcab72;
}
.upper-footer-section .image {
  overflow: hidden;
  width: 100%;
  max-height: 85vh;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer .footer-logo {
  width: 170px;
}

.footer .footer-content {
  max-width: calc(100% - 180px);
  width: 65%;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.footer-nav.footer-contact-info {
  padding-right: 40px;
}

.footer-nav li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav li .icon {
  width: 22px;
  display: flex;
}

.footer-nav li .icon ~ a,
.footer-nav li .icon ~ .address {
  width: calc(100% - 32px);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

footer.footer {
  padding-top: 70px;
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #261e0f;
}

.footer-nav .social-icons {
  margin-top: 17px;
}

.footer .graphic {
  position: absolute;
  top: -5px;
  left: -10px;
}

.graphic {
  pointer-events: none;
}

.copyright-text {
  width: calc(100% * 1.5);
  margin-top: 16px;
  font-size: 14px;
}

.inner-banner-section .banner-content {
  margin: 0;
}

.inner-banner-section {
  position: relative;
  padding: 120px 0 70px;
  background: linear-gradient(180deg, #190e08 0%, #4c2d12 100%);
  /* height: 90vh; */
  display: flex;
  align-items: center;
}

.inner-banner-section.about-us-page-banner {
  height: 90vh;
}

.projects-listing-section .section-head {
  max-width: 80%;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 40px;
}

.projects-listing-wrapper .project-image-grid .project-button h3 {
  font-size: 19px;
  color: #fff;
}

.projects-listing-wrapper .project-image-grid .project-button {
  width: 90%;
  bottom: 25px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(15px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 10px;
  padding: 20px 25px;
}

.projects-listing-wrapper .project-image-grid .project-button span {
  font-size: 13px;
  z-index: 1;
  position: relative;
  color: #000;
  background-clip: initial;
  background: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}

.more-details-button {
  display: flex;
  align-items: center;
}

.projects-listing-wrapper .project-image-grid .project-button svg path {
  stroke: #000;
}

.projects-listing-wrapper .project-image-grid .project-button .button {
  transition: 0.3s;
  transform: translateX(-10px);
  opacity: 0;
}

.projects-listing-wrapper .project-image-grid .project-button:hover .button {
  transform: translateX(0);
  opacity: 1;
}

.upper-footer-content-section .image {
  overflow: hidden;
  position: absolute;
  height: 100%;
  width: 100%;
}

.upper-footer-content-section {
  position: relative;
}

.upper-footer-content-section .section-head {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 7rem 0;
}

.upper-footer-content-section .section-head .button-dark {
  width: max-content;
  margin-inline: auto;
  margin-top: 25px;
}

.upper-footer-content-section .section-head h2 {
  font-size: 45px;
}

.single-image-section .image {
  overflow: hidden;
}

.modern-elegant-section .section-head h2 {
  font-weight: 400;
  font-size: 6.7rem;
  background: linear-gradient(165.1deg, #fcab72 57.69%, #934b40 111.17%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 13px;
}

.modern-elegant-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.content-wrapper .section-head {
  width: 60%;
}

.usps-grids {
  height: 100%;
  margin-top: 20%;
  width: 40%;
}

.usps-grids .usp-grid {
  padding: 20px 20px 25px 20px;
  border: 1px solid #544935;
  border-radius: 15px;
  background-color: #201501;
  height: max-content;
  transition: 0.3s;
}

.usps-grids .usp-grid h3 {
  font-family: var(--font-body);
  color: #fff;
  font-size: 41px;
}

.usps-grids .usp-grid h3 span {
  font-size: 50%;
  margin-left: 6px;
}

.usps-grids .usp-grid p {
  font-size: 13px;
  margin-top: 3px;
}

.content-wrapper .section-head p {
  padding-right: 70px;
}

.modern-elegant-section .graphics {
  margin-top: -7rem;
  margin-bottom: -13rem;
}

.contact-grids {
  /* display: flex; */
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-grids .contact-grid {
  position: relative;
  padding: 30px;
  border: 1px solid #fcab72;
  border-radius: 20px;
  text-transform: uppercase;
  text-align: center;
  transition: 0.3s;
}

.contact-grids .contact-grid h3 {
  font-family: "Gilroy";
  font-weight: 600;
  font-size: 15px;
}

.contact-grids .contact-grid p {
  text-transform: initial;
  font-size: 24px;
  margin-top: 12px;

  background: linear-gradient(165.1deg, #fcab72 57.69%, #934b40 111.17%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.contact-grid:hover {
  background: #382504;
}

.form-control {
  padding: 12px 15px;
  width: 100%;
  font-family: var(--body-font);
  border: 1px solid #544935;
  background-color: transparent;
  color: #fff;
  text-transform: uppercase;
  border-radius: 7px;
}

.form-group label {
  display: none;
}

.form-group {
  margin-bottom: 9px;
}

.form-control::placeholder {
  color: var(--color-light);
}
button#btn_enq {
  width: 100%;
}

.contact-page-section .section-head h2 {
  font-family: "Gilroy";
  font-size: 40px;
  margin-bottom: 20px;
}

.contact-page-section .section-head {
  padding-right: 11rem;
}

.about-us-page-banner .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-us-page-banner .banner-content h1 {
  text-transform: uppercase;
}

.about-us-page-banner .image img {
  object-fit: cover;
}

.about-kataria-section .section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-kataria-section {
  padding: 7rem 0;
}

.about-kataria-section .image .graphics {
  position: absolute;
  top: -3rem;
  left: -2rem;
}

.about-kataria-section .image {
  position: relative;
  /* overflow: hidden; */
}

.about-kataria-section .image .image {
  overflow: hidden;
}

.about-principles-section .content-wrapper .section-head {
  width: 40%;
}

.about-principles-section .usps-grids {
  width: 60%;
  margin-top: 8%;
  position: relative;
  z-index: 1;
}

.about-principles-section .section-head h2 {
  font-size: 3rem;
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.about-principles-section .usps-grids .usp-grid h3 span {
  background: linear-gradient(165.1deg, #fcab72 57.69%, #934b40 111.17%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 4.5rem;
}

.about-principles-section .image {
  overflow: hidden;
  margin-top: -5%;
}

.our-values-grid {
  position: relative;
  padding: 60px 30px;
  border: 1px solid;
  border-radius: 20px;
  transition: 0.3s;
}

.our-values-grid .our-values-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.our-values-title h3 {
  font-size: 23px;
  font-family: "Gilroy";
  text-transform: uppercase;
  color: #fff;
}

.our-values-title p {
  font-size: 15px;
  /* font-weight: 600; */
}

.our-values-grid .icon {
  transform: scale(0.8);
}

.our-values-section .section-head {
  margin-bottom: 30px;
}

.inner-banner-section .banner-content h1 {
  text-transform: uppercase;
}

.home-banner-section .banner-image {
  max-width: initial;
  width: 100%;
  height: 100vh;
}

.home-banner-section .banner-image .image {
  width: 75%;
  margin-inline: auto;
}

.home-projects-section .project-image-grid {
  box-shadow: none !important;
}

.designed-cyberworx {
  padding-top: 70px;
  padding-bottom: 7px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: right;
  justify-content: flex-end !important;
}

.pdp-kataria-crafts-section .graphic {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(0.8);
}

.pdp-kataria-crafts-section .section-head p {
  text-transform: initial;
  font-size: 22px;
}

.pdp-kataria-crafts-section {
  padding-block: 12rem;
}

.leadership-grids-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.leadership-grid {
  display: flex;
  flex-wrap: wrap;
  /* align-items: center; */
}

.leadership-grid .image {
  width: 25%;
  border-radius: 15px;
  overflow: hidden;
}

.leadership-grid .text-content {
  width: calc(75% + 40px);
  padding: 40px;
  padding-left: 7rem;
  margin-left: -40px;
  border: 1px solid #544935;
  border-radius: 15px;
  /* height: calc(100% - 40px); */
  margin-block: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.leadership-grid .text-content h2 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.leadership-section .section-head h2 {
  font-size: 3rem;
  font-weight: 400;
}

/** Stacked Section **/
.sticky-projects-section .image {
  position: sticky;
  overflow: hidden;
  border-radius: 20px;
  max-height: 80vh;
  transition: 0.5s;
}
.sticky-projects-section .image img {
  transition: 0.5s;
  transform-origin: top;
  border-radius: 20px;
}
.sticky-projects-section .image:nth-child(1) {
  top: 30px;
}

.sticky-projects-section .image:nth-child(2) {
  top: 55px;
}

.sticky-projects-section .image:nth-child(3) {
  top: 75px;
}

.sticky-projects-section .image:nth-child(4) {
  top: 95px;
}

.sticky-projects-section .image:nth-child(1).active img {
  transform: scale(0.7);
}

.sticky-projects-section .image:nth-child(2).active img {
  transform: scale(0.8);
}

.sticky-projects-section .image:nth-child(3).active img {
  transform: scale(0.9);
}
/** Stacked Section End **/

.projects-listing-wrapper
  .project-image-grid
  .project-button
  .button:hover
  span {
  color: #fff;
}

.projects-listing-wrapper
  .project-image-grid
  .project-button
  .button:hover
  svg
  path {
  stroke: #fff;
}

.projects-listing-wrapper .project-image-grid .project-button .button {
  flex-direction: row;
}

.upper-footer-content-section .image img {
  object-fit: cover;
}

.upper-footer-content-section .image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: #000;
  opacity: 0.3;
}

.joy-of-kataria-content .image img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: left center;
}

/*.about-kataria-section .section-head h2 {*/
/*    font-size: 42px;*/
/*}*/

/** Media Queries **/
@media only screen and (max-width: 768px) {
  header .logo {
    padding-left: 1rem;
  }

  .navigation {
    /* display: none; */
    /* position: absolute; */
    /* top: 100%; */
    /* left: 0; */
    width: min-content;
    /* background-color: #fffffff2; */
  }

  .nav-icon {
    display: flex;
  }

  header .logo {
    padding-left: 0;
  }

  .navbar {
    /* padding-inline: 15px; */
    /* padding-right: 0; */
  }

  .hamburg-icon .line:last-child {
    margin: 0;
  }

  .topbar .container-fluid {
    flex-wrap: wrap;
  }

  .container-fluid {
    padding-inline: 15px;
  }

  .topbar-info {
    gap: 10px;
  }

  .topbar-info p {
    font-size: 8.5px;
  }

  .navigation .navigation-list {
    flex-direction: column;
    gap: 0px;
  }

  .navigation .navigation-list li {
    width: 100%;
    text-align: center;
  }

  .navigation .navigation-list > .dropdown > a {
    padding: 12px 0;
  }

  .navbar .container {
    padding-block: 10px;
  }

  .button {
    font-size: 12px;
    padding-inline: 10px;
  }

  .menu-right {
    gap: 15px;
  }

  .navigation .navigation-list li:not(.menu-button) {
    display: none;
  }

  .graphic svg,
  .graphics svg {
    width: 95%;
  }

  .kataria-crafts-section .section-head p {
    font-size: 1.6rem;
  }

  .section-head.grid-2 {
    flex-direction: column;
    display: flex;
    text-align: center;
  }

  .project-image-grid .image {
    height: 100%;
  }

  .project-image-grid .image img {
    object-fit: cover;
  }

  .project-image-grid .project-button {
    width: calc(100% - 50px);
    bottom: 20px;
  }

  .more-details-button {
    font-size: 13px;
  }

  .project-image-grid .project-button span {
    margin-left: 0;
  }

  .project-image-grid .project-button a {
    width: 110px;
  }

  .project-image-grid .project-button h3 {
    width: calc(100% - 110px);
    font-size: 25px;
  }

  .joy-of-kataria-section .section-head h2 {
    width: 100%;
    font-size: 4.2rem;
    text-align: center;
  }

  .joy-of-kataria-content .grid-2 {
    display: flex;
    flex-direction: column;
  }

  .joy-of-kataria-content .text {
    font-size: 1.6rem;
  }

  .header-button a.button {
    min-width: 95px;
    justify-content: center;
  }

  .home-banner-section .banner-image .image {
    height: 100%;
    width: 85%;
  }

  .banner-content h1 {
    font-size: 4rem;
  }

  .home-banner-section .banner-image .image img {
    object-fit: cover;
  }

  .footer .container {
    flex-direction: column;
  }

  .footer .footer-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .footer .footer-logo {
    width: 100%;
  }

  .footer .footer-logo .image {
    max-width: 140px;
    margin-inline: auto;
  }

  .footer .footer-logo .copyright-text {
    display: none;
  }

  .footer-nav:not(.footer-contact-info) ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 30px;
  }

  .footer-nav ul {
    margin-top: 20px;
  }

  .footer-nav li {
    /* justify-content: center; */
  }

  .designed-cyberworx {
    padding-top: 30px;
    text-align: center;
  }

  .footer-nav.footer-contact-info + .footer-nav {
    margin-top: 30px;
  }

  .projects-slider-container {
    overflow: initial;
  }

  .header-button {
    display: none;
  }

  .header-search-overlay .search-container .search-form {
    width: calc(100% - 50px);
    margin-left: 0;
  }

  span.close-search {
    height: 42px;
    width: 42px;
  }

  .inner-banner-section.about-us-page-banner {
    height: 45vh;
  }

  .graphics {
    overflow: hidden;
    width: 95vw;
    pointer-events: none;
  }

  .about-kataria-section .grid-2.gap-7 {
    display: flex;
    flex-direction: column;
  }

  .about-principles-section .content-wrapper .section-head {
    width: 100%;
  }

  .about-principles-section .usps-grids {
    width: 100%;
  }

  .about-principles-section .usps-grids .grid-1.gap-2.pt-3 {
    padding-top: 0;
  }

  .about-principles-section .usps-grids .usp-grid h3 span {
    font-size: 37px;
  }

  .usps-grids .usp-grid {
    height: 100%;
  }

  .about-principles-section .image {
    margin-top: 30px;
  }

  .leadership-grid {
    flex-direction: column;
  }

  .leadership-grid .text-content {
    margin-left: 0;
    width: 100%;
    padding-left: 25px;
    padding: 25px;
  }

  .leadership-grid .image {
    width: 100%;
  }

  .our-values-section .grid-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .projects-listing-wrapper.grid-2.gap-2 {
    display: flex;
    flex-direction: column;
  }

  .projects-listing-wrapper .project-image-grid .project-button .button {
    justify-content: center;
    opacity: 1;
    transform: translateX(0px);
  }

  .projects-listing-wrapper .project-image-grid .project-button {
    width: calc(100% - 25px);
    padding: 15px;
  }

  .contact-grids.grid-3 {
    display: flex;
    flex-direction: column;
  }

  .contact-page-section .grid-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .contact-page-section .section-head {
    padding-right: 3rem;
    padding-bottom: 0px;
  }

  .form-button .button {
    font-size: 14px;
    padding-inline: 20px;
    letter-spacing: 0.3px;
    width: 100%;
    justify-content: center;
  }
}

@media only screen and (max-width: 560px) {
  .topbar-info {
    gap: 2px;
    flex-direction: column;
  }

  .topbar .container-fluid {
    flex-wrap: nowrap;
    padding-inline: 9px;
  }
}
