header nav {
    display: flex;
    flex-direction: row;
}

.site-logo {
    height: 4rem;
}

ul.nav-list {
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
    gap: 1rem;
    margin: 0;
    align-items: center;
}

ul.nav-list li {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 0.5rem;
}

ul.nav-list li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-align: center;
}

ul.nav-list li a:active + i {
    color: red;
}

main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

img.manufacturer-logotype {
    display: block;
    width: 50%;
    margin: 0 auto;
}

.flex-ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
}

footer {
    display: flex;
    justify-content: center;
    background-color: rgb(248, 249, 250);
}

footer h6 {
    text-transform: uppercase;
    font-size: small;
    padding: 1rem 0;
}

footer ul {
    list-style-type: none;
}

footer .foot-sep {
    border-left: 1px solid white;
}

footer .socials {
    flex: 1
}

footer .socials ul {
    flex-direction: row;
    justify-content: space-evenly;
}

footer .socials i {
    font-size: 2rem;
    color: rgb(0, 0, 0);
}

footer h6 ~ ul {
    margin: 0;
    padding: 0;
}

.card.product {
    padding: 0.5rem;
    background-color: whitesmoke !important;
}
