.nav {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-left {
    display: flex;
    align-items: center;
}
.nav-left-img {
    width: 60px;
    object-fit: contain;
}
.nav-left-col {
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.nav-left-title {
    font-size: 20px;
    font-weight: bold;
}
.nav-left-desc {
    font-size: 12px;
    color: #777;
}
.nav-right {
}
.nav-right-btn {
    display: inline-block;
    padding: 10px 15px;
    font-size: 15px;
    color: #fff;
    font-weight: bold;
    background: var(--primary-color);
    border-radius: 25px;
}
