@font-face {
  font-family: 'HelveticaNeueMedium';
  src: url('../../font/HelveticaNeueMedium.woff2') format('woff2'),
       url('../../font/HelveticaNeueMedium.otf') format('opentype');
  font-weight: 100;
}

@font-face {
  font-family: 'HelveticaNeueLight';
  src: url('../../font/HelveticaNeueLight.woff2') format('woff2'),
       url('../../font/HelveticaNeueLight.otf') format('opentype');
  font-weight: 300;
}

@font-face {
  font-family: 'HelveticaNeueBold';
  src: url('../../font/HelveticaNeueBold.woff2') format('woff2'),
       url('../../font/HelveticaNeueBold.otf') format('opentype');
  font-weight: 700;
}

@font-face {
  font-family: 'HelveticaNeueRegular';
  src: url('../../font/helveticaneue.woff2') format('woff2'),
       url('../../font/helveticaneue.otf') format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'HelveticaNeueBlack';
  src: url('../../font/HelveticaNeueBlack.woff2') format('woff2'),
       url('../../font/HelveticaNeueBlack.otf') format('opentype');
  font-weight: 900;
}
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased; /* Smooth fonts */
    -moz-osx-font-smoothing: grayscale;
    /* outline: 1px solid red; */
  }
    
  html {
    font-size: 16px; /* Base for rem units if needed */
  }
  body {
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
  }

  html, body {
    height: 100%;
  }
  
/* ////////////////// */
  /* Navigation section */
  /* ////////////////// */
  header {
    /* If you prefer to keep your existing style, that’s fine; 
       just ensure the final is something like: */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75vw;
    z-index: 1000;
  }
  .language {
    white-space: nowrap; /* Force all text inside to remain on one line */
  }

  .language-bar {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
  }
  
  /* Force the text link to the right with justify-content-end or .ml-auto in HTML */
  .language-bar .language {
    white-space: nowrap;
    text-decoration: none;
    font-family: 'HelveticaNeueLight', sans-serif;
    font-weight: 300;
    color: black;
  }
  
  /* The nav beneath the language bar 
     (no absolute positioning, so it stacks below the language bar) */
  .navigation {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 2rem; /* or whatever spacing you want */
    padding: 1rem; /* spacing below the language bar */
    padding-top: 2rem;
    background: transparent; /* no background so hero shows behind if you want an overlay look */
    
  }
  
  
  /* 
    Assuming a 1920px width, -1.1rem (~17.6px) is roughly 0.9vw.
    Adjust the value if needed.
  */
  .header-left img {
    position: relative;
    top: -0.5vw;
    height: 1%;
    width: auto;
    right:0%;
    
  }
  
  .navigation {
    position: relative;
    top: -1vw;  /* -1vw approximates the -1.1rem offset */
    display: flex;
    flex-wrap: nowrap;
    /* 3rem ≈ 48px => about 2.5vw on a 1920px width */
    gap: 2.5vw;
    
  }
  
  .navigation a {
    font-family: 'HelveticaNeueLight', sans-serif; /* Updated font family */
    color: black;
    text-decoration: none;
    font-size: clamp(1rem, 1.2vw, 1.333rem);
    font-weight: normal; /* Use normal weight for the light font */
    position: relative;
    text-align: right;
  }

  .navigation .digitalpark {
    color: #27C83F; /* Green color */
    font-weight: bold;
  }

  /* Wrap both logo and nav in a flex container */
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  width: 100%;
}

