:root {
  --max-width: 1200px;
  --gap: 1rem;
  --color-light: #fff;
  --color-dark: #36454F;
  --mansory-gap: 13px;
  --color-orange: #f4ae52;
  /* --color-black: #012217; */
  --font-body: "Noto Sans", sans-serif;
  --font-heading: "Buenard", 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);
  font-weight: 400;
  font-style: normal;
  color: #333333;
  /*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.4;
}

p {
  line-height: 1.8;
}

img {
  max-width: 100%;
}

.text-center {
  text-align: center;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 15px;
}

.pt-0\! {
  padding-top: 0 !important;
}

.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%;
}

a.cover-link {
    position: absolute;
    inset: 0;
}

.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;
  border: 1px solid var(--color-dark);
  font-weight: 500;
  align-items: center;
  padding: 12px 50px;
  background: var(--color-dark);
  border-radius: 12px;
  color: var(--color-light);
  font-size: 14px;
  font-family: var(--font-body);
  width: fit-content;
  display: flex;
  align-items: center;
}

.button.outline {
    background: transparent;
    color: var(--color-dark);
}

header.visible .navbar .container {
    /*padding-block: 7px;*/
}

.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;
    transition: 0.2s;
    background: #fff;
}

.navigation .navigation-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 25px;
  font-size: 17px;
  color: #272727;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

header .logo img {
  width: 100%;
  object-fit: contain;
}

.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;
}

.home-projects-section {
    padding-top: 0;
}

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);
    box-shadow: 0 0 10px #00000012;
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: flex-end;
}

.search-icon {
  display: flex;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

.dropdown {
  position: relative;
  border-bottom: 2px solid #fff;
}

.dropdown .dropdown-menu {
  position: absolute;
  width: 130px;
  background-color: rgb(54 69 79 / 80%);
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  top: calc(100% + 2px);
  color: #fff;
  font-size: 15px;
  padding-block: 7px;
  border-radius: 0 0 7px 7px;
  list-style: none;
}

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;
}

.dropdown .dropdown-menu li > a {
    padding: 6px;
    display: block;
    text-transform: initial;
    font-family: var(--font-body);
}

.button-dark {
  color: var(--color-dark);
}

.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: 10px;
  width: 9px;
  display: inline-block;
  display: inline-block;
  /* opacity: 0; */
  /* width: 0; */
  background-repeat: no-repeat;
  background-position: center;
}

.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);
}

.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;
}

.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: 62px;
  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: 36px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #405659;
}

.section-head p {
    font-weight: 300;
}

.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;
}

/** Media Queries **/
@media only screen and (max-width: 768px) {
  header .logo {
    padding-left: 1rem;
  }

  .navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    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;
  }
}

@media only screen and (max-width: 560px) {
  .topbar-info {
    gap: 2px;
    flex-direction: column;
  }

  .topbar .container-fluid {
    flex-wrap: nowrap;
    padding-inline: 9px;
  }
}

/** Need to place below code before Media Queryies **/
.kataria-crafts-section .section-head p {
  font-size: 2.3rem;
  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-container .projects-slider {
  height: 100%;
  padding-top: 11rem;
}

.project-image-grid {
  position: relative;
  box-shadow: 0 0 0 #fff0;
  transition: 0.3s;
  overflow: hidden;
  height: 100%;
  padding-inline: 0;
}

.project-image-grid:hover {
  box-shadow: 0px 0px 60px rgba(252, 171, 114, 0.5);
}

.project-image-grid .image {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  height: 100%;
}

.project-image-grid .image video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.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;
}

.home-projects-section .project-image-grid .content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

.home-projects-section .project-image-grid .content h4,
.inner-banner-section .content h4 {
    font-size: 20px;
}

.home-projects-section .project-image-grid .content h2,
.inner-banner-section .content h2 {
    font-size: 55px;
}

