@font-face {
  /*font-family: 'Vagnola';*/
  font-family: 'Montserrat';
  /*src: url('./assets/font/Vagnola-Regular.ttf') format('truetype');*/
  src: url('./assets/font/Montserrat-VariableFont_wght.ttf') format('truetype');
  
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Colors */
  --color-bg: #131313;
  --color-text: #e2e8f0;
  --color-white: #fff;
  --color-white-5: #FFFFFF0D;
  --color-black: #000;
  --color-black-20: #00000033;
  --color-accent: #0070FF;

  /* Spacing */
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;

  /* Font */
  /*--font-heding: 'Vagnola', sans-serif;*/
  --font-heding: 'Montserrat', sans-serif;
  --font-para: "Urbanist", sans-serif;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: var(--font-para);
    height: 100vh;
}


.container {
  max-width: 1440px;
  margin: auto;
}

.padding-global {
  padding: 0px 30px;
}

.page-wrapper-global section.sticky-section {
  position: sticky !important;
  top: 0;
}

/* Desktop */
html, body {
    height: 100%;
    overflow: hidden;
}

/* Mobile fix */
@media (max-width: 768px) {
    html, body {
        overscroll-behavior-y: contain;
    }

    #fullpage {
        touch-action: pan-y;
    }
}

#fullpage {
  position: relative;
  width: 100%;
  height: 100vh;
     overflow: hidden;
}

/* Every section: fixed, starts below viewport */
#fullpage>.section {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  transform: translateY(100%);
  will-change: transform;
  transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Sections allowed to scroll inside */
#fullpage>.section.fp-scrollable {
  overflow-y: scroll !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  height: 100vh !important;
  /* Hide scrollbar - Firefox */
  scrollbar-width: none;

  /* Hide scrollbar - IE & Edge */
  -ms-overflow-style: none;
}

#fullpage>.section.fp-scrollable::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* #fullpage > section.section.execution-section.fp-scrollable {
    overflow: visible !important;
} */
section {
  overflow-x: hidden;
}

.page-wrapper-global {
  position: relative;
  z-index: 0;
}

h1 {
  font-family: var(--font-heding);
  font-size: 100px;
  line-height: 130px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin: 0px;
}

/* HEADING */
h2 {
  font-family: var(--font-heding);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.1;
}


.btn {
  padding: 20px 30px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  background-color: var(--color-white);
  color: var(--color-black);
  min-width: 190px;
  display: inline-block;
  cursor: pointer;
  max-width: 190px;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) all 0.5s;
}

.btn:hover {
  background-color: var(--color-accent);
  letter-spacing: 2px;
  color: var(--color-white);

}

.black-btn {
  background-color: var(--color-black);
  color: var(--color-white);
}

.black-btn:hover {
  background-color: var(--color-accent);
  letter-spacing: 2px;

}

.text-size-large {
  font-size: 20px;
  line-height: 34px;
  font-weight: 500;
  color: var(--color-black);
}

.text-color-white {
  color: var(--color-white);
}


/* nav style start */
/* NAV */
.hamburger {
  width: 20px;
  height: 15px;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  left: 0;
  transition: all 0.3s ease;
}

/* Lines positioning (important fix 👇) */
.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 6.5px; /* center */
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* ACTIVE (X perfectly centered) */
.menu-btn.active .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 6.5px;
}

.menu-btn.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 6.5px;
}
/* NAV */
.main-nav-bar {
  background-color: var(--color-white-5);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  z-index: 20000;
  overflow-x: visible !important;
}

section.main-nav-bar {
  overflow-x: visible !important;
}

.nav {
  width: 100%;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  z-index: 1000;
  max-width: 1440px;
  margin: auto;
  position: relative;
  z-index: 2001;
  align-items: center;

}

.menu-btn {
  cursor: pointer;
  letter-spacing: 2px;
  font-family: var(--font-para);
  padding: 10px;
  border-radius: 5px;
  background: var(--color-accent);
  color: var(--color-white);
  line-height: 1;
}

/* OVERLAY */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: var(--color-bg);
  display: flex;
  justify-content: end;
  align-items: center;

  transform: translateY(-200vh);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);

  z-index: 2000;
  padding: 30px;
}

