
section.faq {
    padding-top: 100px;
    padding-bottom: 100px;
}
.pointer {
    cursor: pointer;
}

.accordion {
    padding: 30px;
}
.accordion h3{
    color:#333;
}
.question-set {
    transition: all 0.5s;
    margin: 0 0 20px 0;
}
.question-set,
.accordion {
    border-radius: 0px 10px 10px 10px;
}
.panel {
    display: none;
}
.panel li{
    position:relative;
    list-style:none;
    padding: 0 0 10px 25px;
    font-size:18px;
    line-height:22px;
    
}
.panel li::before{
       position: absolute;
    content: '';
    height: 17px;
    width: 16px;
    background: url(https://strongcrm.testingserverwmi.com/wp-content/uploads/2023/08/dot.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    left: 0;
    top: 4px;
}
.shaddow{
    box-shadow:0px 4px 40px 0px rgba(167, 167, 167, 0.25);
}
.activee {
    background-color: transparent;
}
.accordion i {
    transition: transform 0.3s;
}
.activee i {
    transform: rotate(180deg);
}
.faq-heading {
    margin-bottom: 50px;
}
.panel {
    padding: 0px 30px 25px 30px;
}
@media only screen and (max-width: 767px) {
    .accordion h3{
        font-size: 17px;
    }
    section.faq {
    padding-top: 50px;
    padding-bottom: 50px;
}
}