/*<div class="bt-parent text-center pb-5">
             <del style="color: #999999;margin-right: 15px;">Rs. 1,999</del> <span style="font-size: 25px;font-weight: bold;color: #ff3366">Rs. 199 </span><br>
                    <a class="btn btn-md btn-secondary " href="#">BUY NOW </a>
                </div>*/



*,
*::before,
*::after{
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  /*font-size: 10px;*/

}
html{
  
  /*box-sizing: border-box;*/
}
.accordian-section{
  width: 100%;
  height: 120vh;
  background-color: #3c4053;
  display: flex;
  align-items: center;
  justify-content: center;
  /*font-size: 10px;*/
  box-sizing: border-box;
}
.accordian-cnt{
  width: 100%;
  max-width:80%;
  margin: 0 auto;
  padding: 0 20px;

}
.accordian-item{
  background-color: #283042;
  border-radius: 0.4rem;
  margin-bottom: 11px;
  padding: 11px;
  box-shadow: .5rem 2px 0.5rem rgba(0,0,0,.1);

}
.accordian-link{
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  background-color: #283042;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
}
.accordian-link i{
  color: #e7d5ff;
  padding: .5rem;

}
.accordian-link .fa-minus{
  display: none;
}
.answer{
  overflow: hidden;
  max-height: 0;
  position: relative;
  background-color: #212838;
  transition: max-height 650ms;

}
.answer::before{
  content: '';
  position: absolute;
  width: 7px;
  height: 90%;
  background-color: #8fc460;
  top: 50%;
  left: 0;
  transform: translateY(-50%);

}
.answer p{
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding: 20px;

}
.accordian-item:target .answer{
  max-height: 20rem;

}

.accordian-item:target .accordian-link .fa-plus{
  display: none;
}

.accordian-item:target .accordian-link .fa-minus{
  display: block;
}