/* Keep logo responsive and aligned to start */
.header-left img {
  max-height: 3rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Keep nav items aligned right */
.navigation {
  display: flex;
  gap: 2.5vw;
  flex-wrap: nowrap;
}


  
  /* .navigation .industriesandpartners {
    position: relative;
    top: -1vw;
  } */
  
  @media (max-width: 600px) {
    .navigation {
      /* 1rem ≈ 16px → roughly 0.8vw on a 1920px design; adjust if needed */
      gap: clamp(0.8rem, 1vw, 1rem);
    }
    
    .navigation a {
      font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    }
  }

/* ////////// */
/* P1 section */
/* ////////// */

.custom-container {
  max-width: 75vw;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.title{
  font-size: clamp(2.5rem, 4vw, 4.5rem); 
  color: #27C83F;
}

.p1container p {
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  line-height: 1;
  font-family: 'HelveticaNeueRegular';
  word-wrap: break-word;
  width: 550px;
}

.p1container .title {
  font-size: clamp(2.5rem, 4vw, 4.5rem) !important;
  line-height: 1.2;
  font-family: 'HelveticaNeueBlack';
}

.highlight-bar {
  width: 4px;
  height: 6rem;
  background-color: #27C83F;
  margin-right: 1rem;
  margin-left: 3rem;
  flex-shrink: 0;
}

.green-title {
  color: #27C83F;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.rounded-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* ////////// */
/* P2 section */
/* ////////// */

/* ========== p2 Section ========== */
.p2 {
  background-color: #27C83F;
  padding: 5rem 0;
  
}

.p2 h1 {
  font-size: clamp(2.5rem, 4vw, 4.5rem) !important;
  font-family: 'HelveticaNeueBlack', sans-serif;
  margin-bottom: 7rem;
}

/* Keep or adjust as needed for your text styling */
.text-box {
  /* Remove position: absolute, top/right/left/bottom, etc. */
  /* position: absolute; <-- remove or comment out */
  color: black;
  padding: 1rem;
  border-radius: 1rem;
  max-width: 80%;
  /* If you want a bit more spacing around text, you can add margin here. */
}

/* .text-box.bottom-left, .text-box.top-right - no longer used for positioning
   so you can remove or comment these out:
   .text-box.bottom-left {
     bottom: 5rem; left: 4rem; ...
   }
   .text-box.top-right {
     top: 3rem; right: 0rem; ...
   }
*/

/* Title & Desc inside .text-box */
.text-box .title {
  font-family: 'HelveticaNeueBold';
  font-size: clamp(1.2rem, 2vw, 1.833rem);
  font-weight: 700;
  color: #27C83F;
  margin-bottom: 0.5rem;
  width: 700px;
}

.text-box .desc {
  font-family: 'HelveticaNeueRegular';
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  width: 550px; 
  /* Adjust line-height or spacing to taste */
}

/* Carousel container & items */
.carousel-inner {
  width: 75vw;
  margin: 0 auto;
}

.carousel-item {
  position: relative;  /* keep this for the overlay positioning */
  border-radius: 2rem;
  overflow: hidden;
  border: 2px solid #27C83F;
  height: auto;
}

/* Main image in each slide */
.carousel-img {
  width: 100%;
  height: auto;
  border-radius: 4rem; /* or 1rem, whichever you prefer */
  object-fit: cover;
  background-color: white;
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: auto;
  height: auto;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: white;
  background-image: none;
  border-radius: 9999px;
  padding: 1rem;
  background-size: 100% 100%;
  position: relative;
}

.carousel-control-next-icon {
  background-image: url("../../assets/buttons/grey-right-button.png");

  right: -2.5rem;
}

.carousel-control-prev-icon {
  background-image: url("../../assets/buttons/grey-left-button.png");
  left: -1rem;
}



/* //////////// */
/* P5 container */
/* //////////// */

.p5 {
  background-color: white;
}

.p5 h1 {
  font-size: 4.583rem;
  font-family: 'HelveticaNeueBold', sans-serif;
  margin-bottom: 4rem;
  color: #27C83F;
}

.custom-p5-container {
  max-width: 75vw;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.p5-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 40.92px;
  overflow: hidden;
  transition: background 0.3s ease;
}

.p5-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 40.92px;
  transition: opacity 0.3s ease;
}

.p5-card-content {
  position: relative;
  z-index: 2;
  color: white;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Top-aligned */
  pointer-events: none;
}

.p5-title {
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.65rem, 2vw, 2.5rem) !important;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02vw;
  color: white;
  padding-top: 2rem;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
  z-index: 2;
  pointer-events: auto;
}

.p5-title::before {
  content: "";
  position: absolute;
  left: 2.5rem;
  top: 2.5rem;
  transform: translateX(-1.5rem);
  width: 4px;
  height: 100px;
  background: white;
  transition: background 0.3s ease;
}

.p5-desc {
  position: absolute;
  top: 8rem;
  left: 2rem;
  right: 2rem;
  color: black;
  padding: 1rem 1rem 1rem 2rem;
  font-family: 'HelveticaNeueRegular', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.5rem) !important; 
  font-weight: 400;
  border-radius: 1rem;
  display: none;
  transition: all 0.3s ease;
  z-index: 1;
  pointer-events: auto;
  line-height: 1.2;
}

