@font-face {
  font-family: "Figtree";
  src: url("../font/Figtree-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}
@font-face {
  font-family: "Figtree";
  src: url("../font/Figtree-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
}

:root {
  --white-color: #ffffff;
  --primary-color: #111827;
  --secondary-color-200: #cbb77e;
  --secondary-color: #b89d64;
}

* {
  box-sizing: border-box;
}

html {
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  color: var(--primary-color);
}

body {
  margin: 0;
  padding: 0;
  position: relative;
}

h1,
h4 {
  font-family: "Times New Roman", serif;
}

h4 {
  font-size: 2.5rem;
  color: var(--white-color);
  margin-bottom: 1rem;
  line-height: 1.1;
}

p {
  line-height: 1.7em;
}

section {
  padding: 2rem 0;
}

.container {
  max-width: 1470px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.two-cols {
  display: flex;
  flex-direction: column;
}

.two-cols .left-col,
.two-cols .right-col {
  width: 100%;
}

.two-cols .left-col {
  margin-bottom: 1rem;
  border-right: 2px solid rgba(199, 139, 61, 0.3); /* secondary color - opacity: 30% */
}

.dark {
  background-color: var(--primary-color);
  color: #dadada;
}

/* ========== Loading Overlay Start ========== */
#loadingOverlay {
  position: fixed;
  inset: 0;
  background: #111827d7;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

#loadingOverlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 125px;
  height: 125px;

  border: 4px solid #e5e5e5;
  border-top-color: #b89d64;
  border-radius: 50%;

  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* ========== Loading Overlay End ========== */

/* ========== Hero Banner Start ========== */
.hero-banner {
  height: 100vh;
  max-height: 887px;
  background-image: url(../images/hero-banner-large.png);
  background-size: cover;
  background-position-x: center;
  background-position-y: 37%;
  position: relative;
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
}

#experience-page .hero-banner {
  background-image: url(../images/experience-hero-banner.jpg);
  background-position: center 85%;
}

#approach-page .hero-banner {
  background-image: url(../images/environments.jpg);
  background-position-y: 90%;
  background-position-x: 31%;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background:
    linear-gradient(270deg, #0d254000 43.57%, #000000c2 100%),
    linear-gradient(0deg, #0d254000 43.57%, #000000c2 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-banner > * {
  position: relative;
  z-index: 2;
}

/* Header */
.page-header .container {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 1rem;
}

/* Navigation menu */
.nav-menu {
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  text-transform: uppercase;
  padding: 1rem 0;
  font-weight: 500;
  position: relative;
}

header .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 2px;
  background: var(--secondary-color);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

header .nav-link:hover::after,
header .nav-link.active::after {
  transform: scaleX(1);
}

footer .nav-link.active,
footer .nav-link:hover {
  color: var(--secondary-color);
}

li:last-child .nav-link {
  padding-right: 0;
}

.nav-link svg {
  color: var(--white-color);
}

/* Header logo */
.logo .company-name {
  font-size: 1.6rem;
  font-weight: 200;
  letter-spacing: 0.4rem;
  line-height: 1.6rem;
}

.logo .separating-line {
  height: 1.5px;
  width: 95%;
  background-color: rgb(199 139 61 / 65%);
  position: relative;
  margin: 0.75rem 0;
}

.logo .separating-line span:first-child {
  width: 10px;
  border: 1.75px solid #edaf56;
  position: absolute;
  left: 0;
  top: 1px;
  transform: translate(0, -50%);
}

.logo .separating-line span#star {
  background-color: var(--secondary-color);
  width: 4px;
  height: 4px;
  position: absolute;
  left: 57%;
  top: 0;
  transform: rotate(45deg) translate(0, -50%);
}

.logo .separating-line span:last-child {
  width: 5%;
  border: 1.5px solid var(--secondary-color);
  position: absolute;
  right: -5.2%;
}

.logo h6 {
  font-weight: 300;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  color: var(--white-color) !important;
}

/* Content */

.hero-banner .container:has(.content) {
  height: 100%;
}

#approach-page .hero-banner .content,
.hero-banner .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.hero-banner .content .container {
  margin: auto;
}

.hero-banner .content .heading {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.content-hr {
  width: 5rem;
  border: 2px solid var(--secondary-color);
}

.hero-banner .content .subheading {
  font-weight: 400;
  font-size: 1rem;
  margin: 1rem 0;
}
/* ========== Hero Banner End ========== */

/* ========== About Start ==========  */
/* Left col content */
#approach-description .two-cols .left-col,
#about .two-cols .left-col {
  border-bottom: 2px solid rgba(199, 139, 61, 0.3);
  border-right: none;
  margin: 0;
  padding-bottom: 2rem;
}

#approach-description .two-cols .right-col,
#about .two-cols .right-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
  padding-top: 2rem;
}

#about .two-cols .right-col .about-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#about .two-cols .right-col .about-item h6 {
  font-weight: 700;
  text-align: center;
  margin: 1rem 0;
}

#about .two-cols .right-col .about-item img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}
/* ========== About End ==========  */

/* ========== Environments Start ==========  */
#environments,
#experience {
  padding: 0;
}