.menu-overlay.active {
  transform: translateY(0);
  /* top: 50px; */
}

/* MENU LINKS */
.menu-content {
  text-align: right;
  max-width: 1440px;
  width: 100%;
  margin: auto;
}

.nav-contact-box {
  position: relative;
  display: flex;
  gap: 15px;
  flex-direction: column;
  /* bottom: 56px; */
  max-width: 200px;
  margin-left: 0;
  margin-right: auto;
  margin-top: -70px;
  /* z-index: 33; */
}

.nav-contact-box a {
  text-decoration: none;
  color: var(--color-white);
  display: block;
}

.nav-link {
  display: block;
  font-size: 80px;
  text-decoration: none;
  color: var(--color-white);
  overflow: hidden;
  height: 90px;
  position: relative;
  font-family: var(--font-para);
  font-weight: 700;
  text-transform: uppercase;
}

/* WRAPPER */
.nav-link-text {
  display: block;
  position: relative;
  transition: transform 0.4s ease;
}

/* DUPLICATE TEXT */
.nav-link-text-duplicate {
  position: absolute;
  left: 0;
  top: 100%;
  display: block;
  text-align: right;
  width: 100%;
  color: var(--color-accent);
  font-family: var(--font-para);
  font-weight: 700;
  text-transform: uppercase;
}

/* HOVER EFFECT */
.nav-link:hover .nav-link-text {
  transform: translateY(-100%);
}

/* nav style end */

/* banner style start */
.banner_section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding: 120px 0px;
}

.banner_section_content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.abnner-slider-main {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 0;
  inset: 0;
}

#banner-slider .splide__slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}


/* banner style end */

/* work style start */
.work-section {
  background: var(--color-white);
  padding: 80px 0px;
  font-family: var(--font-para);
  color: var(--color-black);
  position: relative;
  /* position: sticky;
  top: 0; */
}

.work-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.work-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 30px;
}

.work-cards .execution-card .execution-card-number {
  font-size: 56px;
}

.work-cards .execution-card {
  padding: 40px;
}

.work-cards .text-size-large {
  font-size: 30px;
}

.work-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.work-container strong {
  text-transform: uppercase;
}

.work-section .btn {
  min-width: 220px;
  max-width: 220px;
}

/* work style end */


/* execution style start */
/* SECTION */
.execution-section {
  background: var(--color-white);
  padding: 80px 0px;
  font-family: var(--font-para);
  color: var(--color-black);
  /* margin-top: 120px; */
}

.banner-wave-image img {
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 160px;
}

/* TOP */
.execution-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}



/* RIGHT SIDE */
.execution-right {
  text-align: right;
}



/* DIVIDER */
.execution-line {
  width: 100%;
  height: 1px;
  background: var(--color-black-20);
  margin: 40px 0 20px 0px;
}

/* SUBTEXT */
.execution-card-title-wrapper {
  margin-bottom: 60px;
}

.execution-subtext {

  font-family: var(--font-heding);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  text-align: right;
  font-weight: 500;
}

/* CARDS */
.execution-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


/* CARD */
.execution-card {
  padding: 30px 20px;
  border: 1px solid var(--color-black-20);
  transform: skewX(-15deg);
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) all 0.5s;
}

.execution-card:hover {
  box-shadow: 5px 5px 20px #00000033;
  transform: translateY(-10px) skewX(-15deg);
}

/* FIX TEXT INSIDE */
.execution-card * {
  transform: skewX(10deg);
}

/* NUMBER */
.execution-card .execution-card-number {
  font-size: 65px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 20px;
  font-style: italic;
}


.execution-card .execution-card-number span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-left: 5px;
}

/* execution style end */

/* build style start */
/* SECTION */
.build-section {
  background: var(--color-bg);
  color: var(--color-white);
  padding: 100px 0;
  font-family: var(--font-para);
  position: relative;
  overflow: hidden;
  /* position: sticky !important; */
  top: 0;
}

.build-section-bg.mobile-show {
  display: none;
}

/* subtle grid background */
.build-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--color-white-5) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-white-5) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
}

/* container */
.build-container {
  position: relative;
  z-index: 2;
}