.p5-desc::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 1rem;
  width: 4px;
  height: 80%;
  background: #27C83F;
}

/* Hover Effects */
.p5-card:hover{
  box-shadow: 0px 0px 5px #27C83F;
}

.p5-card:hover .p5-card-img {
  opacity: 0;
}

.p5-card:hover .p5-title {
  color: #27C83F;
}

.p5-card:hover .p5-title::before {
  display: none;
  background: white;
  

}


.p5-card:hover .p5-desc {
  display: block;
}

  /* ---------- Footer ---------- */
  .footer {
    background-color: #27C83F;
  }

  .footer .container{
    max-width: 75vw !important;
  }
  
  .footer img{
    margin-top:2.6rem;
    margin-left: 0rem;
    margin-bottom: 0;
  }

  .footer-column img{
    width: 50%;
  }
  
  .footer a {
    color: white;
    text-decoration: none;
    font-family: 'HelveticaNeueRegular', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.5rem); 
    letter-spacing: 0.4px;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  .footer h3 {
    font-family: 'HelveticaNeueRegular', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.5rem); 
    color: white;
    margin-top: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
  }
  
  .footer p {
    font-family: 'HelveticaNeueRegular', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.5rem); 
    color: white;
    margin-bottom: 0.8rem;
    letter-spacing: 0.3px;
  }
  
  .footer-logo p {
    margin-top: -5.8rem;
    text-align: left;
    margin-left: 1rem;
  }
  
  .footer-divider {
    width: 60px;
    height: 0;
    border-top: 2px solid white;
    margin-bottom: 1.5rem;
  }
  
  .footer-bottom p {
    margin-top: 3rem;
    font-size: clamp(1rem, 1.5vw, 1.5rem); 
    letter-spacing: 0.2px;
    text-align: center;
  }

  

/* ============================ */
/* Minimal Custom Adjustments */
/* (Bootstrap’s grid and utilities handle most responsiveness) */
/* ============================ */
/* P3: Make grid responsive by stacking */
@media (max-width: 992px) {
  .p3 .main-card,
  .p3 .feature-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .p3 .row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .p3 .col-md-7.d-flex {
    flex-direction: column;
  }

  .p3 .feature-card {
    margin-bottom: 1.5rem;
  }
}

/* ---------------------------------------- */
/* MEDIA QUERIES for Mobile vs Desktop      */
/* ---------------------------------------- */
@media (max-width: 768px) {
  /* Show burger menu on mobile */
  .menu-toggle {
    display: block;
  
  }

  /* Hide your normal desktop nav layout on small screens 
      if you want only the overlay approach. */
  header .navigation {
    display: none !important;
  }

  /* But when inside the .navigation-overlay, your .navigation reappears 
      in "overlay form". So we can make a separate rule or rely on nesting. */
  .navigation-overlay .navigation {
    display: flex !important;
  }

  
  /* ---------------------------------------- */
  /* OVERLAY for Mobile Navigation            */
  /* ---------------------------------------- */
  .navigation-overlay {
    position: fixed;      /* covers entire viewport */
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.774);
    display: none;        /* hidden by default */
    z-index: 1000;        /* on top of other elements */
    overflow: hidden;     /* no scrolling behind */
  }

  /* When toggled, the overlay is visible */
  .navigation-overlay.show {
    display: block;
  }

  .navigation {
    position: absolute;
    top: 0; left: 0; right: 0;
    display: flex;             /* override desktop to stack vertically on mobile? */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    padding-top: 4rem;         /* spacing at top if you like */
  }

  /* Slide in from top when toggled */
  .navigation.slide-in {
    transform: translateY(0);
  }

  .menu-toggle {
    display: none;       /* shown only on mobile */
    position: absolute;  /* or fixed, if you want it to remain in view on scroll */
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 2000;       /* must be higher than .navigation-overlay's 1000 */
  }


  /* ---------------------------------------- */
  /* NAV LINKS in the overlay                 */
  /* ---------------------------------------- */
  .navigation a {
    font-family: 'HelveticaNeueLight', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    margin: 1rem 0;
    display: block;
    text-align: center;
  }

  .overlay-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 2001; /* ensure it's clickable above the nav links */
  }
}
  