#environments .image-baner {
  background-image: url(../images/environments.jpg);
  background-size: cover;
  position: relative;
  background-position: center 82%;
}

#environments .image-baner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(270deg, #0d254000 31.57%, #000000c2 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

#environments .image-baner > * {
  position: relative;
  z-index: 2;
}

#environments .image-baner .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#environments .image-baner h4 {
  margin-bottom: 3rem;
}

#environments .categories {
  background-color: #081925;
}

#environments .categories ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 1rem;
  padding: 2rem 0;
}

#environments .categories li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-right: 2px solid rgba(199, 139, 61, 0.3);
  width: 50%;
}

#environments .categories li:nth-child(2),
#environments .categories li:nth-child(4),
#environments .categories li:nth-child(6),
#environments .categories li:last-child {
  width: 50%;
  border: none;
}

#environments .categories li img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

#environments .categories .item-title {
  color: var(--white-color);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

#environments .image-carousel {
  padding: 3rem 0;
}

#environments .image-carousel .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

#environments .image-carousel .header h6 {
  text-transform: uppercase;
  color: var(--secondary-color);
  font-weight: 600;
}

#environments .image-carousel .navigator {
  display: flex;
  gap: 1.5rem;
}

#environments .image-carousel .navigator svg {
  color: var(--primary-color);
}

#environments .image-carousel .image-list {
  display: flex;
  gap: 1.5rem;
}

#environments .image-carousel .image-item {
  min-width: 210px;
  width: 210px;
}

#environments .image-carousel .image-item img {
  object-fit: cover;
  aspect-ratio: 1 /1;
  width: 100%;
  margin-bottom: 1.5rem;
}

#environments .image-carousel .image-item p {
  font-weight: 600;
}
/* ========== Environments End ==========  */

/* ========== Experience Start ==========  */
#experience {
  margin: 0;
  background-color: var(--primary-color);
  overflow: hidden;
}

#experience .left-col {
  margin: 3rem 0;
  border: none;
}

#experience .left-col .header h4 {
  position: relative;
}

#experience .left-col .header h4::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -1rem;
  bottom: 0;
  right: 0;
  height: 3rem;
  width: 2px;
  background-color: var(--secondary-color);
}

.hero-banner .content h6,
#approach-page h6,
#experience .body h6 {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

#experience .body ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

#experience .body li {
  position: relative;
  font-weight: 300;
}

#experience .body li::before {
  content: url(../images/list-item-icon.svg);
  position: absolute;
  left: -1.5rem;
}

#experience .right-col {
  height: fit-content;
}

#experience .right-col img {
  height: 100%;
  width: 100vw;
  max-width: 1500px;
  object-fit: cover;
  margin-left: -2rem;
  min-height: 300px;
}

#about button,
#experience button {
  background-color: var(--secondary-color);
  padding: 1rem 2rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 1.5rem;
  color: var(--white-color);
}

/* ========== Experience End ==========  */

/* ========== Experience List Start ==========  */
#experience-list {
  border-top: 1px solid rgb(107 123 134 / 15%);
}

#approach-page h4,
#experience-list h4 {
  color: var(--primary-color);
}

#experience-list .card {
  border-bottom: 1px solid rgb(107 123 134 / 15%);
  padding: 1.5rem 0;
}

#our-methodology .two-cols .left-col hr,
#experience-list .two-cols .left-col hr {
  margin-bottom: 1rem;
}

