
/* Top Section */
.top-section{
    padding: 24px 100px 27px 100px;
    width: 100%;
}

.top-section .left-side .logo-brand{
    width: 64px;
    height: 64px;
}

.top-section .left-side .banner-top-wrap{
    margin-left: 16px;
}

.top-section .banner-top-wrap .banner-top{
    width: 340px;
    height: 65px;
    background-size: 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    margin-right: 12px;
}

@media (max-width: 768px) {
    .top-section{
        padding: 20px 60px 18px 60px;
    }

    .top-section .left-side .banner-top-wrap{
        margin-left: 0;
        margin-bottom: 10px;
    }

    .top-section .banner-top-wrap .banner-top{
        width: calc((100% / 2) - 10px);
    }

    .top-section .left-side .logo-brand{
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 576px) {
    .top-section{
        padding: 16px 20px;
    }
}


/* navbar section */
.navbar-section{
    width: 100%;
    height: 100px;
    background-color: #F5F5F5;
    padding: 0 100px;
}

.navbar-section .btn-menu{
    color: var(--primaryNeutral500);
    margin-left: 64px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
}

.navbar-section .menu-link{
    text-decoration: none;
    color: var(--primaryNeutral500);
    margin-left: 64px;
    font-weight: 600;
}

.navbar-section .menu-link:nth-last-child(0){
    margin-left: 0;
}

.navbar-section .active{
    color: var(--primaryNeutral900);
}

.navbar-section .menu-link:hover{
    color: var(--primaryNeutral900);
}

@media (max-width: 980px) {
    .navbar-section{
        height: 80px;
    }

    .navbar-section .menu-mobile{
        position: absolute;
            top: 80px;
            left: 0;
        height: fit-content;
        width: 100%;
        background-color: #F5F5F5;
        transition: all 0.5 ease;
        z-index: 22;
    }

    .navbar-section .menu-mobile .menu-link{
        padding: 16px;
        text-align: center;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .navbar-section{
        padding: 0 60px;
    }

    
}

@media (max-width: 576px) {
    .navbar-section{
        padding: 0 20px;
    }
}

/* bottom section */
.bottom-section{
    width: 100%;
    padding: 48px 100px 100px 100px;
}

.bottom-section .banner-bottom{
    width: 100%;
    height: 267px;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
}

.bottom-section .search-wrap{
    margin-top: 80px;
    width: 65%;
}

.bottom-section .search-wrap .left-side{
    padding: 16px 0 16px 24px;
    border-radius: 100px 0 0 100px;
    border: 1.5px solid var(--primaryNeutral200);
}

.bottom-section .search-wrap .right-side{
    background-color: var(--brand500);
    border-radius: 0 100px 100px 0;

}

.bottom-section .search-wrap .right-side:hover{
    background-color: var(--brand700);
}

.bottom-section .search-wrap .btn-search{
    padding: 16px 24px;
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 600px;
    outline: none;
    border: none;
    background-color: transparent;
}

.bottom-section .search-input{
    width: 100%;
    height: fit-content;
    border: none;
    font-size: 18px;
    font-weight: 600;
    padding-left: 12px;
    color: var(--primaryNeutral500);
}

.bottom-section .search-input:focus{
    outline: none;
}

.bottom-section .search-input::placeholder{
    color: var(--primaryNeutral500);
    font-weight: 600;
}


@media (max-width: 768px) {
    .bottom-section{
        padding: 28px 60px 60px 60px;
    }

    .bottom-section .banner-bottom{
        width: 100%;
        height: 100px;
        background-size: 100% !important;
        background-repeat: no-repeat !important;
    }

    .bottom-section .search-wrap{
        margin-top: 60px;
        width: 80%;
    }

    .bottom-section .search-wrap .left-side{
        padding: 10px 0 10px 20px;
    }

    .bottom-section .search-wrap .btn-search{
        padding: 10px 20px;
        font-size: 14px;
    }
    
}

@media (max-width: 576px) {
    .bottom-section{
        padding: 20px;
    }

    .bottom-section .search-wrap{
        width: 90%;
        margin-top: 20px;
    }

    .bottom-section .search-input{
        font-size: 14px;
    }

    
}