.nav_line {
    padding: 24px 0;
    /* border-top: 4px solid var(--mColor); */
    /* border-bottom: 4px solid var(--mColor); */
    overflow: hidden;
    /* rotate: -2deg; */
    position: relative;
}
.nav_line::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    background: linear-gradient(to left, #2b4398 0%, #cc76ce 50%, #2b4398 100%);
}
.nav_line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background: linear-gradient(to left, #2b4398 0%, #cc76ce 50%, #2b4398 100%);
}
.nav_line > nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.nav_line p {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ded9d9;
}
@media (max-width: 768px) {
    .nav_line {
        padding: 14px 6px;
        /* display: none; */
    }
}
