.navbar {
    background-color: #000000 !important;
    border-bottom: 0;
}

.tab {
    background-color: var(--color-red);
    text-align: start;
    padding: 1rem;
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--roboto-medium);
    font-size: 16px;
    line-height: 32px;
    color: #FFFFFF;

    &:not(:last-child) {
        margin-bottom: 1rem;
    }
}

.doc-content {
    background-color: #1C1C1C;
    padding: 50px;
    flex: 1;
    color: #fff;

    h1 {
        font-family: var(--roboto-bold);
        font-size: 32px;
        font-weight: 700;
        line-height: 37.5px;
    }

    p {
        font-family: var(--roboto-thin);
        font-size: 22px;
        font-weight: 400;
        line-height: 30.8px;
    }

    a {
        color: var(--color-red);
    }
}

@media (max-width:1366px) {
    .tab {
        padding: 15px;
    }
}