/* logo */
.logo{
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-img{
    height: 45px;
    margin: auto 3px;
}
.logo-txt{
    color: #a441ff!important;
    height: max-content;
    padding: 0;
    margin: auto 3px;
    font-size: 20px;
}
.logo-footer{
    display: flex;
}

/* why choose us section */
.bd-app-service-box{
    height: 100%;
}

.bd-app-service-box .service-icon img{
    width: 50px;
}

/* FAQ accordion */
.accordion {
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  transition: 0.4s;
}
.accordion:after {
  content: '\25B6';
  color: #7a44ff;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordion.active:after {
  content: "\25BC";
}

.panel {
  padding: 0px 70px 25px 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

