.info-nav {
    background-color: rgb(201, 238, 255);
    -webkit-box-shadow: inset 0px 0px 10px 10px rgba(255,255,255,1);
    -moz-box-shadow: inset 0px 0px 10px 10px rgba(255,255,255,1);
    box-shadow: inset 0px 0px 10px 10px rgba(255,255,255,1);
}

.info-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2em;
    padding: 1.5em 1.5em;
}

.info-nav__link {
    text-decoration: none;
    color: var(--secondary-text-color);
    transition: 0.5s;
}

.info-nav__link:visited {
    color: #090047;
}

.info-nav__link:hover {
    color: #0093d2;
    transition: 0.5s;
}

.history-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.history-logo-wrapper {
    padding: 6em 0 0 0;
}

.history-logo__img {
    display: block;
    width: 18em;
    height: 6em;
}

.history__title {
    font-size: 1.7em;
    font-family: var(--font-family-secondary);
    padding: 3em 0 0.5em 0;
    color: var(--secondary-text-color);
    text-align: center;
}

.history__decoration {
    display: block;
    width: 7em;
    height: 2px;
    background-color :var(--secondary-text-color);
}

.history__text {
    font-size: 1.1em;
    line-height: 1.3em;
    font-weight: 100;
    padding: 3em 0;
    color: #3f3f3f;
}

.text-cursive {
    font-style: italic;
}

.text-bold {
    font-weight: 700;
    color: var(--secondary-text-color);
}

.history__img {
    display: block;
    width: 100%;
}

.last-img {
    padding-bottom: 5em;
}

@media (min-width: 576px) {
    .container {
        --container-width: var(--mq-size-sm);
    }

    .info-nav__list {
        gap: 5em;
    }
}

@media (min-width: 768px) {
    .container {
        --container-width: var(--mq-size-md);
    }

    .brands-nav__list {
        justify-content: space-around;
    }
}

@media (min-width: 992px) {
    .container {
        --container-width: var(--mq-size-lg);
    }

    .history__title {
        font-size: 2.2em;
    }
    
    .history-decoration {
        width: 9em;
    }

    .info-nav__list {
        gap: 7em;
    }
}

@media (min-width: 1200px) {
    .container {
        --container-width: var(--mq-size-xl);
    }
}