* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(137, 255, 164, 1) rgba(137, 255, 164, 0.5);
}
*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 100px;
}

*::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-image: linear-gradient(180deg, #3e3e36 0%, #89460d 99%);
  box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
}

html {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body {
  width: 100%;
  height: 100%;
  /* Text styles */
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #212121;
  perspective: 4px; /* The depth */
  overflow-x: hidden;
  overflow-y: scroll;
}

header {
  width: 100%;
  min-height: 100vh;
  background-image: url("../img/low-angle-shot-factory-with-smoke-steam-coming-out-chimneys-captured-sunset.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pMM2 {
  position: relative;
  justify-content: end;
  display: flex;
  padding: 20px;
}
a.linkMM2 {
  font-size: 15px;
  color: darkgrey !important;
}
a.linkMM2:hover {
  color: rgb(5, 194, 194) !important;
}
header div {
  position: absolute;
  top: 40%;
  padding: 0 30px;
  display: block;
  font-family: sans-serif;
}
header h1 {
  font-size: 4.5rem;
  font-weight: 700;
  width: 90%;
  margin: auto;
  color: #fffafa;
}
header h2 {
  font-size: 2.2rem;
  font-weight: 300;
  color: #fcfcf5;
  width: 90%;
  margin: auto;
}
a {
  color: #fcfcf5 !important;
  text-decoration: none !important;
}
/* Icon Down */
@-webkit-keyframes hvr-icon-down {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
  75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@keyframes hvr-icon-down {
  0%,
  50%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%,
  75% {
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}
/* Icon Down */
.hvr-icon-down {
  display: block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  width: fit-content;
  margin: auto;
  margin-top: 100px;
  font-size: 25px;
}
.hvr-icon-down .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.hvr-icon-down:hover .hvr-icon,
.hvr-icon-down:focus .hvr-icon,
.hvr-icon-down:active .hvr-icon {
  -webkit-animation-name: hvr-icon-down;
  animation-name: hvr-icon-down;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

section {
  width: 100%;
  position: relative;
  z-index: 2;
  background-color: #fdfcfc;
  min-height: 100vh;
}
section#others{
  min-height: unset ;
}
section#first,
section#third {
  background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
}
section#second {
  background-image: url("https://www.transparenttextures.com/patterns/green-dust-and-scratches.png");
}
.container {
  margin: auto;
  max-width: 1080px;
  padding: 40px 40px;
}
.container h2 {
  font-family: sans-serif;
  font-size: 1.4em;
  font-weight: 700;
}
.container h3 {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 3rem;
}
.container p {
  line-height: 1.8;
}
ul{
  font-size: 16px;
}
ul li:not(:last-child){
  margin-bottom: 5px;
}
.footerContainer {
  border-top: 0.6px solid #aaaaaa;
}
footer div {
  margin: auto;
  width: fit-content;
  padding: 20px 20px;
}

.flex {
  display: flex;
  flex-direction: row;
}

.graphDiv {
  margin-right: 20px;
}
.sticky {
  position: sticky;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.textDiv {
  max-height: 100vh;
  overflow-y: auto;
}

.textDiv p{
  font-size: 14px;
}
.mt-1 {
  margin-top: 20px;
}
.mb-1 {
  margin-bottom: 20px;
}
.mt-2 {
  margin-top: 40px;
}

.graph3 .legend {
  padding: 6px 8px;
  background: white;
  line-height: 20px;
  font-size: 12px;
  font-weight: 300;
  color: #555;
  opacity: 0.9;
  width: auto;
  border-radius: 5px;
}

.graph3 .legend i {
  width: 18px;
  height: 18px;
  float: left;
  margin-right: 8px;
}

.graph3 small {
  text-transform: capitalize;
}

/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* The actual popup (appears on top) */
.popup .popuptext {
  visibility: hidden;
  width: 360px;
  height: 200px;
  overflow-y: scroll;
  background-color: #555;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 10px 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}
.popup .popuptext p{
  margin: 10px 10px;
}
/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class when clicking on the popup container (hide and show the popup) */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}
.fa-info-circle {
  font-size: 20px !important;
}
.popuptext {
  font-size: 1rem;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.textC {
  text-align: center;
}

.leaflet-container a {
  color: #0078a8 !important;
}

.form-select {
  display: block;
  width: 30%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.w-20 {
  width: 20%;
}
.w-50{
  width: 50%;
}
p {
  line-height: 20px;
  font-size: 16px;
}
.dInline {
  display: inline-flex;
  width: 100%;
}

.dInline label{
  margin-top: 8px;
}

.dInline2 {
  display: inline-flex;
  width: 100%;
}

.dInline2 label{
  margin-top: 28px;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple],
.form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

i.fa-solid.fa-recycle,
.recycle {
  color: #72af26;
  padding-top: 3px;
  font-weight: bold;
  font-size: 1.2em;
}

i.fa-solid.fa-shop,
.shop {
  color: #d43e2a;
  padding-top: 3px;
  font-weight: bold;
  font-size: 1.2em;
}
.leafletLegend {
  font-size: 1.3em;
  margin-bottom: 10px;
}

details p{
  margin: 10px;
  line-height: 23px !important ;
}