:root {
    --main-color:#D20063;
    
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul{
    padding: 0;
}
/* =====navbar-section-section===== */
.navbar-section {
    padding-block: 10px;
}
.navbar-section>h1{
    font-size: 30px;
    color: #0A1056;
    margin-inline-start: 40px;
}
.setting-profile-parent .arrowBottom {
    cursor: pointer;
    transition: all 0.5s;
}

.arrowBottomRotate {
    transform: rotate(180deg);
}
.navbar-section .setting-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    box-shadow: 0 0 5px #ddd;

}
.setting-profile .image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 5px #ddd;
}
.navbar-section .setting-profile span:nth-child(2) {
    margin-inline: 10px;
}
@media (max-width: 1024px) {
    .navbar-section .setting-profile span:nth-child(2) {
        font-size: 15;
    }
}
/* setting-profile */
.setting-profile .image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;

}
.setting-profile-parent{
    position: relative;
}