.home-projects-section .project-image-grid .content p,
.inner-banner-section .content p {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 7rem;
}

.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: 6.5rem;
  display: flex;
  flex-direction: column;
  width: 67%;
}

.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 .grid-2 {
  align-items: flex-end;
}

.joy-of-kataria-content .text {
  font-size: 2.5rem;
  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%;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
}

.footer .footer-logo {
  width: 30%;
}

.footer .footer-content {
  width: calc(75% - 11rem);
  /* font-weight: 600; */
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-nav.footer-contact-info {
    padding-top: 20px;
}

.footer-nav li {
  list-style: none;
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 300;
}

.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: 12px;
}

footer.footer {
  padding-top: 55px;
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: #36454F;
  color: #fff;
}

.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: 50px;
  font-size: 14px;
  padding-block: 15px;
  border-top: 1px solid #DADADA;
  font-weight: 300;
  justify-content: center !important;
}

.inner-banner-section .banner-content {
  margin: 0;
  color: #fff;
}

.inner-banner-section {
  position: relative;
  padding: 105px 0 0px;
  height: 100vh;
  display: flex;
  align-items: center;
}

.inner-banner-section.about-us-page-banner {
    height: 90vh;
}

.inner-banner-section .image img {
  object-fit: cover;
}

.inner-banner-section .image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-banner-section .image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 7px;
}

.inner-banner-section .image:after {
    content: '';
    background: rgba(0, 0, 0, 0.11);
    position: absolute;
    inset: 0;
}

.inner-banner-section .container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-banner-section .banner-content h2, 
.inner-banner-section .banner-content h4, 
.inner-banner-section .banner-content p {
    color: #fff;
}

.inner-banner-section .banner-content p {
    margin-bottom: 10px;
}

.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: .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 0px;
  width: 100%;
  font-family: var(--body-font);
  border: none;
  border-bottom: 1px solid #000;
  color: #444444;
  font-size: 15px;
}

.form-group label {
  display: none;
}

.form-group {
  margin-bottom: 20px;
}

.form-control::placeholder {
  color: #272727;
  font-family: var(--font-body);
  /* font-weight: 300; */
}

.contact-page-section .section-head h2 {
  /* font-family: "Gilroy"; */
  /* font-size: 40px; */
  /* margin-bottom: 20px; */
}

.contact-page-section .section-head {
  padding-bottom: 40px;
}

.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: .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;
}

.fashion-growth-section .section-head {
    max-width: 70%;
    margin-inline: auto;
}

.growth-grids {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    text-align: center;
    justify-content: space-between;
    margin-top: 1.2rem;
}

.growth-grid {
    width: calc(100% / 6 - 17px);
    /*font-family: var(--font-heading);*/
    font-family: var(--font-body);
    transition: 0.3s;
    padding: 14px 10px;
    width: auto;
    color: rgba(54, 69, 79, 1);
}

.growth-grid p {
    font-weight: bold;
}

.growth-grid h3 {
    font-size: 65px;
    margin-bottom: 7px;
    font-family: inherit;
    font-weight: 700;
}

.growth-grid:hover {
    /*background-color: var(--color-dark);*/
    /*color: #fff;*/
    /*border-radius: 10px;*/
}

.md-growth-section {
    position: relative;
    /* background-color: var(--color-dark); */
    color: #fff;
    /*margin-top: 5rem;*/
}

.md-growth-section .section-head > p {
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: initial;
}

.md-growth-section .section-head {
    position: relative;
    width: 70%;
    padding-block: 40px;
    background-color: rgba(54, 69, 79, 1);
    background-size: contain;
    color: #fff;
    padding-inline: 50px;
}

.md-growth-section .row {
    justify-content: space-between;
}

.md-details {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
}

.md-growth-section  .image img {
    /* margin-top: -7rem; */
    object-fit: cover;
    transform: initial;
}

.md-details strong {
    font-size: 20px;
    margin-bottom: 8px;
}

