.accordian-wrap{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.acc-leftlist,.acc-rightlist{
    position: relative;
    width: 270px;
}
.acc-rightlist{
    width: 65%;
}
.acc-leftlist ul li{
    position: relative;
    font-size: 17px;
    padding: 10px 30px;
    font-weight: bold;
    cursor: pointer;
    list-style-type: none !important;
}
.acc-leftlist ul li.active{
    color: #03a9f5;
}
.acc-rightbx{
    display: none;
}
.acc-rightbx.active{
    display: block;
}

@media only screen and (max-width: 1200px) {
    .acc-rightlist{
        width: 60%;
    }
}
@media only screen and (max-width: 1023px) {
    .acc-leftlist{
        display: none;
    }
    .acc-rightlist{
        width: 100%;
    }
   .acc-rightbx{
        display: block;
    }
}