@font-face {
  font-family: 'Sharp Sans No1';
  src: url('../Fonts/SharpSansNo1-Semibold.woff2') format('woff2'),
      url('../Fonts/SharpSansNo1-Semibold.woff') format('woff');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Sharp Sans No1 Book';
  src: url('../Fonts/SharpSansNo1-Book.woff2') format('woff2'),
      url('../Fonts/SharpSansNo1-Book.woff') format('woff');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Sharp Sans No1 Bold';
  src: url('../Fonts/SharpSansNo1-Bold.woff2') format('woff2'),
      url('../Fonts/SharpSansNo1-Bold.woff') format('woff');
  font-weight: 600;
  font-display: swap;
}

/* This styles the scrollbar track */
::-webkit-scrollbar {
  width: 6px;  /* Width of the vertical scrollbar */
  height: 12px; /* Height of the horizontal scrollbar */
}

/* This styles the scrollbar handle itself */
::-webkit-scrollbar-thumb {
  background: #555; 
  border-radius: 6px; /* Optional: for rounded corners */
}

/* Style the handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

/* This styles the track of the scrollbar */
::-webkit-scrollbar-track {
  background: #181c1d; 
  border-radius: 6px; /* Optional: for rounded corners */
}


html, body, header {
  font-family: 'Sharp Sans No1 Book';
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
}

body {
  overflow: hidden;
  scrollbar-width: thin; /* or "auto" or "none" */
  scrollbar-color: #888 #f1f1f1; /* thumb and track color */
  -ms-overflow-style: none;  /* IE 11 */
}


#loadingScreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 1s ease-out;
}

#loadingScreen .logo img, .logo img {
  width: 150px;
}

#loadingScreen .progress {
  width: 300px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-top: 20px;
}

#loadingScreen .progress-bar {
  height: 100%;
  width: 0;
  background-color: white;
  transition: all 0.3s;
}


header {
  margin: 0;
  padding: 0;
  height: 100vh;
}

h1 {
  font-family: 'Sharp Sans No1 Bold';
  font-size: 50pt;
  color: #66BF76;
  margin-bottom: 0;
}

h2 {
  font-family: 'Sharp Sans No1';
  font-size: 50pt;
  color: #66BF76;
  margin-bottom: 0;
}

p {
  font-size: 15pt;
  line-height: 22pt;
  text-align: justify;
  text-justify: inter-word;
  color: #181c1d;
}

#particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1;
}

.header-container {
  margin: 0 auto;
  max-width: 1500px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  font-family: 'Sharp Sans No1';
  color: #fff;
  padding-top: 40px;
  margin: 0 30px;
}

.nav-btn {
  font-family: 'Sharp Sans No1';
  font-size: 12pt;
  background: #fff;
  color: #181C1D;
  border: none;
  border-radius: 5px;
  height: 35px;
  width: 130px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-btn:hover {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.logo img {
  width: 220px;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li {
  font-size: 13pt;
  margin-right: 40px;
}

.nav-links li:last-child {
  margin-right: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.burger.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
  opacity: 0;
}

.burger.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.header-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 30px;

}

.header-mobile {
  display: none;
}

.left {
  font-family: 'Sharp Sans No1';
  display: flex;
  align-items: center;
}

.left h1 {
  color: #66BF76;
  padding: 0;
  margin: 0;
  font-size: 45pt;
  line-height: 50pt;
}

.left h2 {
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 45pt;
  line-height: 50pt;
  padding-bottom: 20px;
}

.left button {
  font-family: 'Sharp Sans No1 Book';
  font-size: 12pt;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  height: 45px;
  width: 140px;
  cursor: pointer;
  transition: background-color 0.5s ease, color 0.3s ease;
  -webkit-transition: background-color 0.5s ease, color 0.3s ease;

}

.left button:hover {
  background: #fff;
  color: #000;
}

.right {
  display: flex;
  align-items: center;
}

.right img {
  max-width: 550px;
  width: 100%;
}

.scroll {
  padding-bottom: 20px;
}

.scroll p {
  font-family: 'Sharp Sans No1 Book';
  font-size: 12pt;
  color: #fff;
  text-align: center;
  margin: 5px;
}

.scroll img {
  height: 20px;
  display: block;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 15px;

}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.item {
  padding: 20px;
  margin: 10px;
}

.item-sm {
  padding: 20px;
  margin: 10px;
  max-width: 575px;
  width: 100%;
}

.item-sm h1 {
  font-family: 'Sharp Sans No1 Bold';
  font-size: 39pt;
  line-height: 60px;
}

.popup {
  display: none; /* Initial state: hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto; /* Enable vertical scroll if necessary */
  overflow-x: hidden; /* Prevent horizontal scroll */
  opacity: 0; /* Start with no opacity (invisible) */
  transition: opacity 0.5s; /* Transition effect for smooth animation */
}

/* This class will be used with JavaScript to show the popup */
.popup.show {
  display: block;
  opacity: 1; /* Full opacity (visible) */
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  background: #181c1d;
}

.box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 10px 50px 40px;
  border-right: 2px solid rgba(255, 255, 255, 0.255);
  width: 400px;
}

.box:last-child { 
  border: none;
}

.box img {
  height: 75px;
}

.box h2 {
  font-size: 20pt;
  color: #66bf76;
}

.box ul {
  margin: 10px;
  padding-left: 20px;
  height: 100%;
}

.box ul li {
  color: #fff;
  font-size: 11pt;
  padding: 5px;
}

.popup_btn {
  color: #fff;
  border: 1px solid #fff;
  width: 140px;
  height: 75px;
  background: transparent;
  font-size: 10pt;
  border-radius: 5px;
  transition: 0.5s;
}

.popup_btn:hover {
  background: #fff;
  color: #181c1d;
  cursor: pointer;
}

#introduction {
  min-height: 760px;
  height: 100%;
  display: flex;
  align-items: center;
}