.build-section-bg-gradian-top {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  background-image: linear-gradient(180deg, black 49%, #00000008);
  height: 138px;
}

.build-section-bg-gradian-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background-image: linear-gradient(180deg, #00000008, black 49%);
  height: 138px;
}

/* img.build-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
img.build-bg.active {
    opacity: 1;
} */
.build-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.5s;
}

.build-bg.active {
  opacity: 1;
}

.build-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TOP TEXT */
.build-description {
  font-size: 42px;
  line-height: 1.1;
  max-width: 1200px;
  font-weight: 400;
  margin-bottom: 60px;
}

/* LABEL */
.build-label-wrapper {
  margin-bottom: 30px;
}

.build-label {
  font-size: 18px;
  color: var(--color-white);
}

/* LINE */
.build-line {
  height: 1px;
  background: var(--color-white-5);
  margin-bottom: 40px;
}

/* CARDS */
.build-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 950px;
}

/* CARD */
.build-card {
  /* height: 180px; */
  /* background: linear-gradient(180deg, #1a1a1a, #111); */
  background: var(--color-white-5);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid var(--color-black-20);
  transition: 0.3s ease;
  min-height: 220px;
  flex-direction: column;
}

.build-card p.text-size-regular.text-color-white {
  transition: all 0.5s ease-in-out;
  opacity: 0;
}

.build-card:hover p.text-size-regular.text-color-white {
  opacity: 1;
}

/* TITLE */
.build-card-title {
  font-size: 24px;
  line-height: 1.4;
}

/* HOVER */
.build-card:hover {
  background: var(--color-white-5);
  transform: translateY(-5px);
}

/* build style end */

/* who style start */
/* SECTION */
.who-section {
  background: #f5f5f5;
  padding: 120px 0;
  overflow: hidden;
  /* position: sticky;
    top: 0; */
}

/* WRAPPER */
.who-wrapper {
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

/* HEADING */
.who-heading {

  color: var(--color-bg);
  margin-bottom: 30px;
}

/* TEXT */
.who-text {
  font-size: 44px;
  line-height: 1.2;
  color: var(--color-bg);
  margin-bottom: 20px;
}

/* BUTTON */
.who-section .btn {
  margin-top: 20px;
}



/* who style end */


/* support style start */
/* support section full fix */
.support-section {
  background-color: var(--color-bg);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  /* position: sticky;
  top: 0; */
}

.support-section-bg img {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* center container */
.support-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* label */
.support-label {
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--color-white);
  margin-bottom: 40px;
  font-family: var(--font-heding);
}

/* override global h2 */
.support-heading {
  font-weight: 600;
  line-height: 1;
  color: var(--color-white);
  font-family: var(--font-heding);
  padding: 20px 8px 8px 8px;
}

.support-heading:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}

/* spacing */
.support-heading-wrapper {
  margin-bottom: 40px;
}

.support-btn-wrapper .btn {
  min-width: 270px;
}



.support-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.support-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* filter: brightness(0.5); */
  opacity: 0.5;
}


/* supprt style end */

/* team style start */
/* SECTION */
.team-section {
  background: var(--color-bg);
  padding: 100px 0;
  color: var(--color-white);
  position: relative;
      display: flex;
    flex-direction: column;
    justify-content: center;
}

.board-section {
  background: var(--color-bg);
  padding: 100px 0 100px 0px;
  color: var(--color-white);
  position: relative;
}

.board-section .team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* GRID BG */
/* .team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--color-white-5) 1px, transparent 1px),
                    linear-gradient(90deg, var(--color-white-5) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.15;
} */

/* HEADER */
.team-header {
  text-align: center;
  /* margin-bottom: 70px; */
}

.team-heading {
  font-size: 56px;
  font-family: var(--font-heding);
  line-height: 1.2;
  font-weight: 500;
}

.team-subtext {
  margin-top: 10px;
  /* color: var(--color-text); */
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 60px 0px;
}

.team-grid.team-five-card {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 0px;
}


/* CARD */
.team-section .team-card {
  background: var(--color-bg);
  /*border: 1px solid rgba(255, 255, 255, 0.2);*/
  transition: 0.3s ease;

}

.team-card {
  background: var(--color-bg);
  /*border: 1px solid #FFFFFF33;*/
  transition: 0.3s ease;

}

