
@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;
}





/*Trade App*/
.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
  border: 1px transparent red;
  
}

.tradeTittle{
  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: 16px;
}

.rotated-numbers p {
transform: rotate(-45deg);
}



/*Footer*/
.footer {
  background-color: #333;
  padding: 20px 0;
}

.footer .span {
  color: #fff;
  font-size: 10px;
}

#menu-toggle,
#bar-btn {
  display: none;

}


/*Responsive*/

@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
}

@media(width < 1200px) {
  .content {
    margin-left: 20px;
    margin-right: 20px;
  }
  /*.aboutus .content img{
    display: none;
  }*/
}


@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;
  }

  .homepage .text h1 {
    font-size: 50px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
  }

  .homepage .text h2 {
    text-align: left;
  }

  .content {
    margin-left: 20px;
    margin-right: 20px;
  }

  .content p {
    text-align: center;
    margin-top: 5vh;
    font-size: 15px;
  }

  .content .points .poin p {
    font-size: 15px;
  }


  section .points .poin {
    width: calc(100% / 2 - 15px);
  }

}

@media (width < 560px) {

  .content p {
    text-align: center;
    margin-top: 2vh;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 14px;
  }


  .homepage .text h1 {
    font-size: 40px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;

  }

  .homepage .text h2 {
    font-size: 12px;
    font-weight: 100;
    margin-top: 10px;
    margin-bottom: 50px;
    text-align: left;
  }

  .homepage .text p {
    font-size: 15px;
  }

  .aboutus .content {
    width: 100%;
    flex-direction: column;
    text-align: justify;
    list-style: none;
    padding: 10px 0 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.04);
    margin: 10px;
  }

  .aboutus .content img{
    height: 150px;
    width: 200px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    display: block;
  }

  section .poin {
    flex-direction: column;
  }
  section .poin img {
    height: 120px;
    width: 120px;}
}