#the-three {
  max-width: 450px;
  width: 100%;
  margin-top: 35px;
}

#info-title {
  font-size: 30pt;
}

#info-decription {
  max-width: 630px;
  width: 100%;
}

.sustainability-img {
  min-height: 650px;
  max-height: 1200px;
  height: 100%;
}

.downloads{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.download-btn {
  height: 45px;
  width: 190px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #66BF76;
  font-family: 'Sharp Sans No1';
  font-size: 12pt;
  color: #66BF76;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.5s ease, color 0.3s ease;
  -webkit-transition: background-color 0.5s ease, color 0.3s ease;

}

.download-btn:hover {
  background: #66BF76;
  transition: 0.5s ease;
}

.download-btn a {
  text-decoration: none;
  color: #66BF76;
}

.download-btn:hover a{
  color: #fff;
}

.download-btn-black {
  height: 45px;
  width: 190px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #181C1D;
  font-family: 'Sharp Sans No1';
  font-size: 12pt;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.5s ease, color 0.3s ease;
  -webkit-transition: background-color 0.5s ease, color 0.3s ease;

}

.download-btn-black:hover {
  background: #181C1D;
  transition: 0.5s ease;
  color: white;
}

.download-btn-black a {
  text-decoration: none;
  color: #181C1D;
}

.download-btn-black:hover a{
  color: #fff;
}


#MSW {
  max-width: 276px;
  width: 100%;
}

#environment {
  max-width: 226px;
  width: 100%;
  padding-left: 10px;
}

#environment-mobile {
  display: none;
}

#circular {
  max-width: 300px;
  width: 100%;
}

.s3 h2 {
  text-align: center;
  font-family: 'Sharp Sans No1 Book';
}

.s3 span {
  font-family: 'Sharp Sans No1';
}

.s3 p {
  font-family: 'Sharp Sans No1 Book';
  font-size: 16pt;
  color: #fff;
  text-align: center;
}

.cards-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  display: flex;
  align-items: center;
  background: #24272c;
  border-top-left-radius: 1.3rem;
  border-bottom-right-radius: 1.3rem;
  overflow: hidden;
  padding: 10px 20px;
  margin: 10px;
  max-width: 320px;
  width: 100%;
}

.card-icon img {
  height: 60px;
  margin-right: 25px;
}

.description p {
  font-family: 'Sharp Sans No1 Book';
  color: #fff;
  text-align: left;
  font-size: 14pt;
}

.sdg {
  padding-top: 70px;
}

.sdg img {
  height: 50px;
}

.sdg p {
  font-family: 'Sharp Sans No1 Book';
  font-size: 16pt;
  color: #fff;
}

.sdg-svg img {
  width: 100%;
  padding-bottom: 80px;
}

.sdg-mobile img {
  display: none;
}

.road-map-content h1 {
  font-size: 40pt;
  text-align: left;
  color: #24272c;
}

.road-map-content img {
  max-width: 1100px;
  width: 100%;
  padding-top: 50px;
}

.road-map-content-mobile img {
  display: none;
}