.team-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.team-image-wrapper {
  position: relative;
}

.team-image-wrapper img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: auto;
}

.team-five-card .team-image-wrapper img {
  width: 200px;
  height: 200px;
}

/* OVERLAY */
.team-image-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.9));*/
}

/* BADGE */
.team-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  padding: 5px 10px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 6px;
}

/* CONTENT */
.team-content {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 24px;
  margin-bottom: 5px;
}

.team-role {
  color: var(--color-accent);
  font-size: 14px;
  margin-bottom: 10px;
}

.team-section .team-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.team-desc {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 15px;
}

/* TAGS */
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-tags span {
  padding: 6px 12px;
  border: 1px solid #FFFFFF33;
  border-radius: 50px;
  font-size: 12px;
}

/* team style end */

/* sector style start */
/* SECTION */
.sector-section {
  background: var(--color-white);
  padding: 120px 0;
  /* position: sticky;
    top: 0; */
}

/* HEADER */
.sector-header {
  text-align: center;
  margin-bottom: 60px;
}

/* GRID */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.sector-card {
  background: #fff;
  padding: 30px;
  min-height: 140px;

  transform: skewX(-10deg);
  border: 1px solid var(--color-black-20);

  display: flex;
  flex-direction: column;
  gap: 20px;

  transition: 0.3s ease;
}

/* FIX TEXT INSIDE */
.sector-card>* {
  transform: skewX(10deg);
}

/* ICON */
/* .sector-card .icon {
    width: 40px;
    height: 40px;
    background: #0070FF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    border-radius: 6px;
} */

/* TEXT */
.sector-card p {
  font-size: 24px;
  color: var(--color-bg);
}

/* HOVER */
.sector-card:hover {
  transform: skewX(-10deg) translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* sector style end */

/* footer style start */
/* SECTION */
.footer-section {
  position: relative;
  min-height: 100vh;
  color: var(--color-white);
  overflow: hidden;
  font-family: var(--font-para);
}

/* VIDEO */
.footer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* CONTAINER */
.footer-container {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 100px;
}

/* CENTER */
.footer-center {
  text-align: center;
  /* margin-top: 150px; */
}

.footer-heading {
  font-family: var(--font-para);
  font-size: 44px;
  margin-bottom: 20px;
}

.footer-email,
.footer-phone {
  font-size: 18px;
  margin: 5px 0;
}

/* LINKS */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  opacity: 0.7;
}

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 20px;
}

/* footer style start */
/* SECTION */
.footer-section {
  position: relative;
  height: 100vh;
  color: var(--color-white);
  overflow: hidden;
  font-family: var(--font-para);
  background: #000;
}

/* VIDEO */
.footer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: grayscale(100%) brightness(0.5);
}

/* DARK OVERLAY */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* GRID LINES (vertical like screenshot) */
.footer-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px);
  background-size: 40px 100%;
  pointer-events: none;
}

/* CONTAINER */
.footer-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


/* HEADING */
.footer-heading {
  font-family: var(--font-heding);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

/* CONTACT */
.footer-contact {
  font-size: 24px;
  opacity: 0.9;
  margin: 4px 0;
  text-decoration: none;
  color: #fff;
}

.footer-contact a {
  text-decoration: none;
  color: #fff;
}

/* NAV */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: 0.7;
}

/* LINKS */
.footer-nav a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

/* LINE ABOVE FOOTER */
.footer-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  font-size: 16px;
  opacity: 0.5;
  padding: 20px 0px;
  border-top: 1px solid;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

/* footer style end */

/* 1400px and 1000px size media query start */
@media (max-width: 1400px) and (min-width: 1000px) {
  h1 {
    font-size: 72px;
    line-height: 80px;
  }

  h2 {
    font-size: 50px;
  }

  .work-cards .execution-card .execution-card-number {
    font-size: 39px;
  }

  .work-container {
    gap: 20px;
  }

  p.who-text {
    font-size: 30px;
  }

  h2.support-heading {
    font-size: 30px;
  }

  h2.team-heading {
    font-size: 50px;
  }

  h3.team-name {
    font-size: 18px;
  }

  .execution-card .execution-card-number {
    font-size: 40px;
  }

  .work-cards .text-size-large {
    font-size: 20px;
  }

  .sector-card p {
    font-size: 18px;
  }

  .sector-header {
    margin-bottom: 30px;
  }
}

