.top-left {
    width: 140px;
    min-width: 140px;
    height:42px;
    overflow:hidden;
    background: var(--secondary-color);
}
.top-left .shape {
    width: 100%;
    height:140px;
    background: orange;

    transform: rotate(45deg);
    transform-origin: 60px 20px;
}
.top-right {
    width: 140px;
    min-width: 140px;
    height:42px;
    overflow:hidden;
    background: var(--secondary-color);
    transform: rotate(180deg);
}
.top-right .shape {
    width: 100%;
    height:140px;
    background: orange;

    transform: rotate(45deg);
    transform-origin: 60px 20px;
    position: fixed;
}
.top-middle {
    height:42px;
    display:flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    background: var(--secondary-color);
    color: var(--light);
    font-size:24px;
    font-weight: 700;
}


.navbar {
    background:#fbfcfc !important;
    border-bottom: 1px solid rgba(var(--secondary-rgba), 0.12);
}
.container-fluid {
    padding: 12px 80px;
}
.container-fluid .navbar-list {
    flex-grow: 1;
    padding-left: 60px;
}
.container-fluid .navbar-list a {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    padding: 6.5px 12px 4px 12px;
    border-bottom: 2.5px solid transparent;
}
.container-fluid .navbar-list a:hover {
    background-color: #f0f3f4;
    border-radius: 4px;
    border-bottom: 3px solid var(--secondary-color);
}
.container-fluid img {
    width: 94px;
    padding: 0 6px;
}
.container-fluid a.signout {
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2px 6px;
    border-radius: 4px;
}
.container-fluid a.signout:hover {
    background-color: #f0f3f4;
}
.container-fluid a.signout i {
    color: var(--primary-color);
    font-size: 22px;
}

@media screen and (max-width: 1400px) {
    .container-fluid {
        padding: 2px 60px;
    }
}
@media screen and (max-width: 1200px) {
    .container-fluid {
        padding: 2px 48px;
    }
}
@media screen and (max-width: 998px) {
    .top-left, .top-right {
        width: 120px;
        min-width: 120px;
    }
    .top-left .shape, .top-right .shape {
        transform-origin: 55px 20px;
    }
    .container-fluid {
        padding: 2px 36px;
    }
}
@media screen and (max-width: 768px) {
    .top-left, .top-right {
        width: 100px;
        min-width: 100px;
    }
    .top-left .shape, .top-right .shape {
        transform-origin: 48px 20px;
    }
    .container-fluid {
        padding: 4px 25px;
    }
    .container-fluid .navbar-list {
        padding: 0px;
        text-align: center;
    }
}
@media screen and (max-width: 576px) {
    .top-left, .top-right {
        width: 80px;
    }
    .container-fluid {
        padding: 4px 12px;
    }
}