body{
 margin: 0;
 font-family: Arial, Helvetica, sans-serif;
}
.menu{
    background: rgba(5, 5, 5, 0.6);
    color: black; 
    padding: 5px; 
    z-index: 100;
    position: fixed; 
    width: 100%;
    overflow: hidden;
}

#logo{
    padding-left: 50px;
    width: 15%;
}
#menuItem{
    float: right;
    text-align: center;
    width: 30%;
    margin-top: 15px;
}
a{
    color: white;
    text-decoration: none;
    padding: 5px;
}
a:hover{
    color: rgb(42, 185, 97);
}
.banner{
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../images/banner.jpg");
    padding-top: 200px;
    position: relative;
    width: 100%;
    height: 220px;
    text-align: center;

}
h2{
    color: white;
}
.analysis{
    text-align: center;
    vertical-align: middle;
    
}

.card{
    padding: 10px;
    text-align: center;
    display: inline-block;
    width: 20%;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
}
.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.4);
  }
  .footer{
    
    bottom: 0px;
      margin-top: 20px;
      background-color: black;
      color: white;
      width: 99%;
      text-align: center;
      padding: 5px;
  }
  #Statistics{
      margin: 30px;
      display: none;
      
  }

  .dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  .dropdownStatistic {
    position: relative;
    display: inline-block;
    margin-left: 100px;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {background-color: #f1f1f1}
  
  .dropdownStatistic:hover .dropdown-content {
    display: block;
  }
  
  .dropdownStatistic:hover .dropbtn {
    background-color: #3e8e41;
  }
 
  
  input[type=range] {
    -webkit-appearance: none;
    margin: 20px 0;
    width: 100%;
  }
  input[type=range]:focus {
    outline: none;
  }
  input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    animate: 0.2s;
    background: #4CAF50;
    border-radius: 25px;
  }
  input[type=range]::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 4px 0 rgba(0,0,0, 1);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
  }
  input[type=range]:focus::-webkit-slider-runnable-track {
    background: #4CAF50;
  }
  .range-wrap{
    width: 70%;
    position: relative;
    display: inline-block;
  }
  .range-value{
    position: absolute;
    top: -50%;
  }
  .range-value span{
    width: 30px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background: #4CAF50;
    color: #fff;
    font-size: 12px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 6px;
  }
  .range-value span:before{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid #4CAF50;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    margin-top: -1px;
  }


/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #888;
  width: 50%;
  text-align: center;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
#mainslider {
  height: 100vh;
  width: 100%;
 
  -webkit-clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%, 0% 0%);
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%, 0% 0%);
  overflow: hidden;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s; }
#silder {
  width: 300%;
  position: relative;
  left: 0; }
  #silder img {
    width: 33.33%;
    float: left; }

#nxtbtn,
#prvbtn {
  height: 35px;
  width: 35px;
  background-color: white;
  font-size: 25px;
  text-align: center;
  line-height: 35px;
  border-radius: 35px;
  position: fixed;
  top: 85%;
  left: 53%;
  cursor: pointer;
  font-family: monospace; }

#prvbtn {
  left: 47%; }