/* 1400px and 1000px size media query end */


/* mobile media query*/
@media (min-width: 320px) and (max-width: 900px) {

  /* menu-mobiel start */
  a.nav-link {
    font-size: 40px;
    height: 50px;
  }

  .nav-contact-box {
    align-items: start;
    margin-top: 20px;
  }

  /* menu-mobiel end */
  .padding-global {
    padding: 0px 20px;
  }

  h1 {
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -2px;
  }

  .text-size-large {
    font-size: 18px;
  }

  .execution-top {
    flex-direction: column;
    gap: 30px;
  }

  h3.execution-subtext {
    text-align: left;
  }

  .execution-card-title-wrapper {
    margin-bottom: 25px;
  }

  h2 {
    font-size: 40px !important;
  }

  .execution-cards {
    grid-template-columns: 1fr;
    padding: 0 25px;
    gap: 20px;
    min-height: 160px;
  }

  .execution-card {
    gap: 20px;
    min-height: 160px;
  }

  .execution-card .execution-card-number {
    font-size: 40px;
    gap: 10px;
  }

  section.build-section {
    padding: 60px 0px;
    /* position: sticky ; */
    height: 100vh;
    /* overflow-y: scroll; */
    padding-top: 120px;
  }

  .build-section-bg.desktop-show {
    display: none;
  }

  .build-section-bg.mobile-show {
    display: block;
  }

  p.build-description {
    font-size: 32px;
  }

  .build-cards {
    grid-template-columns: 1fr;
  }

  .support-section {
    padding: 60px 0;
  }

  h2.support-heading {
    font-size: 26px !important;
  }

  p.support-label {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .who-text {
    font-size: 24px;
  }

  section.who-section {
    display: flex;
    padding: 60px 0px;
    justify-content: center;
    align-items: center;
  }

  .work-cards {
    grid-template-columns: 1fr;
  }

  .work-container {
    gap: 20px;
  }

  .work-container .execution-card {
    transform: skewX(-10deg)
  }

  .work-container .execution-card * {
    transform: skewX(0deg);
  }

  .work-cards .execution-card .execution-card-number {
    font-size: 30px;
  }

  .work-cards .text-size-large {
    font-size: 20px;
  }

  section.team-section {
    padding: 100px 0px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-grid.team-five-card {
    grid-template-columns: 1fr;
  }

  .sector-grid {
    grid-template-columns: 1fr;
  }

  section.sector-section {
    padding: 120px 0px;
  }

  .footer-container {
    min-height: 100vh;
    padding-top: 60px;
  }

  .footer-spacer {
    display: none;
  }

  .sector-card p {
    font-size: 18px;
  }

  section.footer-section {
    height: auto;
    min-height: auto;
  }

  .footer-nav {
    gap: 15px;
  }

  section.build-section {
    position: sticky;
    height: 100vh;
    overflow-y: scroll;
  }

  section.support-section {
        /* position: sticky;
        height: 100vh;
        overflow-y: scroll; */
        display: flex;
        justify-content: center;
        align-items: center;
    }

  section.sector-section {
    /* position: sticky ; */
    height: 100vh;
    /* overflow-y: scroll; */
  }

  section.work-section {
    /* position: sticky ; */
    min-height: 100vh;
    /* overflow-y: scroll; */
  }

  .page-wrapper-global section.sticky-section {
    position: sticky;
    height: 100vh;
    overflow-y: scroll;
  }

  /*.team-image-wrapper img {*/
  /*  width: 100%;*/
  /*  height: auto;*/
  /*  object-fit: cover;*/
  /*}*/
  .team-section {
    justify-content: start;
}

  .banner-wave-image img {
    top: -40px;
  }

  .banner_section {
    padding: 60px 0px;
  }

  .execution-section {
    margin-top: 0px;
  }

  .build-card p.text-size-regular.text-color-white {
    transition: all 0.5s ease-in-out;
    opacity: 1;
  }
  .section{
      padding-top:120px ;
  }
  
  .build-bg {
height: 1800px;
}

}