/* =================================================== */
/* =================================================== */
/* =================================================== */
/* THIS IS FOR MOBILE HEADER */
@media (max-width: 600px) {
  html {
    font-size: 11px;
  }

  body {
    overflow-x: hidden;
  }

  /* NAVIGATION: Convert to side menu */
  .navigation {
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.068);
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .navigation.show {
    transform: translateX(0);
  }

  .navigation a {
    font-size: 1.5rem;
    color: white;
    padding: 1rem 0;
  }

  header .menu-toggle {
    display: block;
    position: absolute;
    right: 1rem;
    top: 3rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 1000;
  }

  .header-left img {
    position: relative;
    top: -1vw;
    height: 50%;
    width: 100%;
    right: 0%;
}
}
  
  /* THIS IS FOR SCREEN SIZES BELOW 768px*/
@media (max-width: 768px) {

  html {
    font-size: 13px;
  }

  .p1 .image-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 14rem;
    margin-bottom: 0;
  }

  .p4 .image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6rem;

  }

  .p1 .top-left-text,
  .p4 .top-right-text {
    position: static;
    text-align: left;
    color: #27C83F;
  }

  .p1 .bottom-right-text,
  .p4 .bottom-left-text {
    position: static;
    max-width: 90%;
    text-align: left;
    margin-top: 2rem;
    color: white;
  }

  .p1container .title {
    font-size: 3rem !important;
    line-height: 1.2;
    font-family: 'HelveticaNeueBlack';
  }

  .p1container .title1 p{
    font-size: 1.7rem !important;
  }

  .p1container p {
    font-size: 1.5rem;
    line-height: 1;
    font-family: 'HelveticaNeueRegular';
    word-wrap: break-word;
    width: 300px;
    margin-bottom: 3rem;
  }

  .p1container .p1text{
    font-size: 1.5rem;
  }

  .highlight-bar{
    margin-left: 0;
  }

  .rounded-img{
    margin-bottom: 1rem;
  }

  .green-title{
    margin-bottom: 0.5rem !important;
    font-size: 1.7rem !important;
  }

  .p2 h1{
    font-size: 3rem !important;
  }

  .mobile-park-list {
    /* Add padding or margin if needed */
    margin: 0 auto 1rem auto;
    width: 75vw;
    height: auto;

  }

  .mobile-park-item img {
    display: block;
    /* margin: 0 auto; */
    max-width: 75vw; 
    width: 100%;
  }
  
  .mobile-park-item {
    /* Spacing between items */
    margin-bottom:3rem;
    background-color: white;
    border-radius: 2rem;
    border-style: solid;
  }
  
  .mobile-park-item .text-box {
    /* Adjust text styling, alignment, etc. */
    margin-top: 0.5rem;
    max-width: 100%;
   
  }

  .mobile-park-item .desc{
    font-family: 'HelveticaNeueRegular', sans-serif;
    position: relative;
    left: 0rem !important;
    top: 0rem;
    font-size: 1.5rem !important;
    width: 100% !important;
  }

  .mobile-park-item .title{
    font-family: 'HelveticaNeueRegular', sans-serif;
    position: relative;
    left: 0rem;
    width: 100%;
    color: #27C83F;
    font-size: 1.7rem;
  }

  .p5-title{
    font-size: 2.573rem !important;
  }

  /* Hide description by default */
  .p5-desc {
    display: none;
    font-size: 1.573rem !important;
    margin-top: 1rem;
  }

  /* If .show-desc is applied, show it */
  .show-desc .p5-desc {
    display: block;
    font-size: 1.573rem !important;
  }

  .footer-column,
  .footer-logo {
    text-align: center !important;
  }

  /* Optionally, center them horizontally within the row */
  .footer .row {
    justify-content: center;
  }

  .footer-divider {
    width: 60px;
    height: 0;
    border-top: 2px solid white;
    margin-bottom: 1.5rem;
    left: 11.5rem;
    position: relative;
}
  
}
/* =================================================== */
/* =================================================== */
/* =================================================== */


