body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: #000000;
  overflow: hidden;
}



iframe {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  border: none;
  display: none;
}

.d-none {
  display: none !important;
}

.loading-logo {
  filter: grayscale(100%) invert(100%);
  width: 290px;
  height: auto;
}

/* Full-screen loading screen */
#loadingScreen {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  justify-content: center;
  align-items: center;
  z-index: 2;
  flex-direction: column;
}

#loadingText {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  text-align: center;
}

#loadingEllipses span {
  display: inline-block;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }
}

#loadingBarContainer {
  width: 60%;
  max-width: 400px;
  height: 10px;
  background-color: #333;
  border-radius: 5px;
  overflow: hidden;
}

#loadingBar {
  width: 0%;
  height: 100%;
  background-color: white;
  transition: width 0.1s linear;
}

/* Floating Navigation Bar */
.nav-menu-2 {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 50%;
  /* Adjusts the width of the bar */
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  padding: 10px 0;
}

.nav-link {
  color: white;
  font-size: 16px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: #ffcc00;
  transform: scale(1.1);
}

.nav-link:focus {
  outline: none;
}

/* Case study overlay */
#caseStudyOverlay {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  z-index: 4;
  padding: 20px;
  box-sizing: border-box;
  transition: top 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
}

/* Layout for two columns */
.case-study-content {
  width: 100%;
  padding-right: 20px;
  box-sizing: border-box;
  margin-top: 20px;
}

.stats {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 22px;
  /* Reduced font size */
  font-weight: bold;
  margin-bottom: 40px;
  /* Larger gap for larger screens */
}

.stat-row {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
  /* Bigger gap between each stat */
}

.stat-number {
  font-size: 20px;
  /* Slightly smaller font for number */
  color: #ffcc00;
  font-weight: bold;
  margin-right: 15px;
  /* Space between number and label */
}

.stat-label {
  font-size: 15px;
  /* Reduced label font size */
  color: white;
}

#caseStudyOverlay h1 {
  text-align: center;
  margin-bottom: 20px;
}

#caseStudyOverlay p {
  margin: 20px;
  line-height: 1.5;
  text-align: left;
}

#caseStudyContent {
  font-family: Brockmann Webfont, sans-serif;
}

#caseStudyContent p {
  margin: 0;
}

#caseStudyContent .row1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  gap: 30px;
}
#caseStudyContent .row1 .col1 {
  flex-basis: 60%;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
#caseStudyContent .row1 .col2 {
  flex-basis: 20%;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

#caseStudyContent .row2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  gap: 30px;
}
#caseStudyContent .row2 .col1 {
  flex-basis: 30%;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
#caseStudyContent .row2 .col2 {
  flex-basis: 20%;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
#caseStudyContent .row2 .col3 {
  flex-basis: 30%;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

#caseStudyContent .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  gap: 30px;
}
@media screen and (max-width: 460px) {
  #caseStudyContent .row {
    display: block;
  }
}
#caseStudyContent .col {
  flex-basis: 30%;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

#caseStudyContent h2 {
  font-family: Brockmann Webfont, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 6px;
  margin-bottom: 10px;
  margin-top: 10px;
}

#caseStudyContent p {
  font-family: Brockmann Webfont, sans-serif;
  letter-spacing: 2px;
  font-size: large;
  text-align: left;
}

#caseStudyContent hr {
  opacity: .6;
  width: 90%;
  margin-top: 30px;
  margin-bottom: 50px;
}


/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .nav-menu-2 {
    width: 70%;
    /* Adjust width for tablet */
    padding: 8px 0;
  }

  .nav-link {
    font-size: 14px;
    padding: 8px 15px;
  }

  .case-study-content {
    width: 100%;
  }

  .stats {
    width: 100%;
    margin-bottom: 20px;
  }

  .stat-row {
    margin-bottom: 20px;
  }

  /* Stacking layout for smaller screens */
  .stat-number {
    font-size: 30px;
    /* Reduced font for smaller screens */
    margin-bottom: 10px;
    /* Reduce space between number and label */
  }

  .stat-label {
    font-size: 14px;
    /* Smaller label font */
  }

  #caseStudyOverlay h1 {
    font-size: 22px;
    /* Smaller font size for header */
  }

  #caseStudyOverlay p {
    font-size: 14px;
    /* Smaller font size for paragraph */
  }
  #caseStudyContent .row1 .col1 {
    flex-basis: 100%;
  }
  #caseStudyContent .row1 .col2 {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #caseStudyContent .row2 .col1 {
    flex-basis: 100%;
  }
  #caseStudyContent .row2 .col2 {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #caseStudyContent .row2 .col3 {
    flex-basis: 100%;
  }
}

@media (max-width: 480px) {
  .nav-menu-2 {
    width: 85%;
    /* Further adjust width for mobile */
    padding: 6px 0;
  }

  .nav-link {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Layout adjustments for mobile screens */
  .stats {
    margin-top: 20px;
    width: 100%;
  }

  .case-study-content {
    margin-top: 10px;
    width: 100%;
  }

  /* Stacking case study content */
  .stat-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .stat-number {
    font-size: 28px;
    /* Further reduce size for small screens */
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 12px;
    /* Even smaller for mobile */
  }

  #caseStudyOverlay h1 {
    font-size: 18px;
    /* Smaller header for mobile */
  }

  #caseStudyOverlay p {
    font-size: 12px;
    /* Smaller paragraph font */
  }
}



.container {
  z-index: 1;

  max-width: 1500px !important
}body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: #000000;
  overflow: hidden;
}



iframe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  border: none;
  display: none;
}