.why-overseas-section {
    /* margin-top: 3rem; */
    background-color: #FAF9F6;
    padding-top: 5rem;
    padding-bottom: 6rem;
}

.overseas-grid img {
    border-radius: 7px;
    transform: none;
}

.why-overseas-grids {
    margin-top: 40px;
    row-gap: 35px;
}

.overseas-grid .content h4 {
    font-size: 23px;
    margin: 15px 0 10px;
    color: #405659;
    text-transform: uppercase;
}

.overseas-grid .content p {
    font-weight: 300;
    color: #000;
}

.clients-grids {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.clients-grid img {
    transform: scale(0.6);
}

.contact-us-section .section-head {
    width: 30%;
}

.contact-us-section  .contact-form {
    width: 70%;
}

.contact-us-section  .container {
    display: flex;
    flex-wrap: wrap;
}

.contact-us-section  .form-button {
    display: flex;
    justify-content: flex-end;
}

.footer .footer-head {
    margin-bottom: 15px;
    margin-top: 5px;
    font-family: "Anek Kannada", sans-serif;
    text-transform: initial;
    font-size: 16px;
}

.footer .footer-nav li.has-link {
    position: relative;
}

.footer .footer-logo img {
    transform: none;
    height: 59px;
    width: auto;
}

.footer .footer-logo .image {
    margin-top: -15px;
}

.footer-text {
    font-weight: 300;
    margin-bottom: 20px;
    margin-top: 5px;
}

.clients-slider .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
}

.mission-vision-section .tabs {
    position: sticky;
    top: 150px;
    width: 40%;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
}

.mission-vision-section .tabs-container {
    width: 60%;
    padding-inline: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission-vision-section .value-grids {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.mission-vision-section .value-grid {
    background: #FFFFFF;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
    padding: 25px 35px;
    text-align: center;
    border-radius: 10px;
    color: #405659;
    aspect-ratio: 1.4 / 1;
    display: flex;
    align-items: center;
}



.mission-vision-section .value-grid h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.mission-vision-section .row {
    align-items: flex-start;
}

.mission-vision-section .tabs .tab button {
    border: 0.5px solid #36454F;
    padding: 12px;
    text-align: center;
    border-radius: 40px;
    background-color: #fff;
    width: 250px;
    font-family: var(--font-heading);
    font-size: 21px;
    cursor: pointer;
    transition: 0.3s;
}

.mission-vision-section .tabs .tab.active button, .mission-vision-section .tabs .tab button:hover {
    background-color: #425561;
    color: #fff;
}

.mission-vision-section .tab-content {
    /*display: block;*/
}

.mission-vision-section .tab-content.single-grid .value-grid {
    aspect-ratio: initial;
    padding-block: 50px;
}

.teams-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 30px;
    column-gap: 22px;
    margin-top: 20px;
}

.our-core-section .teams-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    justify-content: center;
}

.our-core-section .teams-container .team-grid {
    width: calc((100% / 4) - 18px);
}

.teams-container .team-grid {
    cursor: pointer;
}

.our-core-section {
    background-color: #FAF9F6;
}

.teams-container .team-grid .image {
    transition: 0.3s;
    border-radius: 7px;
    overflow: hidden;
}

.teams-container .team-grid:hover .image {
    filter: drop-shadow(4px 3px 13px rgba(0, 0, 0, 0.2));
}

.teams-container .team-grid .content {
    margin-top: 15px;
    position: relative;
    padding-right: 40px;
}

.teams-container .team-grid .content h4 {
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 700;
}

.teams-container .team-grid .content p {
    font-weight: 300;
    font-size: 15px;
}

.teams-container .team-grid .content .icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(136.64deg, rgba(230, 230, 230, 0.3) -1.49%, rgba(215, 215, 215, 0.3) 103.6%);
    backdrop-filter: blur(10px);
    padding: 7px;
    border-radius: 5px;
}