/* ========== Desktop (min-width: 769px) ========== */
@media (min-width: 769px) {
  /* Show the nav in the header */
  header .navigation {
    display: flex; /* or whatever your layout is */
    text-align:right;
  }
  /* Hide the burger */
  .menu-toggle {
    display: none;
  }
  /* Hide the overlay entirely */
  .navigation-overlay {
    display: none !important; /* never show on desktop */
  }
}

/* ========== Mobile (max-width: 768px) ========== */
@media (max-width: 768px) {
  /* Hide the desktop nav in the header */
  header .navigation {
    display: none !important;
  }

  /* Show the burger */
  .menu-toggle {
    display: block; 
    position: absolute; /* or wherever you prefer */
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    color: white;
    z-index: 1000;
    cursor: pointer;
  }

  /* The overlay nav is shown only if toggled .show in JS */
  .navigation-overlay {
    display: none; /* hidden by default */
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 999;
    overflow: hidden;
  }
  .navigation-overlay.show {
    display: block;
  }

  /* The nav inside the overlay becomes vertical */
  .navigation-overlay .navigation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    width: 100%;
    height: 100%;
  }
  .navigation-overlay .navigation.slide-in {
    transform: translateY(0);
  }

  /* Overlay close button if you like */
  .overlay-close {
    position: absolute;
    top: 2rem;
    right: 4.5rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
  }

  .footer-column, .footer-logo {
    text-align: left !important;
  }

  .footer-divider{
    left:0 !important;
  }

  .footer p, .footer a{
    font-size: 1.5rem !important;
    text-align: left;
  }

}

/* ========== THIS IS FOR LAPTOP 1024 SIZE ========== */
@media (min-width: 1024px) and (max-width: 1439px) {
  /* Example: Adjust font size or grid behavior */
  html {
    font-size: 15px;
    overflow-x: hidden;
  }

  .contact-subtext {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-subtext p {
    margin-bottom: 0;
  }

  .header-left img {
    position: relative;
    top: -1vw;
    height: 50%;
    width: 12rem;
    right: 0%;
}

  .navigation {
    position: relative;
    align-items: flex-end;
    display: flex
;
    flex-wrap: nowrap;
    gap: 2.5vw;
    top: -1.8rem;
    left: 0rem;
  }

  .industriesandpartners{
    position: relative;
    top:0rem !important;
  }

  .p1container .title {
    font-size: 2.75rem;
    line-height: 1;
    font-family: 'HelveticaNeueBlack';
  }

  .p1container p {
    font-size: clamp(1rem, 1.5vw, 1.5rem); 
    line-height: 1;
    font-family: 'HelveticaNeueRegular';
    word-wrap: break-word;
    width: 100%;
    position: relative;
    left: 0rem;
  }

  .highlight-bar{
    margin-left: 0rem;
  }

  .p2 h1 {
    font-size: 3.5rem;
    font-family: 'HelveticaNeueBold', sans-serif;
    margin-bottom: 3rem;
  }

  .text-box .title {
    font-family: 'HelveticaNeueBold', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.833rem);
    font-weight: 700;
    color: #27C83F;
  }
  .text-box .desc {
    font-family: 'HelveticaNeueRegular', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.5rem); 
    font-weight: 400;
    width: 170%;
  }

  .text-box.bottom-left {
    bottom: 1rem;
    left: 2rem;
    width: 390px;
  }

  .text-box.top-right {
    top: 0.5rem;
    right: 0rem;
    width: 390px;
  }

  .p5 h1 {
    font-size: 3rem;
    font-family: 'HelveticaNeueBold', sans-serif;
    margin-bottom: 4rem;
    color: #27C83F;
}

  .p5-title {
    position: relative;
    font-family: 'HelveticaNeueBold', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02vw;
    color: white;
    padding-top: 2rem;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    z-index: 2;
    pointer-events: auto;
  }

  .p5-title::before{
    height: 60px;
  }

  .p5-desc{
    font-size: 1.25rem;
  }


  .footer img {
    margin-top: 2rem;
  
  }
  
  .footer-column img{
    width: 75%;
  }

