.contents .nav-top{
    margin-top: 10px;
    background-color: #C2272D;
    height: 55px;
}
.contents .nav-top .container-custom{
    display: flex;
    align-items: center;
    height: 100%;
}
.contents .nav-top .category{
    width: 75%;
}
.contents .nav-top .search{
    padding-left: 20px;
    width: 25%;
}
.contents .nav-top .search .controll-search{
    display: flex;
    align-items: center;
    background-color: #FFF;
    border-radius: 5px;
    height: 30px;
}
.contents .nav-top .search .controll-search .icon{
    margin: auto 5px;
    width: 20px;
    height: 20px;
}
.contents .nav-top .search .controll-search input{
    border: unset;
    width: calc(100% - 20px);
}
.contents .nav-top .category .category-nav{
    display: flex;
    justify-content: space-between;
}
.contents .nav-top .category .category-nav>.nav-item{
    position: relative;
    width: calc(33.3% - 10px);
    height: 30px;
}
.contents .nav-top .category .category-nav a{
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
}
.contents .nav-top .category .category-nav>.nav-item>a{
    display: inline-block;
    padding: 4px 20px;
    background-color: #9A2829;
    color: #FFF;
    width: 100%;
    height: 30px;
}
.contents .nav-top .category .category-nav>.nav-item>.nav-child{
    position: absolute;
    top: 30px;
    width: 100%;
    background-color: #FFF;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}
.contents .nav-top .category .category-nav>.nav-item:hover>.nav-child{
    max-height: 600px;
    transition: max-height 0.3s ease;
}
.contents .nav-top .category .category-nav>.nav-item:hover>a::before{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 30px;
    background-color: #FFF;
    z-index: 1;
    opacity: 0.2;
}
.contents .nav-top .category .category-nav>.nav-item>.nav-child a{
    padding: 4px 20px;
    display: inline-block;
    width: 100%;
    border-bottom: 2px solid #888888;
}
@media only screen and (max-width: 1024px) {
	.contents .nav-top .category .category-nav>.nav-item>a{
        padding: 4px 10px;
        font-size: 15px;
    }
    .contents .nav-top .category .category-nav>.nav-item>.nav-child a{
        padding: 4px 10px;
        font-size: 15px;
    }
}
@media only screen and (max-width: 768px) {
    .contents .nav-top {
        display: none;
    }
}