
.display-query{
    display:grid;
    grid-template-column:auto auto auto auto auto;
    justify-content:space-around;
}
.display-query div{
    display : none;
}

@media only screen and (max-width: 768px){
    .client_review{
    width:33.33% !important;
    text-align:center !important;
}
.counter-icon{
    margin-right:0 !important;
}

}
@media only screen and (max-width: 480px) {
.display-query{
    display : block;
    width : 94vw;
    margin:0rem auto 1rem;
    font-size : 3.6vw;
    text-align : center;
    cursor : pointer;
}
.dropdownUnique img{
    margin-left : 10px;
}
.display-query div{
    display : block;
    margin : 0rem auto;
    padding : 1.5vw 7vw;
    border-radius : 5px;
    background-color : #0A2F64;
    color : #ffffff;
    font-weight : 600 !important;
    font-size:14px;
}
.display-query div i{
    transform : rotate(180deg)
}
.display-query ul li{
    margin : 0.5rem auto;
}

.display-none{
    display : none !important;
}

.spul{
    display : none !important;
}
.misson__content{
    padding:20px 12px 0px 12px !important;
    text-align:justify !important;
}
#br{
    display:none !important;
}
.spul1{
    display : block !important;
    animation: dropdownAnimation 0.5s forwards;
}
@keyframes dropdownAnimation {
    from {
        opacity: 0;
        transform: translateY(-5%);
    }
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}
}