@font-face {
  font-family: 'Vagnola';
  src: url('../assets/font/Vagnola-Regular.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-para: "Urbanist", sans-serif;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: var(--font-para);
}

.container {
    max-width: 1240px;
    margin: auto;
}

.padding-global {
    padding: 0px 30px;
}
.page-wrapper-global section.sticky-section {
    position: sticky !important;
    top: 0;
}
/* section animated css end*/
/* 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;
}
/* section animated css end*/
.page-wrapper-global  {
    position: relative;
    z-index: 0;
}

h1{
    font-family: var(--font-heding);
    font-size: 72px;
    line-height: 80px;
    font-weight: 600;
    color: var(--color-white);
    /* letter-spacing: -7.5px; */
    text-transform: uppercase;
    margin: 0px;
}
/* HEADING */
h2 {
  font-family: var(--font-heding);
  font-size: 72px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}


.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 */
/* NAV hamburger start*/
.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;
}
.menu-btn{
    border-radius:5px ;
}
/* NAV hamburger end */
/* NAV */
.main-nav-bar {
    background-color: var(--color-white-5);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 20000;
}

.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;
    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;
}
.banner-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* filter: brightness(0.5); */
  opacity: 0.5;
}
.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;
    max-width: 900px;
    padding: 100px 0px;
}
/* WRAPPER */
.service-banner-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 25%);
  gap: 10px;
}

/* CARD */
.service-banner-card {
  padding: 24px;
  border-right: 1px solid var(--color-black-20);

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);

  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: left;
    align-items: self-start;
    text-align: left;
    gap: 20px;
}

/* remove last border */
.service-banner-card:last-child {
  border-right: none;
}

/* NUMBER */
.service-banner-number {
  font-family: var(--font-heding);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 10px;
}

/* TEXT */
.service-banner-text {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.5;
  max-width: 260px;
}
    .abnner-slider-main {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    inset: 0;
}
#banner-slider .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HERO */
.privacy-hero {
  background: var(--color-bg);
  color: var(--color-white);
  padding: 120px 0;
}

.privacy-label {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-bottom: 20px;
}

.privacy-heading {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.privacy-desc {
  max-width: 600px;
  color: var(--color-text);
  margin-bottom: 15px;
}

.privacy-date {
  font-size: 12px;
  opacity: 0.5;
}

/* CONTENT */
.privacy-content {
  background: var(--color-bg);
  padding: 80px 0;
  position: relative;
}

/* CARDS */
.privacy-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
      padding: 0px 20px;
}

/* CARD */
.privacy-card {
  /* background: linear-gradient(180deg, #111, #0a0a0a); */
  background-color: var(--color-bg);
  border: 1px solid var(--color-white-5);
  border-radius: 0px;
  padding: 30px;
  transform: skewX(-10deg);

}
.privacy-card > * {
  transform: skewX(10deg);
}

/* INDEX */
.privacy-index {
  font-size: 12px;
  color: var(--color-accent);
  margin-bottom: 10px;
  display: block;
}

/* TITLE */
.privacy-card h3 {
  font-size: 30px;
  margin-bottom: 15px;
  margin-top: 15px;
  color: var(--color-white);
  font-family: var(--font-heding);
  font-weight: 400;
}

/* TEXT */
.privacy-card p,
.privacy-card li {
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6;
}

.privacy-card ul {
  padding-left: 20px;
}

/* banner style end */


/* execution style start */
/* SECTION */
.execution-section {
  /* background: #f5f5f5; */
  padding: 80px 0px;
  font-family: var(--font-para);
  color: var(--color-black);
}


/* TOP */
.execution-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: auto;
}
.execution-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}



/* RIGHT SIDE */
.execution-right {
  text-align: center;
}



/* DIVIDER */
.execution-line {
  width: 100%;
  height: 1px;
  background: var(--color-black-20);
  margin: 30px 0 30px 0px;
  max-width: 770px;
}

/* 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(2, 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: 38px;
    font-weight: 600;
    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: url(../assets/images/banner/about-network-banner-desktop.png) no-repeat ;
  background-size: cover;
  color: var(--color-white);
  padding: 100px 0;
  font-family: var(--font-para);
  position: relative;
  overflow: hidden;
}
.build-top {
    display: flex;
    max-width: 650px;
    flex-direction: column;
    row-gap: 10px;
}

/* 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;
}
img.build-bg.active {
    opacity: 1;
}
/* TOP TEXT */
.build-description {
  font-size: 42px;
  line-height: 1.2;
  max-width: 1200px;
  font-weight: 400;
  margin-bottom: 40px;
}

/* LABEL */
.build-label-wrapper {
    margin-bottom: 30px;
    max-width: 695px;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.build-label-wrapper .execution-cards {
    grid-template-columns: repeat(2, 1fr);
}
.build-label-wrapper .execution-card{
  background-color: var(--color-bg);
  border-color: #FFFFFF33 ;
  gap: 30px;
}
.build-label-wrapper .execution-card-number{
  font-size: 72px;
}
.build-label-wrapper  p.text-size-large.text-color-white{
  color: #FFFFFFB2;
}

.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 */

/* team style start */
/* SECTION */
.team-section {
  background: var(--color-bg);
  padding: 100px 0;
  color: var(--color-white);
  position: relative;
}
.board-section {
  background: var(--color-bg);
  padding: 0px 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: 700;
}

.team-subtext {
  margin-top: 10px;
  color: var(--color-text);
}

/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.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: 100%;
  height: 260px;
  object-fit: cover;
}

/* 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;
}

.team-name {
  font-size: 18px;
  margin-bottom: 5px;
}

.team-role {
  color: var(--color-accent);
  font-size: 14px;
  margin-bottom: 10px;
}

.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 */

/* footer style start */
/* SECTION */
.footer-section {
  position: relative;
  min-height: 100vh;
  color: var(--color-white);
  overflow: hidden;
  font-family: var(--font-para);
}
 .footer-contact a{
    text-decoration: none;
    color: var(--color-white);
}

/* 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;
}

/* 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;
}
.page-wrapper-global section.sticky-section {
    position: relative;
    top: auto;
}
section.banner_section .splide__slide {
    min-height: 100svh;
            height: 1500px;
}
.service-banner-wrapper {
    grid-template-columns: 1fr;
}
h2.service-banner-number {
    font-size: 24px !important;
    line-height: 1.3;
}
  h1 {
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -2px;
}

.text-size-large {
    font-size: 18px;
}

.execution-top {
    flex-direction: column;
    gap: 0px;
}
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;
}
.build-label-wrapper .execution-cards {
    grid-template-columns: repeat(1, 1fr);
}
.execution-card{
     gap: 20px;
    min-height: 160px;
}
.execution-card .execution-card-number {
    font-size: 30px;
    gap: 10px;
}
section.build-section {
    padding: 60px 0px;
}
p.build-description {
    font-size: 30px;
}
.build-cards {
    grid-template-columns: 1fr;
}


.footer-container {
    min-height: 100vh;
    padding-top: 60px;
}
.footer-spacer {
    display: none;
}
section.footer-section {
    height: auto;
    min-height: auto;
}
.footer-nav {
    gap: 15px;
}

.team-grid {
    grid-template-columns: repeat(1, 1fr);
}
.board-section .team-grid {
      grid-template-columns: repeat(1, 1fr);

}  
section.team-section {
    padding: 60px 0px;
}
section.board-section {
    padding: 60px 0px;
}
.privacy-card h3 {
    font-size: 20px;
}
.section{
        padding-top: 120px;
    }
}