header {
    background-color: var(--primary-color);
    height: 150px;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    position: fixed;
    z-index: 999;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-nav {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: space-around;
}

.header-logo-freedom {
    width: 228px;
}

.header-logo-cipatex {
    width: 97px;
}

.header-nav-list {
    display: flex;
    justify-content: space-between;
    width: 70%;
}

.header-nav-list a {
    text-decoration: none;
    font-size: 14px;
    color: #0E100A;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}

.header-nav-list a:hover {
    color: #FFFFFF;
}

.header-banner {
    padding-top: 150px;
}

.header-banner img {
    width: 100%;
}


@media (max-width: 992px) {
    header {
        height: auto;
    }
    .header-banner {
        padding-top: 110px;
    }
    .header-logo-freedom {
        width: 150px;
    }
    
    .header-logo-cipatex {
        width: 90px;
    }
    .header-nav-list {
        justify-content: space-around;
        width: 95%;
    }
}

@media (max-width: 768px) {
    header {
        height: auto;
        position: relative;
    }
    header .container {
        flex-wrap: wrap;
    }
    .header-banner{
        display: none;
    }
    .header-nav-list{
        width: 100%;
        flex-direction: column;
    }
    .header-nav-list li {        
        padding: 10px;
        text-align: center;
        border-bottom: 1px solid var(--second-color);
    }
    .header-nav-list li:last-child {
        border-bottom: none;
    }
    .header-nav-list a {
        padding: 10px;
        display: block;
    }

    .header-logo-freedom{
        width: 30%;
        margin-right: 20%;
        order: 0;
    }
    .container-nav{
        width: 100%;
        order: 2;
    }
    .header-logo-cipatex{
        width: 20%;
        margin-left: 30%;
        order: 1;
    }
}