.haeder-elem{
    display:flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    background:#fff;
    opacity:0.85;
    padding:0 10px;
    box-sizing:border-box;
}
.top-title-head{
    font-size:16px;
    color:rgba(0, 0, 0, 1);
    text-transform:uppercase;
    margin-left: 1rem;
}
.menu-btn{
    position: relative;
    width:30px;
    height: 30px;
}
.dropdown-menu{
    position: absolute;
    right: 0;
    min-width: 170px;
    background: #fff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 20px;
    top: 25px;
    display:none;
}
.dropdown-menu.active{
    display:block;
}
.dropdown-menu li{
    list-style: none;
}
.dropdown-menu .dropdown-link{
    font-size:16px;
    line-height: 24px;
    color:rgba(53, 46, 42, 1);
}