.header {
    height: 120px;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header .col-logo img {
    width: 160px;
    height: auto;
}

.header .col-search {
    width: 525px;
    display: flex;
    flex-wrap: wrap;
    height: 60px;
    align-items: center;
    margin: auto;
    position: relative;
    display: none;
}

.header .col-search .img {
    width: 35px;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 10;
    height: 100%;
    align-items: center;
}

.header .col-search .img input {
    height: 15px;
    width: auto;
}

.header .col-search .txt {
    padding: 0px 10px;
    width: calc(80% - 35px);
    font-size: 16px;
    height: 100%;
    border: 0;
    outline: none;
    position: relative;
    background: #eee;
    border-radius: 30px;
    z-index: 5;
    padding-left: 60px;
    transition: 0.3s;
}

.header .col-search .txt:focus {
    width: calc(100% - 35px);
}

.header .col-left {
    display: flex;
    justify-content: space-between;
}

.header .col-left .col-login {
    width: 90px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.header .col-left .col-cart {
    width: 75px;
    display: none;
    /*display: flex;*/
    flex-wrap: wrap;
    justify-content: space-between;
}


.header .col-left .col-cart img {
    width: 18px;
}


.menu-container {
    background-color: #0072d3;
    position: sticky;
    top: 0px;
    z-index: 1000;
}

.menu-container .menu {
    display: flex;
    width: 600px;
    justify-content: space-around;
    align-items: center;
    height: 70px;
    margin: auto;
    font-weight: bold;
}

.menu-container .menu a {
    color: #fff;
    position: relative;
}

.menu-container .menu a:after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 2px;
    width: 0%;
    transition: 0.3s;
    background-color: #fff;
}

.menu-container .menu a:hover:after,
.menu-container .menu a.active-menu:after {
    width: calc(100% + 20px);
}

@media screen and (max-width: 767px){
    .menu-container .menu
}