#experience-list .two-cols .right-col img {
  height: 115px;
  width: 100%;
  object-fit: cover;
}

#experience-list .two-cols .right-col > img:first-child {
  height: 230px;
}

/* ========== Experience List End ==========  */

/* ========== Approach Description Start ==========  */
#approach-description .right-col .item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgb(107 123 134 / 45%);
  padding: 0 1rem;
}

#approach-description .right-col .item:nth-child(2),
#approach-description .right-col .item:last-child,
#approach-description .right-col .item:nth-child(4) {
  border: none;
}

#approach-description .right-col .item h6 {
  line-height: 1;
  margin: 1rem 0;
}
/* ========== Approach Description End ==========  */

/* ========== Our Methodology Start ==========  */
#our-methodology,
#how-we-work {
  border-bottom: 1px solid rgb(107 123 134 / 15%);
}

#our-methodology .two-cols .left-col {
  width: 100%;
  margin-bottom: 2rem;
}

#our-methodology .two-cols .right-col {
  width: 100%;
  height: fit-content;
  margin: auto;
}

#our-methodology .right-col .item {
  position: relative;
  display: flex;
  flex-direction: column;
}

#our-methodology .right-col .item::after {
  content: "";
  position: absolute;
  top: 26%;
  right: -1.25rem;
  background-image: url(../images/chevron-right.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 1.25rem;
  height: 1.25rem;
}

#our-methodology .right-col .item:nth-child(2):after,
#our-methodology .right-col .item:nth-child(4):after,
#our-methodology .right-col .item:nth-child(6):after,
#our-methodology .right-col .item:last-child::after {
  background-image: none;
}

#our-methodology .right-col .item h5 {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

#our-methodology .right-col .item h6 {
  color: var(--primary-color);
}

#our-methodology .chart {
  position: relative;
  width: 150px;
  height: 150px;
}

#our-methodology .chart .text {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 2px;
}
/* ========== Our Methodology End ==========  */

/* ========== How We Work Start ==========  */
#contact-dialog .card,
#how-we-work .card {
  border: 1px solid rgb(107 123 134 / 15%);
  padding: 1.5rem 1rem;
  display: flex;
  gap: 1rem;
}

#approach-description .right-col .item img,
#contact-dialog .card img,
#how-we-work .card img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

#how-we-work .card h6 {
  line-height: 1;
  color: var(--primary-color);
}

#contact-dialog .card p,
#how-we-work .card p {
  margin-bottom: 1rem;
}

#contact-dialog .card .content-hr,
#how-we-work .card .content-hr {
  width: 2.5rem;
  border-width: 1px;
}
/* ========== How We Work End ==========  */

/* ========== Footer Start ==========  */
footer {
  background-color: var(--primary-color);
  border-top: 2px solid var(--secondary-color);
  color: var(--white-color);
  padding: 2rem 0 1rem;
  font-weight: 300;
  position: relative;
}

footer .logo .company-name {
  font-size: 1.75rem;
}

footer .logo h6 {
  font-size: 0.75rem;
  letter-spacing: 0.3rem;
  color: var(--white-color);
}

footer .grid {
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

footer .nav-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.5rem;
  row-gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

footer .nav-menu li {
  min-width: 120px;
}

footer h6 {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

footer .linkedin {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.wave-container {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1000px;
  height: 273px;
  overflow: hidden;
}

.wave-lines {
  position: absolute;
  right: -17%;
  bottom: -38%;
  width: 1000px;
  transform: rotate(326deg) scaleX(-1);
  height: 273px;
}
/* ========== Footer End ==========  */

/* ========== Mobile Menu Drawer Start ==========  */
.mobile-menu-dialog {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  max-width: none;
  max-height: none;
  width: 100vw;
  height: 100vh;
}

/* Backdrop */
.mobile-menu-dialog::backdrop {
  background: rgba(0, 0, 0, 0);
  transition: background 300ms ease;
}

.mobile-menu-dialog[open]::backdrop {
  background: rgba(0, 0, 0, 0.45);
}

/* Drawer */
.mobile-menu-content {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--primary-color);
  color: white;
  padding: 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 300ms ease;
}

/* Open state */
.mobile-menu-dialog.open .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-content .nav-menu {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}

.mobile-menu-content .nav-link {
  text-transform: uppercase;
  font-weight: 300;
  padding: 0.5rem 0;
}

.close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
}
/* ========== Mobile Menu Drawer End ==========  */

/* ========== Contact Dialog Start ==========  */
#contact-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 12px;
  padding: 0;
  width: 460px;

  opacity: 0;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

#contact-dialog.open {
  display: block;
  opacity: 1;
}

