/* Responsive Grid */

@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;
  
}

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;

}

.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;
}



.row::after {
    content: "";
    clear: both;
    display: table;
}

[class*="col-"] {
    float: left;
    padding: 15px;
    border: 1px transparent red
}

.fdiTittle{
    margin-top: 20vh;
    margin-bottom: 5vh;
    font-size: 30px;
  }
  

.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%;
}

/* Slider */
.slidecontainer {
    width: 100%;
}

.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:hover {
    opacity: 1;
}

.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;
}

/* Slider Labels*/
.rotated-numbers {
    display: flex;
    justify-content: space-between;
    font-size: small;
}

.rotated-numbers p {
    transform: rotate(-90deg)
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    [class*="col-"] {
      width: 100%;
    }
  }

  /*Footer*/
.footer {
    background-color: #333;
    padding: 20px 0;
  }
  
  .footer .span {
    color: #fff;
    font-size: 10px;
  }
  
  #menu-toggle,
  #bar-btn {
    display: none;
  
  }