.reg-bg {
  width: 100%;
  background: linear-gradient(to bottom,
      #fff 0%,
      #fff 20%,
      #181c1d 20%,
      #181c1d 100%);
}

.reg-container {
  display: flex;
  align-items: center;
}

.guy {
  margin-left: -60%;
}

.guy img {
  max-height: 780px;
  height: 100%;
  padding: 0;

}

.slide {
  font-family: 'Sharp Sans No1 Book';
  font-size: 16pt;
  color: #fff;
  line-height: 32px;
  text-align: justify;
  padding: 20px 0;
}

.reg-btn {
  height: 45px;
  width: 190px;
  background: #66BF76;
  border-radius: 5px;
  border: none;
  font-family: 'Sharp Sans No1';
  font-size: 12pt;
  color: #fff;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.5s ease, color 0.3s ease;
  -webkit-transition: background-color 0.5s ease, color 0.3s ease;

}

.reg-btn:hover {
  background: #fff;
  color: #181C1D;
}

.control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.control img {
  height: 35px;
  padding: 5px;
}

.next img {
  transform: rotate(180deg);
}

.reg h1 {
  font-size: 60pt;
}

.count {
  font-family: 'Sharp Sans No1 Book';
  color: #fff;
  font-size: 16pt;
  margin: 0;
}

#contact {
  padding: 50px 0;
}

.contact-us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.plane-img img {
  max-width: 120px;
  width: 100%;
  padding: 10px;
}

.people img {
  max-height: 60px;
  height: 100%;
  padding: 10px;
}

.email p {
  margin: 0;
  text-align: center;
  font-size: 16pt;
}

.email h2 {
  margin: 0;
  text-align: center;
  font-size: 26pt;
}

footer {
  background: #181c1d;
  font-family: 'Sharp Sans No1 Book';
  color: #fff;
}

.footer-container {
  padding-top: 80px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-container h3 {
  font-family: 'Sharp Sans No1';
  font-size: 12pt;
  padding-bottom: 15px;
  margin: 0;
}

.footer-wtz {
  max-width: 150px;
  width: 100%;
}

.links ul {
  list-style-type: none;
  margin: 0;
  padding: 0;

}

.links ul li {
  color: #fff;
  text-align: left;
  padding-top: 5px;
}

.links ul li a {
  font-family: 'Sharp Sans No1 Book';
  text-decoration: none;
  color: #fff;
  font-size: 11pt;
}

.endorsed img {
  max-width: 225px;
  width: 100%;
}

.initiated img {
  max-width: 145px;
  width: 100%;
}

.partner img {
    height:65px;
}

.copyright {
  border-top: 0.2px solid #fff;
  margin-top: 50px;
}

.copyright p {
  color: #fff;
  font-family: 'Sharp Sans No1 Book';
  font-size: 11pt;
  padding: 10px;
  margin: 0;
}

.carousel {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 auto;
}

.carousel-content {
  display: flex;
  overflow: hidden;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s;
}

.carousel-slide img {
  width: 100%;
  max-width: 180px;
  height: auto;
  padding-left: 60px;
}

.carousel-slide p {
  padding: 20px 50px;
  font-size: 16pt;
}

.carousel-slide h2 {
  font-size: 16pt;
  margin: 0;
  padding-left: 50px;
}

.carousel-slide h3 {
  font-size: 16pt;
  margin: 0;
  padding-left: 50px;
}

#prevBtn,
#nextBtn {
  cursor: pointer;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #181c1d;
  border: 1px solid #181c1d;
  padding: 0;
  /* Ensure no padding */
  box-sizing: border-box;
  /* Include border and padding in width/height */
  transition: background-color 0.3s, color 0.3s;
}

#prevBtn:hover,
#nextBtn:hover {
  background-color: #181c1d;
  color: #fff;
}

#quotes {
  padding: 100px 0 100px 0;
}

#news {
  background: #fafafa;
  padding: 50px 0 100px 0;
}

.news-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 10px 0;
}

.news-headline {
  margin-bottom: 40px;
}

.news-headline h2 {
  font-size: 32pt;
  color: #181C1D;
  margin: 0;
}

.news-card {
  flex: 1;
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 2px #0000001a;
  max-width: calc(33.333% - 20px);
}

.news-card img {
  width: 100%;
  max-height: 200px;
  border-radius: 6px;
  background-size: cover;
}

.news-metadata {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #777;
}

.news-card h2 {
  margin-top: 15px;
  font-size: 18px;
  color: #181c1d;
}

.news-card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 16pt;
  opacity: 0.7;
  margin-bottom: 10px;
}

.read-me-btn {
  text-align: left;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 450;
  color: #181c1d;
  position: relative;
  transition: color 0.3s;
}

.read-me-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  /* Starts from the left */
  height: 1px;
  background-color: #181c1d;
  transition: right 0.3s;
}

.read-me-btn::after {
  content: "→";
  /* Right arrow symbol */
  margin-left: 10px;
  transition: transform 0.3s;
  font-weight: bold;
  /* Make the arrow thicker */
}


.read-me-btn:hover {
  color: #181c1d;
}

.read-me-btn:hover::before {
  right: 0;
  /* Fill the entire width on hover */
}

.read-me-btn:hover::after {
  transform: translateX(5px);
  /* Move the arrow slightly to the right on hover */
}


