/* CUSTOM */
:root {
    --bs-silver: #d9d9d9;
    --bs-golden: #ab855f;
}

/* EXTRA FONTS STYLES */
.text-small { font-size: 0.8rem; }

/* GENERAL LAYOUT */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media screen and (min-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (min-width: 992px) {
    .flex-2 {
        display: flex;
        justify-content: space-between;
        gap: 1rem
    }
    .flex-2 > *:first-child {
        max-width: calc(50% - 0.5rem);
    }
}

/* HEADER */
/* HEADER > HEADER MIDDLE */
.site-header {
    background: var(--bs-silver);
    background: white;
    color: black;
}
.site-header .site-header__main {
    height: 110px;
}
.site-header__main__logo,
.site-header__main__logo .link-logo {
    height: 100%;
}
.site-header__main__logo .link-logo {
    padding: 5px 0;
    img {
        width: 100px;
        height: 100%;
        object-fit: contain;
    }
}
/* HEADER > HEADER MENU */
.site-header__main__menu { height: 100%; }
.site-header__main__menu .primary-menu {
    height: 100%;
    align-items: center;
}

/* FOOTER */
.site-footer {
    padding-top: 1rem;
}
.site-footer__primary__about .link-logo {
    filter: invert(1);
}