.teams-container .team-grid .content .icon svg {
    width: 100%;
    height: 100%;
}

.teams-container .team-grid .content .icon svg path {
    stroke: #f4aa49;
}


.teams-container .team-grid:hover .content .icon {
    right: 0;
    opacity: 1;
}

.gallery-container {
    margin-top: 20px;
}

.our-infrastructure-section .section-head, .our-infrastructure-section .gallery-container {
    max-width: 85%;
    margin-inline: auto;
    position: relative;
}

.gallery-container .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
    object-position: left bottom;
}

.gallery-container .thumbs-slider .swiper-slide {
    height: 66vh;
    min-height: 450px;
}

.gallery-container .gallery-thumbs-slider {
    margin-top: 10px;
    position: relative;
}

.gallery-container .gallery-thumbs-slider .swiper-slide {
    height: auto;
    /*border: 2px solid transparent;*/
    transition: 0.3s;
    cursor: pointer;
}

.gallery-container .gallery-thumbs-slider .swiper-slide.swiper-slide-thumb-active {
    /*border: 2px solid #f27d1c;*/
    border-radius: 7px;
}

.gallery-container .gallery-thumbs-slider .swiper-slide:not(.swiper-slide-thumb-active) {
    opacity: 0.5;
    filter: grayscale(1);
}

.gallery-button-next, .gallery-button-prev {
    position: absolute;
    bottom: 55px;
    cursor: pointer;
}

.gallery-button-next {
    left: calc(100% + 13px);
}

.gallery-button-prev {
    right: calc(100% + 13px);
}

.certificates-section {
    background: #FAF9F6;
}

.certificates-slider-container .swiper-slide {
    display: flex;
    height: auto;
    align-items: center;
    justify-content: center;
}

.slider-arrows {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.certificates-slider {
    margin: 20px 0 35px;
}

.certificates-button-prev, .certificates-button-next {
    cursor: pointer;
}

.mission-vision-section {
    padding-top: 0;
}

.innovative-cards-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.innovative-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    border-radius: 7px;
}

.innovative-card .image {
    width: 35%;
    overflow: hidden;
    border-radius: 5px;
}

.innovative-card .image video {
    width: 100%;
    aspect-ratio: 1 / 0.8;
    height: 100%;
    object-fit: cover;
}

.innovative-card .content {
    width: calc(65% - 30px);
    padding-right: 4rem;
}

.innovative-card .content h4 {
    font-size: 21px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.innovative-card .content p {
    font-weight: 300;
    font-size: 17px;
}

.innovative-cards-container .innovative-card:nth-child(odd) {
    background-color: #36454F;
    color: #fff;
}

.innovative-cards-container .innovative-card:nth-child(odd) .content {
    padding-right: 30px;
}

.capabilites-section .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0 40px;
    margin-top: 0;
}

.capabilites-section .tabs .tab button {
    background-color: #D8D8D8;
    border: none;
    color: #272727;
    font-weight: 500;
    padding: 11px 24px 9px;
    font-size: 17px;
    font-family: "Anek Kannada", sans-serif;
    border-radius: 30px;
    transition: 0.3s;
    cursor: pointer;
}

.capabilites-section .tabs .tab.active button, .capabilites-section .tabs .tab:hover button {
    background-color: #425561;
    color: #fff;
}

.product-categories-section .teams-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clients-logos-container {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 17px;
}

.clients-logos-container .logo-image {
    position: relative;
}

.client-logos-note {
    display: inline-block;
    background: rgba(66, 85, 97, 0.1);
    border-radius: 5px;
    padding: 10px;
    font-size: 15px;
    margin-top: 25px;
    font-weight: 300;
}

.clients-logos-container .logo-image .image {
    background: #FFFFFF;
    box-shadow: 0px 0px 14.3885px rgba(0, 0, 0, 0.08);
    border-radius: 3.59712px;
    height: 100%;
}

