@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:"Inter", sans-serif;
  font-size: 18px;
  border: 1px transparent red;
  line-height: 1.5;
}
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 100;
  }
  
  .flex {
    display: flex;
    align-items: center;
  }
  
  .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 10px;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
  
  }
  
  .content {
  text-align: center;
  margin-top: 5vh;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px; /* Adjust the maximum width as needed */
}
  
  .navbar {
    justify-content: space-between;
  }
  
  .nav-links {
    gap: 50px;
    list-style: none;
  }
  
  .navbar a {
    padding: 20px 0;
    display: inline-block;
    color: black;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s;
  }
  
  .navbar a:hover {
    color: #ff8856;
  }

  /*Homepage*/
.data {
    position: relative;
    height: 50vh;
    width: 100%;
    background: url(Images/dataPage.png);
    background-position: center;
    background-size: cover;
  }
  
  .data::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
  }
  
  .data .content {
    position: relative;
    height: 100%;
    margin-top: 10px;
    flex-direction: column;
    justify-content: center;
  }
  
  .data .text {
    color: white;
    text-align: left;
    margin-bottom: 50px;
  
  }
  
  .data .text h1 {
    font-size: 85px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
  
  }

  
  .homepage a {
    color: #333;
    text-decoration: none;
    background: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    border: 2px solid #fff;
    box-shadow: rgba(0, 0, 0, 0.3) 0 5px 10px;
    font-size: 18px;
    transition: .3s;
  }
  
  .homepage a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.3);
  }
  

  /*Responsive*/
@media (width < 860px) {
  .navbar .nav-links {
    position: fixed;
    left: 0;
    top: 80px;
    height: 100%;
    display: block;
    background: #fff;
    width: 300px;
    padding-left: 20px;
    padding-top: 40px;
    left: -100%
  }

  #menu-toggle:checked~.nav-links {
    left: 0;
  }

  .nav-links li {
    font-size: 18px;
  }

  #bar-btn {
    display: block;
    color: black;
    font-size: 22px;
    cursor: pointer;
  }
}


/* Grid System */

* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
  border: red 1px solidtransparent
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}


.selectHead {
  font-weight: bolder;
}

select {
  width: 100%;
}

/* Slider*/

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;  
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%; 
  background: #04AA6D;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
}

.number-list {
  width: 100%;
  display: flex; /* Display numbers horizontally */
  justify-content: space-between; /* Distribute numbers evenly */
}

.number-list span {
  /* Customize font, color, size, etc. */
  font-size: 0.8em;
  color: #333;
  transform: rotate(270deg);
}

.left-aligned {
  text-align: left;
}

/*Footer*/
.footer {
  background-color: #333;
  padding: 20px 0;
}

.footer .span {
  color: #fff;
  font-size: 10px;
}

#menu-toggle,
#bar-btn {
  display: none;

}

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
}

