.navbar {
    justify-content: flex-start;
}

#header .navbar-section {
    max-width: fit-content;
}

#header .navbar-section:first-child {
    max-width: 25%;
}

#header .navbar-section:last-child {
    max-width: 50%;
    justify-content: center;
}

#header a {
    color: #E1AD00;
}

.dropmenu ul li a.active, .dropmenu ul li a:focus, .dropmenu ul li a:hover {
    color: #f00 !important;
}

.header-fixed #header {
    position: relative;
}

/* footer */

#footer {
    background: #030201 !important;
}

/* footer */

#start {
    position: relative; 
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    z-index: 1;
    overflow: hidden; 
    min-height: 80vh;
}


#start::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 2;
}

.header-fixed #body-wrapper {
    z-index: 3;
}

#start h1, #start h2, #start p {
    color: white;
}

.autor {
    display: flex;
    gap: 20px;
}

.autor img {
    display: block;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
}

.blocks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 20px;
}

.blocks .block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    background-color: rgba(100, 100, 100, 0.2);
    padding: 12px;
    border-radius: 6px;
}

.blocks .block img {
    max-width: 200px;
    max-height: 70px;
    height: 70px;
    display: block;
    margin: 0 auto;
}

.blocks .block h2 {
    color: #a58004 !important;
    font-size: 20px;
    text-align: left;
}

@media(max-width: 992px) {
    .blocks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width: 768px) {
    .blocks {
        grid-template-columns: 1fr;
    }

    .autor {
        flex-direction: column;
    }
}

h1, h2 {
    text-align: left !important;
    margin-bottom: 20px !important;
}

.header-fixed .mobile-menu {
    position: absolute;
}

.mobile-menu .button_container span {
    background: #a58004 !important;
}

.treemenu li a {
    color: white;
}

.treemenu li a.active, .treemenu li a:focus, .treemenu li a:hover {
    color: #a58004 !important;
}