.dropdown__title svg{
    transform: rotate(90deg);
    margin-left: 10px;
}
.dropdown__title.active svg{
    transform: none;
}
.dropdown__title:hover{
    cursor: pointer;
}
.dropdown__title{
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    background: #E8F0FB;
    padding: 18px 20px;
    align-items: center;
}
.dropdown__title span{
    font-weight: 700;
    font-size: 24px;
    color: #0C2D70;
}
.dropdown__title svg{
    transition: .3s;

}
@media  (max-width: 767px) {
    .dropdown__title span{
        font-size: 18px;
    }
    .dropdown__title svg{
        width: 18px;

    }
    .dropdown__title{
        padding: 12px;

    }
}