.clients-logos-container .logo-image .image img {
    height: 100%;
    width: 100%;
    object-fit: scale-down;
    padding: 10px;
}

.sustainable-logos-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.sustainable-logos-container .logo-image {
    position: relative;
}

.sustainable-logos-container .logo-image .content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(66, 85, 97, 0.85);
    color: #fff;
    opacity: 0;
    transition: 0.3s;
}

.sustainable-logos-container .logo-image .content h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 17px;
}

.sustainable-logos-container .logo-image:hover .content {
    opacity: 1;
}

.environmental-grids {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 30px 0 70px;
}

.environmental-grid {
    background: #F9FAFB;
    border-radius: 5px;
    padding: 50px 35px;
    text-align: center;
    filter: drop-shadow(10px 10px 30px rgba(0, 0, 0, 0.1));
}

.environmental-grid h3 {
    font-size: 21px;
    margin-bottom: 10px;
    color: #405659;
}

.environmental-grid  p {
    font-size: 17px;
    font-weight: 300;
}

.environment-gallery .gallery-thumbs-slider .swiper-slide {
    aspect-ratio: 1.8 / 1;
    display: flex;
}

.environment-gallery .gallery-container {
    position: relative;
}

.people-container .content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-top: 35px;
}

.people-container .content .text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.csr-container .csr-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    align-items: center;
    margin-top: 40px;
}

.csr-container .csr-grid .slider-container {
    width: calc(50% - 18px);
    position: relative;
}

.csr-container .csr-grid .content {
    width: calc(50% - 18px);
}

.csr-container .csr-grid .inner-text {
    margin: 15px 0;
}

.csr-container .csr-grid .inner-text h4 {
    font-family: var(--font-body);
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 400;
    color: #405659;
}

.csr-container .csr-grid .inner-text p {
    font-size: 17px;
    font-weight: 300;
    color: #000;
}

.csr-container .csr-grid .content h3 {
    font-size: 20px;
    color: #405659;
}

.page-title {
    margin-top: 78px;
    padding-block: 30px;
    text-align: center;
    background: linear-gradient(276.07deg, #6A879A -6.51%, #425561 65.8%, #425561 135.86%);
    color: #fff;
}

.page-title .section-head {
    padding-bottom: 0;
}

.page-title .section-head h1 {
    font-size: 45px;
}

.women-wear-prev, 
.women-wear-next {
    position: absolute;
    top: calc(50% - 30px);
    transform: translateY(-50%);
    background: linear-gradient(136.64deg, rgba(230, 230, 230, 0.3) -1.49%, rgba(215, 215, 215, 0.3) 103.6%);
    backdrop-filter: blur(10px);
    z-index: 1;
    left: 15px;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* opacity: 0.65; */
    transition: 0.3s;
    cursor: pointer;
    filter: drop-shadow(10px 10px 40px rgba(0, 0, 0, 0.1));
    border-radius: 5px;
}

.women-wear-slider-container {
    position: relative;
}

.women-wear-next {
    right: 15px;
    left: auto;
}

.women-wear-prev:hover , .women-wear-next:hover {
    background: #fff;
}

.csr-container .csr-grid .slider-container .swiper-pagination {
    position: relative;
    bottom: -4px;
}

.csr-container .csr-grid .slider-container .swiper-pagination .swiper-pagination-bullet {
    background-color: #E1E7EA;
}

.csr-container .csr-grid .slider-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #425561;
}

.women-wear-slider-container .swiper .swiper-pagination-bullet {
    background-color: #E1E7EA;
}

.women-wear-slider-container .women-wear-pagination {
    bottom: 0px;
}

.women-wear-slider-container .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #425561;
}

.women-wear-slider-container .swiper {
    padding-bottom: 50px;
}

.women-wear-prev:hover svg path, 
.women-wear-next:hover svg path {
    fill: var(--color-orange);
}