.d-none {
  display: none !important;
}

.loading-logo {
  filter: grayscale(100%) invert(100%);
  width: 290px;
  height: auto;
}

/* Full-screen loading screen */
#loadingScreen {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  justify-content: center;
  align-items: center;
  z-index: 2;
  flex-direction: column;
}

#loadingText {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  text-align: center;
}

#loadingEllipses span {
  display: inline-block;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }
}

#loadingBarContainer {
  width: 60%;
  max-width: 400px;
  height: 10px;
  background-color: #333;
  border-radius: 5px;
  overflow: hidden;
}

#loadingBar {
  width: 0%;
  height: 100%;
  background-color: white;
  transition: width 0.1s linear;
}

/* Floating Navigation Bar */
.nav-menu-2 {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 50%;
  /* Adjusts the width of the bar */
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  padding: 10px 0;
}

.nav-link {
  color: white;
  font-size: 16px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: #ffcc00;
  transform: scale(1.1);
}

.nav-link:focus {
  outline: none;
}

/* Case study overlay */
#caseStudyOverlay {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  z-index: 4;
  padding: 20px;
  box-sizing: border-box;
  transition: top 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-y: auto;
}

/* Layout for two columns */
.case-study-content {
  width: 100%;
  padding-right: 20px;
  box-sizing: border-box;
  margin-top: 20px;
}

.stats {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 22px;
  /* Reduced font size */
  font-weight: bold;
  margin-bottom: 40px;
  /* Larger gap for larger screens */
}

.stat-row {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
  /* Bigger gap between each stat */
}

.stat-number {
  font-size: 20px;
  /* Slightly smaller font for number */
  color: #ffcc00;
  font-weight: bold;
  margin-right: 15px;
  /* Space between number and label */
}

.stat-label {
  font-size: 15px;
  /* Reduced label font size */
  color: white;
}

#caseStudyOverlay h1 {
  text-align: center;
  margin-bottom: 20px;
}

#caseStudyOverlay p {
  margin: 20px;
  line-height: 1.5;
  text-align: left;
}

#caseStudyContent {
  font-family: Brockmann Webfont, sans-serif;
}

#caseStudyContent p {
  margin: 0;
}

#caseStudyContent .row1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  gap: 30px;
}
#caseStudyContent .row1 .col1 {
  flex-basis: 60%;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
#caseStudyContent .row1 .col2 {
  flex-basis: 20%;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

#caseStudyContent .row2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  gap: 30px;
}
#caseStudyContent .row2 .col1 {
  flex-basis: 30%;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
#caseStudyContent .row2 .col2 {
  flex-basis: 20%;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
#caseStudyContent .row2 .col3 {
  flex-basis: 30%;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

#caseStudyContent .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  gap: 30px;
}
@media screen and (max-width: 460px) {
  #caseStudyContent .row {
    display: block;
  }
}
#caseStudyContent .col {
  flex-basis: 30%;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

#caseStudyContent h2 {
  font-family: Brockmann Webfont, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 6px;
  margin-bottom: 10px;
  margin-top: 10px;
}

#caseStudyContent p {
  font-family: Brockmann Webfont, sans-serif;
  letter-spacing: 2px;
  font-size: large;
  text-align: left;
}

#caseStudyContent hr {
  opacity: .6;
  width: 90%;
  margin-top: 30px;
  margin-bottom: 50px;
}


/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .nav-menu-2 {
    width: 70%;
    /* Adjust width for tablet */
    padding: 8px 0;
  }

  .nav-link {
    font-size: 14px;
    padding: 8px 15px;
  }

  .case-study-content {
    width: 100%;
  }

  .stats {
    width: 100%;
    margin-bottom: 20px;
  }

  .stat-row {
    margin-bottom: 20px;
  }

  /* Stacking layout for smaller screens */
  .stat-number {
    font-size: 30px;
    /* Reduced font for smaller screens */
    margin-bottom: 10px;
    /* Reduce space between number and label */
  }

  .stat-label {
    font-size: 14px;
    /* Smaller label font */
  }

  #caseStudyOverlay h1 {
    font-size: 22px;
    /* Smaller font size for header */
  }

  #caseStudyOverlay p {
    font-size: 14px;
    /* Smaller font size for paragraph */
  }
  #caseStudyContent .row1 .col1 {
    flex-basis: 100%;
  }
  #caseStudyContent .row1 .col2 {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #caseStudyContent .row1 .col2 img {
    width: 40%;
    height: auto;
  }
  #caseStudyContent .row2 .col1 {
    flex-basis: 100%;
  }
  #caseStudyContent .row2 .col2 {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #caseStudyContent .row2 .col2 img {
    width: 40%;
    height: auto;
  }
  #caseStudyContent .row2 .col3 {
    flex-basis: 100%;
  }
}

@media (max-width: 480px) {
  .nav-menu-2 {
    width: 85%;
    /* Further adjust width for mobile */
    padding: 6px 0;
  }

  .nav-link {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Layout adjustments for mobile screens */
  .stats {
    margin-top: 20px;
    width: 100%;
  }

  .case-study-content {
    margin-top: 10px;
    width: 100%;
  }

  /* Stacking case study content */
  .stat-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .stat-number {
    font-size: 28px;
    /* Further reduce size for small screens */
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 12px;
    /* Even smaller for mobile */
  }

  #caseStudyOverlay h1 {
    font-size: 18px;
    /* Smaller header for mobile */
  }

  #caseStudyOverlay p {
    font-size: 12px;
    /* Smaller paragraph font */
  }
}



.container {
  z-index: 1;

  max-width: 1500px !important
}

