nav {
    background-color: #fff;
}

nav .bigcar-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 1.5rem 0;
}

nav .bigcar-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

nav .bigcar-item {
    margin-left: 5rem;
}

nav .bigcar-item a {
    display: inline-block;
    font-size: 1.5rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.2rem;
    color: var(--Blue);
    font-weight: 700;
}

nav .bigcar-item a:hover {
    color: var(--red-colorHover) !important;
}

.bigcar-active-menu {
    color: var(--red-colorHover) !important;
}

.bigcar-change .bigcar-bar1 {
    -webkit-transform: rotate(-41deg) translate(-8px, 5px);
    transform: rotate(-41deg) translate(-8px, 5px)
}

.bigcar-change .bigcar-bar2 {
    opacity: 0;
}

.bigcar-change .bigcar-bar3 {
    -webkit-transform: rotate(40deg) translate(-8px, -7px);
    transform: rotate(40deg) translate(-8px, -7px);
}

.bigcar-menu i {
    color: var(--red-colorHover);
    margin-right: 0.5rem;
    display: none;
    font-size: 1.8rem;
}

@media only screen and (max-width: 1270px) {
    nav .bigcar-container {
        padding: 1.5rem;
    }
}

@media only screen and (max-width: 1200px) {
    .bigcar-menu {
         display: flex;
        position: fixed;
        top: 57px;
        left: -100%;
        width: 100%;
        height: 100%;
        text-align: left;
        transition: .3s ease;
        overflow: auto;
        z-index: 10;
        flex-direction: column;
        justify-content: flex-start !important;
        background: #e5e3e3;
    }

    .bigcar-active-menu-mb {
        left: 0;
        width: 80%;
        opacity: 1;
    }

    nav .bigcar-container .bigcar-menu li {
        width: 100%;
        flex: 0;
        padding: 3rem 1.5rem;
        margin-left: 2rem;
    }

    .bigcar-show-menu {
        position: fixed;
        top: 0;
        height: 100%;
        z-index: 999;
        background: #fff;
        flex-flow: column;
    }

    nav .bigcar-container {
        padding: 0;
    }

    nav .bigcar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        z-index: 100;
        padding: 1rem 1.5rem;
    }

    nav .bigcar-logo img {
        width: 215px;
    }

    nav .bigcar-icon-nav {
        display: inline-block;
        cursor: pointer;
    }

    .bigcar-bar1, .bigcar-bar2, .bigcar-bar3 {
        width: 35px;
        height: 4px;
        background: var(--red-colorHover);
        margin: 0.6rem 0;
        transition: 0.4s;
    }

    .bigcar-menu i {
        display: inline-block;
    }
}

@media only screen and (max-width: 768px) {
    nav .bigcar-container .bigcar-menu li {
        padding: 3rem 0;
    }

    nav .bigcar-logo {
        padding: 1rem;
    }
}