.brands-mansory-row {
    display: grid;
    gap: var(--mansory-gap);
    margin-bottom: var(--mansory-gap);
}

.brands-mansory-row.first {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.brands-mansory-row.first .brands-mansory-grid:first-child {
    grid-column: 1 / span 3;
    grid-row: 1 / span 2;
}

.brands-mansory-row.first .brands-mansory-grid:nth-child(2) {
    grid-column: 4 / span 4;
}

.brands-mansory-row.first .brands-mansory-grid:nth-child(3) {
    grid-column: 8 / span 3;
    grid-row: 1 / span 2;
}

.brands-mansory-row.first .brands-mansory-grid:nth-child(4) {
    grid-column: 11 / span 2;
}

.brands-mansory-row.first .brands-mansory-grid:nth-child(5) {
    grid-row-start: 2;
    grid-column: 4 / span 4;
}

.brands-mansory-row.first .brands-mansory-grid:nth-child(6) {
    grid-row-start: 2;
    grid-column: 11 / span 2;
}

.brands-mansory-grid {
    display: flex;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}

.brands-mansory-grid img {
    object-fit: cover;
    transition: 0.3s;
}

.brands-mansory-row.first .brands-mansory-grid:nth-child(2), .brands-mansory-row.first .brands-mansory-grid:nth-child(4), .brands-mansory-row.first .brands-mansory-grid:nth-child(5), .brands-mansory-row.first .brands-mansory-grid:nth-child(6) {
    /* max-height: 170px; */
}

.brands-mansory-grid .image {
    width: 100%;
}

.brands-mansory-grid:hover img {
    transform: scale(1.1);
}

.brands-mansory-row.first .brands-mansory-grid {
    /* max-height: calc((170px * 2) + 20px); */
}

.brands-mansory-row.second {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.brands-mansory-row.second > .brands-mansory-grid:first-child {
    grid-column: 1 / span 3;
}

.brands-mansory-row.second > .brands-mansory-grid:nth-child(2) {
    grid-column: 4 / span 6;
}

.brands-mansory-row.second > .brands-mansory-grid:nth-child(3), 
.brands-mansory-row.second > .brands-mansory-grid:nth-child(5) {
    grid-column: 10 / span 3;
}

.brands-mansory-grid-inner {
    display: grid;
    grid-column: 1 / span 9;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--mansory-gap);
}

.brands-mansory-grid-inner .brands-mansory-grid:nth-child(1) {grid-column: 1 / span 3;}

.brands-mansory-grid-inner .brands-mansory-grid:nth-child(2) {
    grid-column: 4 / span 3;
}

.brands-mansory-grid-inner .brands-mansory-grid:nth-child(3) {
    grid-column: 7 / span 6;
}

.brands-mansory-grid-inner .brands-mansory-grid:nth-child(1), .brands-mansory-grid-inner .brands-mansory-grid:nth-child(3) {
    grid-row: 1 / span 2;
}

.brands-mansory-grid-inner .brands-mansory-grid:nth-child(4) {
    grid-column: 4 / span 3;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 60%);
  backdrop-filter: blur(2px);
}

.modal.active {
  display: block;
}

.modal-content {
    display: flex;
    max-width: 70%;
    width: fit-content;
    height: 80vh;
    /* max-height: 80vh; */
    margin: auto;
    border-radius: 10px;
    position: relative;
    /* overflow: hidden; */
    /* aspect-ratio: 1 / 0.8; */
}

.modal .close {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
}

.modal-content .modal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: initial;
}

.brands-masonary-section .button-container {
    display: flex;
    justify-content: center;
}

.brands-masonary-section .button {
    font-family: var(--font-heading);
    font-size: 16px;
    padding-bottom: 14px;
}
.contact-page-section .form-control {
    background-color: #ECECEC;
    padding: 15px;
    border-radius: 10px;
    border: none;
}

