@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html,
body {
  height: 100%;
  width: 100%;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Source Serif 4", serif;
  font-size: 12px;
  overflow-x: hidden;
  line-height: 1.5;
  background: #fff;
}
a,
button,
input,
select,
textarea {
  font-family: inherit;
  color: inherit;
  text-decoration: none;
  border: none;
  background: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}
img {
  width: 100%;
  height: 100%;
  display: block;
}
ul {
  list-style: none;
}
.scroll-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #153556;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: #444;
  transform: translateY(-4px);
}

/* 
==============
HOME PAGE
==============
*/

/* HERO and NAV */
.home-hero {
  background: url("./assets/home-hero-bg.jpg") center/cover no-repeat;
}
.about-hero {
  background: url("./assets/about-hero.jpg") center/cover no-repeat;
}
.project-hero {
  background: url("./assets/projects-hero.jpg") center/cover no-repeat;
}
.contact-hero {
  background: url("./assets/contact-hero.jpg") center/cover no-repeat;
}
.hero-container {
  background: #001e5980;
}
.about-hero .hero-container,
.contact-hero .hero-container {
  background: #00132699;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
.nav-logo {
  display: flex;
  gap: 23px;
}
.nav-logo .logomark {
  max-width: 55px;
  flex-shrink: 0;
  align-self: center;
}
.nav-logo .logotxt {
  max-width: 51.82px;
  flex-shrink: 0;
  align-self: center;
}
.nav-logo span {
  
  width: 2px;
  height: 90px;
  background: linear-gradient(to top, #ffe3a6 24.76%, #bb8a24 99.01%);
  flex-shrink: 0;
}
.nav-open {
  display: inline-block;
  font-size: 1.5rem;
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}
.nav-menu {
  background: #153556;
  position: fixed;
  top: 0;
  right: -200%;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 20px;
  padding: 20px;
  color: #e7e5e4;
  max-width: 400px;
  transition: all 0.7s ease;
  z-index: 2000;
}
.nav-menu.active {
  right: 0;
}
.nav-menu ul {
  display: grid;
  gap: 20px;
}
.nav-menu ul a {
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
.nav-menu ul .active a {
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-tel,.nav-mail {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-tel span ,.nav-mail span {
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
}
.nav-tel p ,.nav-mail p {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 2;
  text-align: center;
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-close {
  font-size: 1.5rem;
  display: inline-block;
  margin-inline: auto 0;
  cursor: pointer;
}
.hero-content-cont {
  padding-block: 150px 40px;
}
.hero-content {
  display: grid;
  padding: 20px 40px;
}
.hero-content h1 {
  font-weight: 500;
  font-size: 42px;
  text-transform: capitalize;
  line-height: 1.1;
  letter-spacing: 0;
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.hero-text {
  display: grid;
  gap: 30px;
}
.hero-text p {
  font-size: 16px;
  text-transform: capitalize;
  line-height: 1.4;
  letter-spacing: 0;
  color: #d7d3d0;
}
.hero-btn {
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  color: #153556;
  font-size: 14px;
  text-transform: capitalize;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  display: inline-block;
  max-width: fit-content;
}
.hero-cont-line {
  display: none;
  width: 2px;
  flex-shrink: 0;
  min-height: 100%;
  background: linear-gradient(to top, #ffe3a6 24.76%, #bb8a24 99.01%);
}

/* Home ABout */
.home-about {
  display: grid;
  gap: 20px;
}
.home-about-content {
  color: #153556;
  padding: 40px;
  display: grid;
  gap: 10px;
}
.home-about-title p {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 500;
}
.home-about-title h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}
.home-about-content > p {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
}
.home-about-img {
  max-width: 785px;
  margin-inline: auto;
}
.home-about-line {
  display: none;
  width: 1px;
  height: 100%;
  background: #bb8a24;
}
/* Banner */
.banner-cont {
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  padding: 40px;
  padding-bottom: 0;
}
.banner {
  display: grid;
  gap: 29px;
  text-align: center;
  overflow-y: hidden;
}
.banner p {
  max-width: 880px;
  margin-inline: auto;
  color: #542c0d;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
}
.banner h3 {
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;

  text-transform: uppercase;
  margin-bottom: -10px;
  width: fit-content;
  margin-inline: auto;
}
/* HOME PROJECTS */
.home-proj-sect {
  padding-block: 40px;
  display: grid;
  gap: 20px;
}
.home-pro-h {
  padding-inline: 40px;
  width: 100%;
}
.home-pro-h h2 {
  color: #153556;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}
.home-pro-h div {
  display: none;
  height: 2px;
  width: 100%;
  background: linear-gradient(to left, #ffe3a6 24.76%, #bb8a24 99.01%);
  flex-grow: 1;
}
.home-projects {
  padding-inline: 40px;
  overflow-y: auto;
  display: flex;
  gap: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.home-projects::-webkit-scrollbar {
  display: none;
}
.home-projects .home-proj-cont:nth-child(1) {
  background: url("./assets/home-project1.jpg") center/cover no-repeat;
}
.home-projects .home-proj-cont:nth-child(2) {
  background: url("./assets/home-project2.png") center/cover no-repeat;
   background-position: center 30%;
}
.home-projects .home-proj-cont:nth-child(3) {
  background: url("./assets/home-project3.png") center/cover no-repeat;
  background-position: top left;
  background-size: 140%;
}
.home-projects .home-proj-cont:nth-child(4) {
  background: url("./assets/home-project4.png") center/cover no-repeat;
}

.home-proj-cont {
  padding: 20px 30px;
  display: inline-block;
  width: 90%;
  max-width: 1200px;
  min-height: 300px;
  flex-shrink: 0;
}
.home-proj {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #153556;
}
.home-proj-title {
  display: grid;
  gap: 4px;
}
.home-proj-title h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}
.home-proj-title p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 8px;
  line-height: 1;
  text-transform: uppercase;
}
.home-pro-hr {
  height: 100%;
  width: 1px;
  background: #153556;
  display: none;
}
.home-proj-p {
  font-weight: 500;
  font-size: 10px;
  line-height: 1.4;
}
.home-proj-btn {
  border: 1px solid #153556;
  border-radius: 4px;
  padding: 10px;
  width: fit-content;
  pointer-events: none;
  font-size: 10px;
}
/* VISIONARIES */
.vision-sect {
  background: #2b3130;
  position: relative;
  padding-block: 40px;
  display: grid;
  gap: 20px;
}
.vision-bg {
  background-image: url("./assets/vision-bg.png");
  background-repeat: repeat;
  background-position: center;
  background-size: 400px;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.08;
  inset: 0;
  z-index: 10;
}

.vision-h {
  padding-inline: 40px;
  position: relative;
  z-index: 100;
}
.vision-h h2 {
  width: fit-content;
  background: linear-gradient(to right, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}
.vision-h div {
  display: none;
  height: 2px;
  width: 100%;
  background: linear-gradient(to left, #ffe3a6 24.76%, #bb8a24 99.01%);
  flex-grow: 1;
}
.visionaries {
  position: relative;
  z-index: 100;
  padding-inline: 40px;
  display: grid;
  gap: 20px;
}
.vision-card {
  display: grid;
  gap: 20px;
}
.vision-img {
  max-width: 560px;
  justify-self: center;
}

.vision-img-2 {
  max-width: 450px !important;
}

.about-vision-sect .vision-img {
  max-width: 480px;
}

.vision-img img {
  object-fit: contain;
}
.vision-content h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  width: fit-content;
  margin-bottom: 10px;
}
.vision-content h4 {
  color: #d0d5dd;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 30px;
}
.vision-content p {
  color: #d0d5dd;
  font-size: 14px;
}
/* WHY */
.why-sect {
  padding: 40px;
  display: grid;
  gap: 20px;
}

.why-h h2 {
  color: #153556;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}
.why-h div {
  display: none;
  height: 2px;
  width: 100%;
  background: linear-gradient(to left, #ffe3a6 24.76%, #bb8a24 99.01%);
  flex-grow: 1;
}
.why-cards {
  display: grid;
}
.why-cards .why-card:nth-child(1) {
  background: url("./assets/why-img1.jpg") center/cover no-repeat;
}
.why-cards .why-card:nth-child(2) {
  background: url("./assets/why-img2.jpg") center/cover no-repeat;
}
.why-cards .why-card:nth-child(3) {
  background: url("./assets/why-img3.jpg") center/cover no-repeat;
}
.why-cards .why-card:nth-child(4) {
  background: url("./assets/why-img4.jpg") center/cover no-repeat;
}
.why-cards .why-card:nth-child(5) {
  background: url("./assets/why-img5.jpg") center/cover no-repeat;
}

.why-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  min-height: 300px;

  display: flex;
  align-items: flex-end;
}
.why-content {
  padding: 40px 20px;
  display: flex;
  gap: 10px;
}
.why-content h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.why-content h3 span {
  font-size: 14px;
}
.why-content > span {
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  width: 1px;
  min-height: 100%;
  display: inline-block;
  flex: 1 0 auto;
  align-self: stretch;
}
.why-content p {
  color: #f5f5f4;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0;
}
/* CTA */
.cta-sect {
  background: #153556;
  padding: 40px;
}
.cta-content {
  display: grid;
  gap: 20px;
}
.cta-content h2 {
  color: #d7d3d0;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
.cta-cards {
  max-width: 1006px;

  display: grid;
  gap: 40px;
}
.cta-card {
  display: grid;
  gap: 4px;
}
.cta-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  width: fit-content;
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.cta-card p {
  color: #e7e5e4;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
}
.cta-hr {
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  width: 1px;
  min-height: 100%;
  flex-shrink: 0;
  display: none;
}
/* FOOTER */
.footer {
  display: grid;
  gap: 20px;
  padding: 40px ;
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: #d7d3d0;
}
.footer-bottom {
  color: #79716b;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0;
}
.footer-logo {
  display: flex;
  gap: 23px;
}
.footer-logo .footer-logomark {
  max-width: 55px;
  flex-shrink: 0;
  align-self: center;
}
.footer-logo .footer-logotxt {
  max-width: 51.82px;
  flex-shrink: 0;
  align-self: center;
}
.footer-logo span {
  width: 2px;
  min-height: 100%;
  background: #153556;
  flex-shrink: 0;
}
.footer-copy {
  color: #153556;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0;
}
.footer-brand {
  display: grid;
  gap: 20px;
}
.footer-quote {
  color: #153556;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}
.footer-contact-link {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-contact-link a {
  color: #bb8a24;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}
.footer-contact-l {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-contact-hr {
  background: #bb8a24;
  width: 1px;
  min-height: 100%;
  display: none;
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials li {
  max-width: 40px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* 
================
ABOUT PAGE
===============
 */
/* OVERVIEW */
.overview-sect {
  background: linear-gradient(180deg, #d9f2ff 0%, #fffef5 57.46%);
  padding: 40px;
  display: grid;
  gap: 20px;
}
.overview-content {
  display: grid;
  gap: 20px;
}
.overview-title {
  max-width: 810px;
  margin-inline: auto;
  display: grid;
  gap: 20px;
  text-align: center;
}
.overview-text {
  max-width: 1008px;
  margin-inline: auto;
  color: #153556;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
}
.overview-title p {
  color: #153556;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
}
.overview-title h2 {
  color: #153556;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}
.overview-cards {
  display: grid;
}
.overview-cards .overview-card:nth-child(1) {
  background: #805e19;
}
.overview-cards .overview-card:nth-child(2) {
  background: #153556;
}
.overview-cards .overview-card:nth-child(3) {
  background: #0f263d;
}

.overview-card {
  position: relative;
}
.overview-bg {
  background-image: url("./assets/vision-bg.png");
  background-repeat: repeat;
  background-position: center;
  background-size: 400px;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.08;
  inset: 0;
  z-index: 10;
}
.overview-card-content {
  position: relative;
  z-index: 100;
  padding: 40px 30px;
  display: grid;
  gap: 30px;

  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  color: #d7d3d0;
}
.overview-cards .overview-card:nth-child(3) .overview-card-content {
  line-height: 2;
}
.overview-card-content h3 {
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  width: fit-content;
  justify-self: center;
}
/* SUSTAIN SECTION */
.sustain-sect {
  padding: 40px ;
  display: grid;
  gap: 20px;
}

.sustain-h h2 {
  color: #153556;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}
.sustain-h div {
  display: none;
  height: 2px;
  width: 100%;
  background: linear-gradient(to left, #ffe3a6 24.76%, #bb8a24 99.01%);
  flex-grow: 1;
}
.sustain-p {
  color: #153556;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}
.sustain-cards {
  display: grid;
}
.sustain-cards .sustain-card:nth-child(1) {
  background: url("./assets/sustain-img1.png") center/cover no-repeat;
}
.sustain-cards .sustain-card:nth-child(2) {
  background: url("./assets/sustain-img2.jpg") center/cover no-repeat;
}
.sustain-cards .sustain-card:nth-child(3) {
  background: url("./assets/sustain-img3.png") center/cover no-repeat;
}

.sustain-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  min-height: 300px;

  display: flex;
  align-items: flex-end;
}
.sustain-content {
  padding: 40px 20px;
  display: grid;
  gap: 10px;
}
.sustain-content h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.sustain-content p {
  color: #f5f5f4;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0;
}
/* ACCOUNTABILITY SECTION */
.account-sect {
  padding: 40px;
  display: grid;
  gap: 20px;
  background: linear-gradient(90deg, #fff7e0 0%, #fbffee 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
}
.account-h {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}
.account-h h2 {
  color: #153556;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}
.account-h div {
  height: 2px;
  width: 100%;
  background: linear-gradient(to left, #ffe3a6 24.76%, #bb8a24 99.01%);
}
.account-p {
  color: #153556;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}
.account-cards {
  display: grid;
  gap: 20px;
}
.account-cards .account-card:nth-child(1) {
  background: url("./assets/account-img1.jpg") center/cover no-repeat;
}
.account-cards .account-card:nth-child(2) {
  background: url("./assets/account-img2.jpg") center/cover no-repeat;
}

.account-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  min-height: 300px;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.account-content {
  padding: 40px 20px;
  display: grid;
  gap: 10px;
}
.account-content h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.account-content p {
  color: #f5f5f4;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0;
}

/* 
================
CONTACT
===============
 */
/* CONTACT INFO */
.contact-info {
  padding: 40px ;
}
.contact-info-header,
.contact-info-divider,
.contact-info-content,
.visit-us {
  max-width: 1008px;
  margin-inline: auto;
}
.contact-info-header h2,
.contact-locations h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #153556;
}
.contact-info-header {
  display: grid;
  gap: 20px;
}
.contact-info-header h2 {
  text-align: center;
}
.contact-info-header p,
.visit-us {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  color: #153556;
}
.contact-info-content {
  display: grid;
  gap: 10px;
}
.visit-us h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-info-divider {
  margin-block: 40px;
}
.contact-info-divider,
.location-divider {
  background: #d7d3d0;
  width: 100%;
  height: 1px;
}
.contact-image {
  max-width: 200.29px;
  margin-inline: auto;
}
.contact-locations {
  display: grid;
  gap: 20px;
}
.location {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  color: #153556;
  font-weight: 600;
}
.location h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
}
.location a {
  color: #bb8a24;
  display: block;
}
.visit-us {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid #d7d3d0;
}
.visit-btn {
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  border-radius: 8px;
  padding: 10px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  color: #153556;
  display: inline-block;
  max-width: fit-content;
}
/* CONTACT FORM */
.contact-form {
  padding: 40px ;
  background: linear-gradient(90deg, #fff7e0 0%, #fbffee 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}
.contact-form-header h2 {
  color: #153556;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}
.contact-form-header div {
  height: 2px;
  width: 100%;
  background: linear-gradient(to left, #ffe3a6 24.76%, #bb8a24 99.01%);
}
.contact-form-header p {
  color: #153556;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}
.form-enquiry {
  display: grid;
  gap: 20px;
  flex-grow: 1;
}
.form-enquiry label {
  color: #153556;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}
.form-enquiry .form-group {
  display: grid;
  gap: 10px;
}
.form-enquiry input,
.form-enquiry select {
  padding: 10px;
  border: 1px solid #d7d3d0;
  border-radius: 8px;
  width: 100%;
  background: #ffffff;
}

.form-enquiry input:focus,
.form-enquiry select:focus,
.form-enquiry input:active,
.form-enquiry select:active {
  border-color: #bb8a24;
  outline: none;
}
.form-enquiry input::placeholder,
.form-enquiry select {
  color: #a9a29d;
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.4;
}
.contact-form-btn {
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  border-radius: 8px;
  padding: 10px;
  width: fit-content;
  color: #153556;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.4;
  cursor: pointer;
}
/* 
===============
PROJECTS
================
 */
.proj-cta {
  padding: 40px ;
  display: grid;
  gap: 20px;
}
.proj-cta-div,
.proj-cta-content {
  max-width: 1008px;
  margin-inline: auto;
}
.proj-cta-div {
  background: #d7d3d0;
  width: 100%;
  height: 1px;
}
.proj-cta-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.proj-cta-content > div {
  display: grid;
  gap: 20px;
}
.proj-cta-content h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #153556;
}
.proj-cta-content p,
.proj-cta-btn {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  color: #153556;
}
.proj-cta-btn {
  border-radius: 8px;
  padding: 10px;
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  display: inline-block;
  max-width: fit-content;
}
/* PROJECTS */
.project-sect {
  padding: 40px 40px 0 40px;
  display: grid;
  gap: 20px;
}
.project-tab {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: #153556;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
.project-tab li {
  padding: 10px 15px;
  border-radius: 98px;
  transition: all 0.3s linear;
  cursor: pointer;
}
.project-tab li.active {
  background: #153556;
  color: #fff;
}
.project-card {
  display: grid;
  gap: 20px;
  min-height: 810px;
}
.project-img {
  padding-bottom: 60px;
  background: url("./assets/vision-bg.png");
  background-repeat: repeat;
  background-size: 300px;
  max-height: 810px;
}
.project-img img {
  object-fit: cover;
}
.project-content {
  display: grid;
  gap: 20px;
  color: #153556;
  align-self: flex-start;
}
.project-label {
  border: 1px solid #153556;
  border-radius: 4px;
  padding: 10px 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  width: fit-content;
}
.project-title {
  display: grid;
  gap: 20px;
  font-family: "Montserrat", sans-serif;
}
.project-title h2 {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}
.project-title p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}
.project-p,
.project-card ul,
.project-card h3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}
.project-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
.project-card ul {
  list-style: disc;
  padding-left: 30px;
  display: grid;
  gap: 20px;
}
.project-card ul span {
  font-weight: 700;
}
.project-hr {
  width: 100%;
  height: 1px;
  background: #d7d3d0;
}
.commercial-info {
  display: grid;
  gap: 80px;
}

.residential-info .project-card {
  margin-bottom: 60px;
}
.key-highlight {
  background: #0f263d;
  display: grid;
  gap: 20px;
  padding: 40px 20px;
  margin-bottom: 60px;
}
.key-highlight ul {
  display: grid;
  gap: 20px;
}

.key-highlight ul p {
  color: #a9a29d;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}
.key-highlight ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.key-highlight ul li span {
  font-size: 18px;
  font-weight: 400;
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.key-highlight ul li div {
  display: grid;
  gap: 10px;
}
.key-highlight ul h3 {
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.2;
  font-weight: 400;
}
.key-hl-title h2 {
  background: linear-gradient(to left, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}
.key-hl-title div {
  display: none;
  height: 2px;
  width: 100%;
  background: linear-gradient(to left, #ffe3a6 24.76%, #bb8a24 99.01%);
  flex-grow: 1;
}
/* LOCATION ADVANTAGES SECTION */
.locAdv-sect {
  display: grid;
  gap: 20px;
}

.locAdv-h h2 {
  color: #153556;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}
.locAdv-h div {
  display: none;
  height: 2px;
  width: 100%;
  background: linear-gradient(to left, #ffe3a6 24.76%, #bb8a24 99.01%);
  flex-grow: 1;
}

.locAdv-cards {
  display: grid;
}
.locAdv-cards .locAdv-card:nth-child(1) {
  background: url("./assets/location1.jpg") center/cover no-repeat;
}
.locAdv-cards .locAdv-card:nth-child(2) {
  background: url("./assets/location2.png") center/cover no-repeat;
}
.locAdv-cards .locAdv-card:nth-child(3) {
  background: url("./assets/location3.jpg") center/cover no-repeat;
}

.locAdv-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  min-height: 300px;

  display: flex;
  align-items: flex-end;
}
.locAdv-content {
  padding: 40px 20px;
  display: grid;
  gap: 10px;
}
.locAdv-content h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  background: linear-gradient(90deg, #ffe3a6 24.76%, #bb8a24 99.01%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.locAdv-content p {
  color: #f5f5f4;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0;
}
/* Tablet  */
@media screen and (min-width: 768px) {

  .nav-logo span {
    display: inline-block;
  }
  .nav-logo .logotxt {
    display: inline-block;
  }
  .nav-logo .logomark {
    max-width: 85px;
  }
  .hero-content h1 {
    font-size: 45px;
    margin-bottom: 0;
  }
  
  .hero-text p {
    font-size: 20px;
  }
  .hero-btn {
    font-size: 18px;
    padding: 14px;
  }
  .home-about-title p {
    font-size: 16px;
  }
  .home-about-title h2 {
    font-size: 24px;
  }
  .home-about-content > p {
    font-size: 16px;
  }
  .banner-cont {
    padding: 60px 48px;
    padding-bottom: 0;
  }
  .banner p {
    font-size: 24px;
  }
  .banner h3 {
    font-size: 54px;
    letter-spacing: 7px;
    margin-bottom: -24px;
  }
  .home-pro-h {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-inline: 40px;
  }
  .home-pro-h h2 {
    font-size: 30px;
    flex-shrink: 0;
  }
  .home-pro-h div {
    display: inline-block;
  }
  .home-projects {
    padding-inline: 40px;
  }
  .home-proj-sect {
    gap: 40px;
  }
  .home-proj-cont {
    padding: 40px 60px;
  }

  .home-proj {
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  .home-proj-p {
    align-self: flex-start;
    max-width: 200px;
  }

  .home-pro-hr {
    display: inline-block;
    height: 48px;
  }
  .home-proj-p {
    font-size: 16px;
  }
  .home-proj-btn {
    padding: 16px;
    font-size: 16px;
  }
  .home-proj-title h3 {
    font-size: 24px;
  }
  .home-proj-title p {
    font-size: 14px;
  }
  .vision-h {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-inline: 40px;
  }
  .vision-h h2 {
    font-size: 30px;
    flex-shrink: 0;
  }
  .vision-h div {
    display: inline-block;
  }
  .visionaries {
    padding-inline: 60px;
    gap: 0px;
  }
  .vision-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .visionaries .vision-card:nth-child(1) .vision-img {
    order: 2;
  }
  .visionaries .vision-card:nth-child(1) .vision-content {
    order: 1;
  }
  .about-vision-sect .vision-card {
    grid-template-columns: 1fr;
  }
  .about-vision-sect .visionaries .vision-card:nth-child(1) .vision-img {
    order: 1;
  }
  .about-vision-sect .visionaries .vision-card:nth-child(1) .vision-content {
    order: 2;
  }
  .about-vision-sect .visionaries {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .about-vision-sect .vision-card {
    display: grid;
    grid-template-rows: auto 1fr;
  }
  .vision-content {
    padding: 60px 40px;
    align-self: center;
  }
  .about-vision-sect .vision-content {
    padding-bottom: 0;
    align-self: flex-start;
  }

  .vision-content h3 {
    font-size: 24px;
  }
  .vision-content h4 {
    font-size: 24px;
    margin-bottom: 60px;
  }
  .vision-content p {
    font-size: 20px;
  }
  .why-sect {
    padding-inline: 40px;
    gap: 40px;
  }
  .why-h {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .why-h h2 {
    font-size: 30px;
    flex-shrink: 0;
  }
  .why-h div {
    display: inline-block;
  }
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-content {
    gap: 20px;
  }
  .why-content h3 {
    font-size: 24px;
  }
  .why-content h3 span {
    font-size: 19px;
  }
  .why-content p {
    font-size: 16px;
  }
  .cta-sect {
    padding: 40px;
  }
  .cta-content {
    gap: 40px;
  }
  .cta-content h2 {
    font-size: 24px;
  }
  .cta-card h3 {
    font-size: 24px;
  }
  .cta-card p {
    font-size: 16px;
  }
  .footer {
    padding: 40px;
  }
  .footer-bottom {
    font-size: 14px;
  }

  .footer-logo .footer-logomark {
    max-width: 85px;
  }
  .footer-quote {
    font-size: 24px;
  }

  .footer-contact-link a {
    font-size: 24px;
  }
  .footer-contact {
    flex-direction: row;
  }
  .footer-contact-hr {
    display: inline-block;
  }
  .footer-socials {
    flex-shrink: 0;
    align-self: flex-start;
  }
  .overview-sect {
    padding: 40px;
    gap: 40px;
  }
  .overview-content {
    gap: 40px;
  }
  .overview-title {
    gap: 40px;
  }
  .overview-text {
    font-size: 20px;
  }
  .overview-title p {
    font-size: 16px;
  }
  .overview-title h2 {
    font-size: 28px;
  }
  .overview-card-content h3 {
    font-size: 28px;
  }
  .overview-card-content {
    padding: 60px 40px;
    gap: 60px;
    font-size: 24px;
  }
  .sustain-sect {
    padding-inline: 40px;
    gap: 40px;
  }
  .sustain-h {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .sustain-h h2 {
    font-size: 30px;
    flex-shrink: 0;
  }
  .sustain-h div {
    display: inline-block;
  }
  .sustain-p {
    padding-bottom: 40px;
    font-size: 20px;
  }
  .sustain-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .sustain-content {
    gap: 20px;
  }
  .sustain-content h3 {
    font-size: 24px;
  }
  .sustain-content p {
    font-size: 16px;
  }
  .account-sect {
    padding-inline: 40px;
    gap: 40px;
  }
  .account-h {
    gap: 30px;
  }
  .account-h h2 {
    font-size: 30px;
    flex-shrink: 0;
  }
  .account-h div {
    display: inline-block;
  }
  .account-p {
    font-size: 20px;
  }
  .account-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .account-content {
    gap: 20px;
  }
  .account-content h3 {
    font-size: 24px;
  }
  .account-content p {
    font-size: 16px;
  }
  .contact-info {
    padding: 40px;
  }
  .contact-info-header h2,
  .contact-locations h3 {
    font-size: 28px;
  }
  .contact-info-header {
    gap: 40px;
  }
  .contact-info-header p,
  .visit-us {
    font-size: 20px;
  }
  .contact-info-divider {
    margin-block: 80px;
  }
  .contact-locations {
    gap: 40px;
  }
  .location {
    font-size: 20px;
  }
  .location h4 {
    margin-bottom: 40px;
  }
  .visit-us {
    padding-top: 40px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .visit-us-content {
    max-width: 704px;
    display: grid;
    gap: 20px;
  }
  .visit-btn {
    flex-shrink: 0;
    padding: 20px;
    font-size: 20px;
  }
  .contact-form {
    gap: 40px;
    padding: 40px;
  }
  .contact-form-header {
    gap: 30px;
  }
  .contact-form-header h2 {
    font-size: 30px;
    flex-shrink: 0;
  }

  .contact-form-header p {
    font-size: 20px;
  }
  .form-enquiry label {
    font-size: 20px;
  }
  .form-enquiry .form-group {
    gap: 20px;
  }
  .form-enquiry input,
  .form-enquiry select {
    padding: 20px;
  }

  .form-enquiry input::placeholder,
  .form-enquiry select {
    font-size: 20px;
  }
  .contact-form-btn {
    padding: 20px;
    font-size: 20px;
  }
  .proj-cta {
    padding: 40px;
    gap: 40px;
  }
  .proj-cta-content {
    flex-direction: row;
    gap: auto;
    justify-content: space-between;
    width: 100%;
  }
  .proj-cta-content div {
    max-width: 572px;
  }
  .proj-cta-content h3 {
    font-size: 20px;
  }
  .proj-cta-content p,
  .proj-cta-btn {
    font-size: 20px;
  }
  .proj-cta-btn {
    padding: 20px;
    flex-shrink: 0;
    align-self: flex-start;
  }
  .project-sect {
    padding: 40px 40px 0 40px;
    gap: 40px;
  }
  .project-tab {
    gap: 20px;
    font-size: 20px;
  }
  .project-tab li {
    padding: 20px;
  }
  .project-card {
    gap: 40px;
  }
  .project-content {
    gap: 40px;
  }
  .project-title h2 {
    font-size: 28px;
  }
  .project-title p {
    font-size: 20px;
  }
  .project-p,
  .project-card ul,
  .project-card h3 {
    font-size: 20px;
  }
  .project-label {
    padding: 12px 16px;
    font-size: 14px;
  }
  .commercial-info {
    gap: 80px;
  }
  .residential-info .project-card {
    margin-bottom: 60px;
  }
  .key-highlight {
    padding: 40px;
    margin-bottom: 60px;
  }
  .key-highlight ul {
    gap: 30px;
  }
  .key-highlight ul p {
    font-size: 20px;
  }
  .key-highlight ul h3,
  .key-highlight ul li span {
    font-size: 24px;
  }
  .key-hl-title {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .key-hl-title h2 {
    flex-shrink: 0;
    font-size: 28px;
  }
  .key-hl-title div {
    display: inline-block;
  }
  .locAdv-sect {
    gap: 40px;
  }
  .locAdv-h {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .locAdv-h h2 {
    font-size: 30px;
    flex-shrink: 0;
  }
  .locAdv-h div {
    display: inline-block;
  }

  .locAdv-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .locAdv-content {
    gap: 20px;
  }
  .locAdv-content h3 {
    font-size: 24px;
  }
  .locAdv-content p {
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {
  .nav-open,
  .nav-close {
    display: none;
  }
  .nav-menu {
    position: static;
    padding: 0;
    gap: 60px;
    flex-direction: row;
    flex-grow: 1;
    max-width: none;
    align-items: center;
    background: transparent;
    justify-content: flex-end;
  }
  .nav-mail{
    display: none;
  }
  .nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  .hero-btn {
    padding: 20px;
  }
  .home-about-line {
    display: inline-block;
  }
  .home-about-content {
    display: grid;
    grid-template-columns: 300px 1px 1fr;
    gap: 70px;
    padding-inline: 48px;
  }
  .home-about-title p {
    margin-bottom: 20px;
  }
  .cta-hr {
    display: inline-block;
  }
  .cta-cards {
    display: flex;
    gap: 40px;
    justify-self: center;
  }
  .overview-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .project-card {
    grid-template-columns: 1fr 1fr;
  }
  .commercial-info .project-card:nth-child(2) .project-img {
    order: 2;
  }
  .commercial-info .project-card:nth-child(2) .project-content {
    order: 1;
  }
  .contact-locations {
    margin-bottom: 100px;
  }
}
/* Laptop */
@media screen and (min-width: 1200px) {
  .hero-content h1 {
    font-size: 60px;
  }
  .hero-text {
    gap: 32px;
  }
  .hero-text p {
    font-size: 24px;
  }
  .hero-btn {
    font-size: 20px;
  }
  .hero-content-cont {
    padding-block: 354px 90px;
  }
  .hero-content {
    padding-inline: 68px;
    /* grid-template-columns: 40% 2px 1fr; */
    display: flex;
    gap: 40px;
  }
  .hero-cont-line {
    display: inline-block;
  }
  .nav-menu {
    gap: 80px;
  }
  .nav-menu ul {
    gap: 40px;
  }
  .home-about-content {
    padding-block: 120px 86px;
  }
  .home-about-title p {
    font-size: 16px;
  }
  .home-about-title h2 {
    font-size: 28px;
  }
  .home-about-content > p {
    font-size: 20px;
  }
  .home-about-content {
    padding-inline: 86px;
  }
  .banner p {
    font-size: 32px;
  }
  .banner h3 {
    font-size: 72px;
    letter-spacing: 7px;
    margin-bottom: -30px;
  }
  .banner-cont {
    padding: 60px 96px;
    padding-bottom: 0;
  }
  .home-proj-sect {
    padding-block: 100px;
  }
  .home-pro-h h2 {
    font-size: 40px;
  }
  .home-pro-h {
    padding-inline: 48px;
    gap: 60px;
  }
  .home-projects {
    padding-inline: 48px;
    gap: 40px;
  }
  .home-proj-cont {
    padding: 80px 72px;
    min-height: 750px;
  }
  .home-projects .home-proj-cont:nth-child(3) {
    background-size: 120%;
  }
  .home-proj {
    gap: 40px;
  }
  .vision-h h2 {
    font-size: 40px;
  }
  .vision-h {
    padding-inline: 48px;
    gap: 60px;
  }
  .vision-sect {
    padding-block: 100px;
    gap: 40px;
  }
  .visionaries {
    padding-inline: 80px;
  }
  .about-vision-sect .visionaries {
    gap: 40px;
  }
  .vision-content {
    padding-inline: 40px;
  }
  .about-vision-sect .vision-img {
    padding-inline: 50px;
  }
  .why-sect {
    padding-block: 60px;
    padding-inline: 48px;
  }
  .why-card-overlay {
    min-height: 470px;
  }
  .why-h h2 {
    font-size: 40px;
  }
  .why-h {
    gap: 60px;
  }
  .why-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-content {
    padding: 60px 30px;
  }
  .cta-sect {
    padding: 60px 48px;
  }
  .cta-content h2 {
    font-size: 32px;
  }
  .cta-content {
    gap: 60px;
  }
  .cta-cards {
    gap: 60px;
  }
  .footer {
    gap: 40px;
    padding: 60px 48px;
  }
  .footer-top {
    flex-direction: row;
    gap: 50px;
  }
  .footer-contact {
    gap: 40px;
  }
  .footer-contact-l {
    justify-content: space-between;
  }
  .overview-sect {
    padding: 60px 48px;
    gap: 60px;
  }
  .overview-content {
    gap: 60px;
  }
  .sustain-sect {
    padding-block: 60px;
    padding-inline: 48px;
  }
  .sustain-card-overlay {
    min-height: 470px;
  }
  .sustain-h h2 {
    font-size: 40px;
  }
  .sustain-h {
    gap: 60px;
  }
  .sustain-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .sustain-content {
    padding: 60px 30px;
  }
  .account-sect {
    padding-block: 60px;
    padding-inline: 48px;
    grid-template-columns: 30% 1fr;
  }
  .account-card-overlay {
    min-height: 470px;
  }
  .account-h h2 {
    font-size: 40px;
  }
  .account-h {
    gap: 40px;
  }

  .account-content {
    padding: 40px 30px;
  }
  .contact-info {
    padding: 60px 48px;
  }
  .contact-info-content {
    display: flex;
    gap: 40px;
  }
  .contact-locations {
    flex-grow: 1;
  }
  .contact-image {
    align-self: flex-end;
      max-width: 335.29px;
  }
  .contact-form {
    padding: 60px 48px;
    flex-direction: row;
    align-items: flex-start;
  }
  .contact-form-header h2 {
    font-size: 40px;
  }
  .contact-form-header {
    max-width: 450px;
    gap: 40px;
  }
  .form-enquiry {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
  .proj-cta {
    padding: 60px 48px;
  }
  .project-sect {
    padding: 60px 48px 0 48px;
    gap: 80px;
  }
  .project-card {
    gap: 60px;
  }
  .commercial-info {
    gap: 120px;
  }
  .residential-info .project-card {
    margin-bottom: 80px;
  }
  .key-highlight {
    gap: 40px;
    padding: 60px 40px;
    margin-bottom: 100px;
  }
  .key-highlight ul {
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }
  .key-hl-title {
    gap: 40px;
  }

  .locAdv-card-overlay {
    min-height: 470px;
  }
  .locAdv-h h2 {
    font-size: 40px;
  }
  .locAdv-h {
    gap: 60px;
  }
  .locAdv-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .locAdv-content {
    padding: 60px 30px;
  }
}

/* Desktop  */
@media screen and (min-width: 1440px) {
  nav {
    padding-top: 40px;
    padding-inline: 53.52px;
  }
  .hero-content-cont {
    padding-block: 554px 180px;
  }
  .hero-content {
    padding-inline: 136px;
  }
  .home-about-content {
    gap: 140px;
    padding-inline: 172px;
  }
  .home-about-title p {
    margin-bottom: 40px;
  }
  .home-pro-h {
    padding-inline: 96px;
  }
  .home-projects {
    padding-inline: 96px;
  }
  .vision-h {
    padding-inline: 96px;
  }
  .visionaries {
    padding-inline: 136px;
  }
  .vision-content {
    padding-inline: 40px;
  }
  .about-vision-sect .vision-content {
    padding-top: 80px;
  }
  .why-sect {
    padding-block: 120px;
    padding-inline: 96px;
  }
  .why-card-overlay {
    min-height: 770px;
  }
  .why-content {
    padding: 80px 50px;
  }

  .cta-sect {
    padding: 60px 96px;
  }
  .cta-cards {
    gap: 80px;
  }
  .footer {
    padding: 100px 96px;
  }
  .footer-top {
    gap: 100px;
  }
  .footer-contact {
    gap: 80px;
  }
  .overview-sect {
    padding: 120px 96px;
    gap: 120px;
  }
  .overview-content {
    gap: 80px;
  }
  .overview-card-content {
    padding: 80px 60px;
    gap: 60px;
  }
  .sustain-sect {
    padding-block: 120px;
    padding-inline: 96px;
  }
  .sustain-card-overlay {
    min-height: 770px;
  }
  .sustain-content {
    padding: 80px 50px;
  }
  .account-sect {
    padding-block: 120px;
    padding-inline: 96px;
    gap: 80px;
  }

  .account-content {
    padding: 40px 50px;
  }
  .contact-info {
    padding: 120px 96px;
  }
  .contact-form {
    gap: 80px;
    padding: 120px 96px;
  }
  .proj-cta {
    padding: 120px 96px;
  }
  .project-sect {
    padding: 120px 96px 0 96px;
    gap: 140px;
  }
  .project-card {
    gap: 100px;
  }
  .commercial-info {
    gap: 180px;
  }
  .residential-info .project-card {
    margin-bottom: 100px;
  }
  .key-highlight {
    gap: 60px;
    padding: 80px 60px;
    margin-bottom: 140px;
  }
  .key-highlight ul {
    column-gap: 60px;
  }
  .key-hl-title {
    gap: 60px;
  }

  .locAdv-card-overlay {
    min-height: 770px;
  }
  .locAdv-content {
    padding: 80px 50px;
  }
}