.footer-logo p {
  margin-top: -3.3rem;
  text-align: left;
  margin-left: -0.5rem;
}

}




/* ========== THIS IS FOR LAPTOP L SIZE ========== */
@media (min-width: 1440px) and (max-width: 1919px) {
  html {
    font-size: 16px;
  }

  .contact-subtext {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* if you want 3 blocks horizontally */
    gap: 2rem;
  }

  .contact-subtext p {
    margin-bottom: 0;
  }

  .header-left img {
    position: relative;
    top: -1vw;
    height: 50%;
    width: 13rem;
    right: 0%;
  }
  
  .navigation {
    position: relative;
    align-items: flex-end;
    display: flex
;
    flex-wrap: nowrap;
    gap: 2.5vw;
    top: -2rem;
    text-align:right !important;
  }

  .industriesandpartners{
    position: relative;
    top:0rem !important;
  }
  
  .p1container .title {
    font-size: 2.75rem;
    line-height: 1;
    font-family: 'HelveticaNeueBlack';
  }

  .p1container p {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    line-height: 1;
    font-family: 'HelveticaNeueRegular';
    word-wrap: break-word;
    width: 100%;
    position: relative;
    left: 0rem;
  }

  .highlight-bar{
    margin-left: 0rem;
  }

  .p2 h1 {
    font-size: 3.5rem;
    font-family: 'HelveticaNeueBold', sans-serif;
    margin-bottom: 3rem;
  }

  .text-box .title {
    font-family: 'HelveticaNeueBold', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #27C83F;
  }
  .text-box .desc {
    font-family: 'HelveticaNeueRegular', sans-serif;
    font-size: 1.45rem;
    font-weight: 400;
  }

  .text-box.bottom-left { 
    bottom: 2rem;
    left: 2rem;
    width: 500px;
  }
  
  .text-box.top-right {
    top: 1rem;
    right: 6rem !important;
    width: 430px;
  }

  .p5 h1 {
    font-size: 3rem;
    font-family: 'HelveticaNeueBold', sans-serif;
    margin-bottom: 4rem;
    color: #27C83F;
}

  .p5-title {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02vw;
    color: white;
    padding-top: 2rem;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    z-index: 2;
    pointer-events: auto;
  }

  .p5-title::before{
    height: 60px;
  }

  .p5-desc{
    font-size: 1.25rem;
  }

  .footer-column img{
    width: 65%;
  }

  .footer img {
    margin-top: 2.5rem;
    margin-left: 0rem;
    margin-bottom: 0;
  }
  


}

@media (min-width: 1920px) {
  html {
    font-size: 16px;
  }
}

/* ///////////////////////////////////////////// */
/* ///////////////////////////////////////////// */
/* ///////////////////////////////////////////// */

@media (min-width: 321px) and (max-width: 376px) {
  html{
    font-size: 9px !important;
  }

  .language-bar a {
    font-size: 1.5rem !important;
}

.p1container p{
  width: 100%;
}

.mobile-park-item .desc{
  width: 100%;
}


.p5-title:before{
  height: 60px
}

.footer img{
  margin-left: 0rem;
}


}

@media (min-width: 377px) and (max-width: 426px) {
  html{
    font-size: 9px !important;
  }

  .language-bar a {
    font-size: 1.5rem !important;
}

.titlefirst{
  margin-bottom: -0.5rem !important;
}

.p1container p {
  font-size: 1.5rem;
  line-height: 1;
  font-family: 'HelveticaNeueRegular';
  word-wrap: break-word;
  width: 100%;
  margin-bottom: 3rem;
}

.p1container .paragraph1 {
  font-size: 1.6rem !important;
  line-height: 1;
  font-family: 'HelveticaNeueRegular';
  word-wrap: break-word;
  width: 100%;
  margin-bottom: 3rem;
}

.mobile-park-item .desc {
  font-family: 'HelveticaNeueRegular', sans-serif;
  position: relative;
  left: -1rem;
  width: 330px;
}

.p5-title:before{
  height: 60px
}

  .footer-divider{
    left: 13.8rem;
  }

  .footer img{
    margin-left: 0rem;
  }
  
}