.contact-page-section .form-control::placeholder {
    font-family: "Anek Kannada", sans-serif;
    font-size: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info-grid .icon {
    width: 30px;
    display: inline-flex;
    justify-content: right;
    padding-top: 5px;
}

.contact-info-grid .info {
    width: calc(100% - 50px);
}

.contact-info-grid .info p {
    font-family: "Anek Kannada", sans-serif;
    font-size: 21px;
    line-height: 28px;
}

.contact-info-grid .info h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 600;
    color: #405659;
    font-family: var(--font-body);
}

.contact-info-grid .info sub {
    font-size: 21px;
    transform: translateY(-4px);
    display: inline-block;
}

.contact-info-container {
    padding-left: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-page-section .form-button .button {
    width: 40%;
    justify-content: center;
    border-radius: 50px;
}

.progress-wrapper {
  position: relative;
  /* width: 80%; */
  height: 10px;
  background: #ddd;
  border-radius: 5px;
  overflow: visible;
}

.progress-bar {
  position: absolute;
  height: 100%;
  width: 0%;
  background: #405659;
  border-radius: 5px;
  top: 0;
  left: 0;
  transform-origin: left;
}

.dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #ddd;
  border-radius: 50%;
  border: 3px solid #EAEEF1;
  transition: background 0.3s ease;
}

.dot.active {
  background: #405659;
}

#progress-section {
    width: 90%;
    margin-inline: auto;
    margin-top: 30px;
}

.timeline-grid-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    text-align: center;
    gap: 40px;
    padding-top: 30px;
}

.timeline-grid {
    opacity: 0.3;
    transition: 0.3s;
}

.timeline-grid.active {
    opacity: 1;
}

.timeline-grid .content p {
    font-family: "Anek Kannada", sans-serif;
    font-size: 18px;
    padding-inline: 35px;
    /*color: #000;*/
    font-weight: 300;
}

.timeline-grid .content h3 {
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 10px;
    color: #405659;
}

.timeline-grid .icon {
    margin-bottom: 15px;
}

.teams-modal {
    background: rgba(6, 8, 9, 0.3);
}

.teams-modal .modal-content {
    max-width: initial;
    max-height: initial;
    margin: initial;
    border-radius: initial;
    aspect-ratio: initial;
    height: 100%;
}

.teams-modal .modal-inner {
    position: relative;
    max-width: 1150px;
    height: 80vh;
    margin: auto;
    border-radius: 10px;
    overflow-y: hidden;
    background-color: #fff;
    padding: 20px;
}

.team-modal-content {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    /* align-items: center; */
    height: 100%;
}

.team-modal-content .image {
    width: calc(35% - 15px);
    border-radius: 10px;
    overflow: hidden;
    position: sticky;
    top: 0;
}

.team-modal-content .content {
    width: calc(60% - 30px);
    padding-top: 30px;
    padding-bottom: 50px;
    display: inline-flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    overflow-y: scroll;
}

.modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 10px;
    filter: drop-shadow(10px 10px 40px rgba(0, 0, 0, 0.1));
    border-radius: 5px;
    display: flex;
    background: linear-gradient(136.64deg, rgba(230, 230, 230, 0.3) -1.49%, rgba(215, 215, 215, 0.3) 103.6%);
    backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 1;
}

.teams-modal .description {
    font-weight: 300;
}

.team-modal-content .content::-webkit-scrollbar-track {
  background: #fff0; 
}

.md-growth-section .section-head::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(54, 69, 79, 1);
    opacity: 0.8;
}

.md-growth-section .image {
    width: 30%;
}

.md-growth-section .section-head > * {
    position: relative;
}

.md-growth-section .section-head .description {
    margin-top: 15px;
}

.join-us-section {
    background-color: #36454f;
    padding: 25px 0 35px;
    color: #fff;
}

.join-us-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.join-us-section .section-head {
    padding-bottom: 0;
    max-width: calc(100% - 300px);
}