#contact-dialog::backdrop {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

#contact-dialog .card h6 {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1;
}

.dialog-content {
  padding: 2rem;
}

#contact-dialog .card {
  flex-wrap: wrap;
}

#contact-dialog img {
  width: 50%;
  object-fit: contain;
}

#contact-dialog .content {
  display: flex;
  flex-direction: column;
  min-height: fit-content;
  height: 105px;
  flex: 1;
  min-width: 175px;
}
/* ========== Contact Dialog End ==========  */

/* ========== RESPONSIVE ========= */
/* Small Screens Start */
@media (width >= 640px) {
  #environments .categories li:nth-child(1),
  #environments .categories li:nth-child(2),
  #environments .categories li:nth-child(4),
  #environments .categories li:nth-child(5) {
    width: 33.33%;
    border-right: 2px solid rgba(199, 139, 61, 0.3);
  }

  #environments .categories li:nth-child(3),
  #environments .categories li:nth-child(6),
  #environments .categories li:last-child {
    width: 33.33%;
    border: none;
  }

  /* Approach Description */
  #approach-description .right-col .item:nth-child(1),
  #approach-description .right-col .item:nth-child(2),
  #approach-description .right-col .item:nth-child(4) {
    border-right: 1px solid rgb(107 123 134 / 45%);
  }

  #approach-description .right-col .item:nth-child(3),
  #approach-description .right-col .item:last-child {
    border: none;
  }

  /* Our Methodology */
  #our-methodology .right-col .item:nth-child(3)::after {
    background-image: url(../images/chevron-right.png);
  }

  #our-methodology .right-col .item:last-child::after {
    background-image: none;
  }

  /* Footer */
  footer .grid {
    grid-template-columns: 2fr 1fr auto;
    gap: 1.5rem;
  }

  footer .company-details {
    grid-column: 1 / -1;
  }

  #contact-dialog img {
    width: 300px;
  }
}
/* Small Screens Start */

/* Medium Screens Start */
@media (width >= 768px) {
  section {
    padding: 2rem 0;
  }

  .container {
    padding: 0 2rem;
  }

  .page-header .container {
    padding: 2rem;
  }

  /* Hero banner */
  .hero-banner .content .subheading {
    font-size: 1.25rem;
    margin: 1.25rem 0;
    line-height: 1.25;
  }

  /* Header */
  .nav-menu {
    display: flex;
  }

  footer.small .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Footer */
  footer .nav-menu {
    grid-template-columns: repeat(8, 1fr);
    justify-items: center;
  }

  footer .nav-menu li {
    min-width: fit-content;
  }

  /* Environment Section */
  #environments .categories li:nth-child(1),
  #environments .categories li:nth-child(2),
  #environments .categories li:nth-child(3),
  #environments .categories li:nth-child(5),
  #environments .categories li:nth-child(6) {
    width: 25%;
    border-right: 2px solid rgba(199, 139, 61, 0.3) !important;
  }

  #environments .categories li:nth-child(4),
  #environments .categories li:last-child {
    width: 25%;
    border: none;
  }

  #experience-list .two-cols .left-col {
    width: 50%;
  }

  /* Approach Description */
  #approach-description .right-col .item:nth-child(3) {
    border-right: 1px solid rgb(107 123 134 / 45%);
  }

  /* Our Methodology */
  #our-methodology .chart {
    position: relative;
    width: 120px;
    height: 120px;
  }

  #our-methodology .right-col .item:nth-child(2)::after,
  #our-methodology .right-col .item:nth-child(5)::after,
  #our-methodology .right-col .item:nth-child(6)::after {
    background-image: url(../images/chevron-right.png);
  }

  #our-methodology .right-col .item:last-child::after {
    background-image: none;
  }
}
/* Medium Screens End */