@media screen and (max-width: 768px) {

  .navbar {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .nav-active {
    list-style: none;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    /* Lower than the burger's z-index */
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-btn {
    height: 45px;
    width: 140px;
  }

  .burger {
    display: block;
    z-index: 1000;
  }

  .header-content {
    justify-content: center;
  }

  .container {
    padding: 0;
  }

  .header-content {
    display: none;
  }

  .header-mobile {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 30px;
  }

  .wrapper {
    padding: 50px 0;
  }

  .left {
    text-align: center;
  }

  .left h1 {
    font-size: 35pt;
  }

  .left h2 {
    font-size: 20pt;
    line-height: 25pt;
  }

  .right {
    padding-bottom: 20px;
  }

  .right img {
    max-width: 350px;
    width: 100%;
  }

  #info-title {
    font-size: 30pt;
  }

  .item {
    padding: 10px;
    margin: 0;
    text-align: center;
  }

  #info-title {
    font-size: 23pt;
  }

  #info-decription {
    text-align: center;
    font-size: 14pt;
    line-height: 18pt;
  }

  #introduction {
    padding-bottom: 20px;
  }

  #the-three {
    width: 70%;
  }

  .item-sm {
    text-align: center;
    margin: 0;
    padding: 0 20px;
  }

  .item-sm h1 {
    font-size: 24pt;
    line-height: 40px;
  }

  .item-sm p {
    font-size: 14pt;
    line-height: 20pt;
    text-align: center;
  }

  .s3 {
    padding: 0 10px;
  }

  .s3 h2 {
    line-height: 35pt;
    font-size: 35pt;
  }

  .s3 p {
    font-size: 15pt;
  }

  .cards-container {
    justify-content: center;
  }

  #MSW {
    max-width: 178px;
    width: 100%;
    padding-top: 30px;

  }

  #environment {
    display: none;
  }

  #environment-mobile {
    display: block;
    max-width: 140px;
    width: 100%;
    padding-top: 80px;
  }

  #circular {
    max-width: 180px;
    width: 100%;
    padding-top: 80px;
  }

  .guy img {
    display: none;
  }

  .road-map-content h1 {
    font-size: 25pt;
    line-height: 27pt;
    text-align: center;
  }

  .road-map-content-mobile img {
    max-width: 875px;
    width: 100%;
    padding: 0;
    margin: 30px 0;
    display: block;
  }

  .road-map-content img {
    display: none;
  }

  .reg-container {
    flex-wrap: wrap;
    padding: 80px 20px;
  }

  .email p {
    font-size: 11pt;
  }

  .email h2 {
    font-size: 17pt;
  }

  .reg-bg {
    background: #181c1d;
  }

  .reg {
    text-align: center;
    padding: 20px;
    margin: 10px 0;
  }

  .reg h1 {
    font-size: 40pt;
    margin: 0;
  }

  .slide {
    font-size: 14pt;
    text-align: center;
    line-height: 30px;
  }

  .sdg {
    padding-top: 40px;
  }

  .sdg-svg img {
    display: none;
  }

  .sdg-mobile img {
    width: 90%;
    padding-bottom: 80px;
    display: block;
    margin: 0 auto;
  }

  .sdg p {
    text-align: center;
    font-size: 14pt;
    padding-bottom: 20px;
  }

  .contact-us {
    padding: 80px 20px;
  }

  .footer-container {
    flex-direction: column;
    margin: 0 30px;
  }

  .footer-container h3 {
    padding: 25px 0;
  }

  .carousel {
    max-width: 100%;
  }

  .carousel-slide {
    align-items: center;
  }

  .carousel-slide img {
    max-width: 150px;
    width: 100%;
    padding: 0;
  }

  .carousel-slide p {
    font-size: 12pt;
    padding: 0 20px;
    line-height: 16pt;
    text-align: center;
  }

  .carousel-slide h2 {
    font-size: 12pt;
    text-align: center;
    padding: 0;
  }

  .carousel-slide h3 {
    font-size: 12pt;
    text-align: center;
    padding: 0;
  }

  #prevBtn,
  #nextBtn {
    padding: 5px 10px;
    margin: 0 10px;
    min-width: 30px;
    height: 30px;
  }

  .news-container {
    flex-direction: column;
  }

  .news-card {
    max-width: calc(50% - 20px);
  }

  .news-card {
    max-width: 100%;
  }

  .news-headline h2 {
    font-size: 24pt;
    text-align: center;
    padding: 20px 0;
  }

  .popup-content {
    flex-direction: column;
    max-width: 95%;
    /* You can adjust this value */
    max-height: 90%;
    /* You can adjust this value */
    overflow-y: auto;
    /* Enable vertical scroll if necessary */
  }

  .popup_btn {
    height: 40px;
  }

  .box {
    width: 400px;
    border-right: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.255);
    margin: 10px 0;
  }

  .box:last-child {
    border: none;
  }
}