.join-us-section .section-head h2 {
    margin-bottom: 0;
    color: #fff;
}

.join-us-section .button-container {
    margin-top: 0;
}

.join-us-section .button-container .button {
    color: var(--color-dark);
    background: #fff;
}

.women-wear-grid .image {
    aspect-ratio: 1 / 1.2;
}

.women-wear-grid .image img {
    object-fit: cover;
}

.about-contact-us-section .contact-form .form {
    width: 70%;
}

.about-contact-us-section .contact-form {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.about-contact-us-section .section-head {
    padding-bottom: 0;
}

.thumbs-slider-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #fff;
    display: flex;
    padding: 3px 20px 0;
    border-radius: 10px;
    font-family: "Anek Kannada", sans-serif;
    align-items: center;
    justify-content: center;
    line-height: normal;
    font-size: 18px;
    font-weight: 500;
}

@media only screen and (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .projects-slider-container {
      height: 800px; 
    }
    
    .projects-slider-container .projects-slider {
        padding-top: 11rem;
    }

}

@media only screen and (max-width: 769px) {
  .home-projects-section .project-image-grid .content h2,
  .inner-banner-section .content h2 {
    font-size: 35px;
    text-align: center;
  }

  .home-projects-section .project-image-grid .content p,
  .inner-banner-section .content p {
    text-align: center;
    font-size: 16px;
  }

  .home-projects-section .project-image-grid .content {
    padding-inline: 20px;
  }

  .projects-slider-container .projects-slider {
    padding-top: 10rem;
    padding-inline: 10px;
  }

  .fashion-growth-section .section-head {
    max-width: 100%;
  }

  .growth-grids {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-grid h3 {
    font-size: 45px;
  }

  .md-growth-section .image {
    width: 100%;
    max-height: 80vh;
  }

  .md-growth-section .section-head {
    width: 100%;
    padding-inline: 20px;
  }

  .why-overseas-grids {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .contact-us-section .section-head {
    width: 100%;
    text-align: center;
  }

  .contact-us-section .contact-form {
    width: 100%;
  }

  .contact-us-section .form-button button {
    width: 100%;
    justify-content: center;
  }

  .footer .footer-logo {
    width: 100%;
  }

  .footer .footer-content {
    width: 100%;
    padding-top: 30px;
  }

  .footer-nav.footer-contact-info {
    width: 100%;
    padding-top: 30px;
  }

  .projects-slider-container {
    height: auto;
    max-height: 100vh;
  }

  .inner-banner-section {
    padding-inline: 10px;
    height: 80vh;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .mission-vision-section .tabs {
    width: 100%;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    top: 0;
    position: relative;
  }

  .mission-vision-section .tabs .tab button {
    width: 100%;
    padding-inline: 25px;
  }

  .teams-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .our-core-section .teams-container .team-grid {
        width: calc((100% / 2) - 12px);
    }

  .gallery-container .thumbs-slider .swiper-slide {
    height: auto;
    min-height: 280px;
  }

  .our-infrastructure-section .section-head,
  .our-infrastructure-section .gallery-container {
    max-width: 100%;
  }

  .mission-vision-section .tabs-container {
    width: 100%;
    padding: 40px 0 0;
  }

  .mission-vision-section .value-grids {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .mission-vision-section .tab-content.single-grid .value-grid {
    padding: 30px 20px;
  }

  .capabilites-section .tabs .tab button {
    width: 250px;
    padding-inline: 20px;
  }

  .capabilites-section .tabs {
    gap: 10px;
    flex-wrap: initial;
    overflow-x: scroll;
    justify-content: flex-start;
  }

  .innovative-card .image,
  .innovative-card .content {
    width: 100%;
  }

  .innovative-card .content {
    padding: 20px;
  }

  .innovative-card {
    gap: 0px;
  }
  
  .thumbs-slider-tag {
      font-size: 16px;
      padding-inline: 15px;
  }
}