/* Large Screens Start */
@media (width >= 1024px) {
  section {
    padding: 3rem 0;
  }

  h4 {
    margin-bottom: 1.5rem;
  }

  .container {
    padding: 0 3rem;
  }

  .page-header .container {
    padding: 3rem;
  }

  .two-cols {
    flex-direction: row;
  }

  .two-cols .left-col {
    width: 35%;
    padding-right: 3rem;
    margin-bottom: 0;
  }

  .two-cols .right-col {
    width: 65%;
  }

  /* Hero banner */
  .hero-banner::before {
    background:
      linear-gradient(270deg, #0d254000 43.57%, #000000c2 100%),
      linear-gradient(0deg, #0d254000 43.57%, #000000c2 100%);
  }

  .hero-banner .content .subheading {
    font-size: 1.5rem;
    margin: 1.5rem 0;
    line-height: 1.5;
  }

  .hero-banner .content {
    width: 40%;
  }

  #approach-page .hero-banner .content {
    width: 70%;
  }

  .hero-banner .content .heading {
    font-size: 4.8rem;
  }

  /* Header */
  .nav-menu {
    gap: 3rem;
  }

  .logo .company-name {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }

  .logo h6 {
    letter-spacing: 0.32rem;
    font-size: 1rem;
  }

  /* About Section */
  #approach-description .two-cols .left-col,
  #about .two-cols .left-col {
    border-bottom: none;
    border-right: 2px solid rgba(199, 139, 61, 0.3);
    margin: 0;
    padding-bottom: 0;
  }

  #approach-description .two-cols .right-col {
    padding: 0;
  }

  #about .two-cols .right-col {
    padding-top: 0;
    padding-left: 3rem;
  }

  /* Environments */
  #environments .categories ul {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }

  #environments .categories li:nth-child(1),
  #environments .categories li:nth-child(2),
  #environments .categories li:nth-child(3),
  #environments .categories li:nth-child(5),
  #environments .categories li:nth-child(6),
  #environments .categories li:nth-child(7) {
    width: 100%;
  }

  #environments .categories li:nth-child(4) {
    border-right: 2px solid rgba(199, 139, 61, 0.3);
    width: 100%;
  }

  /* Home Experience Section */
  #experience .right-col img {
    position: absolute;
    margin: 0;
  }

  #experience-page section {
    padding: 1.5rem 0;
  }

  /* Our Methodology */
  #our-methodology .two-cols .left-col hr,
  #experience-list .two-cols .left-col hr {
    margin-bottom: 2rem;
  }

  #our-methodology .two-cols .left-col,
  #experience-list .two-cols .left-col {
    width: 30%;
    margin: 0;
  }

  #our-methodology .two-cols .right-col,
  #experience-list .two-cols .right-col {
    width: 70%;
  }

  /* Our Methodology */
  #our-methodology .right-col .item:nth-child(4)::after {
    background-image: url(../images/chevron-right.png);
  }

  #our-methodology .right-col .item:last-child::after {
    background-image: none;
  }

  /* Footer */
  footer .grid {
    grid-template-columns: auto 3.5fr 1fr auto;
  }

  footer .company-details {
    grid-column: 1;
  }

  #contact-dialog {
    width: max-content;
  }
}
/* Large Screens End */

/* Extra Large Screens End */
@media (width >= 1280px) {
  #approach-page .hero-banner .content {
    width: 50%;
  }

  #our-methodology .two-cols .left-col,
  #experience-list .two-cols .left-col {
    width: 25%;
  }

  #our-methodology .two-cols .right-col,
  #experience-list .two-cols .right-col {
    width: 75%;
  }

  footer.small .grid {
    grid-template-columns: 30% 60%;
    justify-content: space-between;
  }

  footer.small .logo .company-name {
    font-size: 1.6rem;
    line-height: 1.5rem;
  }

  footer.small .logo h6 {
    font-size: 0.75rem 12px;
    letter-spacing: 0.2rem;
  }

  /* Our Methodology Section */
  #our-methodology .chart {
    width: 150px;
    height: 150px;
    margin-top: 13px;
  }

  /* Footer */
  footer .grid {
    grid-template-columns: 35% 2fr 1fr auto;
  }

  footer .nav-menu {
    gap: 1rem;
  }
}
/* Extra Large Screens End */
