/*=======================================================================================*/
/*=======================================================================================*/
:root {
    --cl1: #3bb77e;
    --cl2: #3bb77e33;
    --cl3: #253d4e;
    --cl4: #fdc040;
    --cl5: #1b2c51;
    --cl6: #ffd510;
}
body {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;


    font-size: 15px;
    color: var(--cl3);
    line-height: 1.4;
    overflow-x: hidden;
    background-color: #fff;
    margin: 0;
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px !important;
    }
}
/*=======================================================================================*/
/*=======================================================================================*/
/*=======================================================================================*/
/*=======================================================================================*/
/*=======================================================================================*/
/*=======================================================================================*/
/*=======================================================================================*/

/*HEADER*/
header{

}
.header_top{
    padding: 10px 0;
    border-bottom: 1px solid #ececec;
    font-size: 0.85em;
}
ul.ulinfo_hdt{
    display: flex;
}
ul.ulinfo_hdt.right{
    justify-content: end;
}
ul.ulinfo_hdt > li{
    display: flex;
    align-items: center;
    margin-right: 20px;
    position: relative;
}
ul.ulinfo_hdt > li:before {
    background: #dedfe2;
    content: "";
    height: 10px;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}
ul.ulinfo_hdt > li:last-child {
    margin-right: 0
}
ul.ulinfo_hdt > li:last-child:before {
    display: none
}
ul.ulinfo_hdt > li a{
    color: #7e7e7e;
    font-weight: 500;
    text-transform: capitalize;
}
ul.ulinfo_hdt > li a.hotline{
    color: var(--cl1);
    font-weight: bold;
    font-size: 1.2em;
}


ul.ulinfo_hdt > li > ul.language-dropdown {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 0 0 4px 4px;
    min-width: 120px;
    opacity: 0;
    padding: 10px 15px;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(20px);
    transition: all .25s cubic-bezier(.645,.045,.355,1);
    visibility: hidden;
    z-index: 2;
}
ul.ulinfo_hdt > li > ul.language-dropdown li{
    margin-bottom: 5px;
}
ul.ulinfo_hdt > li:hover > ul.language-dropdown {
    opacity: 1;
    top: 31px;
    transform: translateY(0);
    visibility: visible;
}
ul.ulinfo_hdt > li:hover > a.language-dropdown-active i{
    transition: transform 0.5s;
    transform: rotateX(180deg);
}

.header_main{
    padding: 10px 0;
    border-bottom: 1px solid #ececec;
}
.header_main .row{
    align-items: center;
}
.logo_hd{
    width: 90%;
    position: relative;
}
.logo_hd a{
    display: block;
}
.logo_hd a img{
    width: auto;
}
.boxsearch_hd form{
    position: relative;
    margin-bottom: 0;
    background-color: #fff;
    border: 2px solid #b1e2cb;
    border-radius: 4px;

    display: grid;
    grid-template-columns: 170px auto;
    grid-gap: 10px;
    align-items: center;
}

.boxsearch_hd form .select{
    position: relative;
}
.boxsearch_hd form .select:after{
    background: #dedfe2;
    content: "";
    height: 10px;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}
.boxsearch_hd form .select select, .boxsearch_hd form .select select:focus{
    height: 50px;
    border: 0;
    box-shadow:none;
}
.boxsearch_hd form input{
    font-size: 14px;

    height: 50px;
    line-height: 50px;
    
    border: none;
    border-radius: 0 5px 5px 0;
}
.boxsearch_hd form button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    border: 0;
    background: #fff0;
    cursor: pointer;
    z-index: 2;
}

.boxaction_hd{
    display: flex;
    justify-content: end;
}
.boxaction_hd a.itemaction_hd{
    display: grid;
    grid-template-columns: 30px auto;
    grid-gap: 10px;
    align-items: end;
}
.boxaction_hd a.itemaction_hd.itemaction_user_hd{
    grid-gap: 0;
}
.boxaction_hd a.itemaction_hd+a.itemaction_hd{
    margin-left: 10px;
}
a.itemaction_hd > .icon{
    position: relative;
}
a.itemaction_hd > .icon > span{
    position: absolute;
    top: -5px;
    right: -11px;
    width: 20px;
    height: 20px;
    background: var(--cl1);

    border-radius: 100%;
    color: #fff;
    font-size: 0.8em;
    font-weight: 500;
    
    line-height: 20px;
    text-align: center;
}
a.itemaction_hd > .text{
    color: #7e7e7e;
    font-weight: 500;
    font-size: 1em;
}

.header_bottom{
    border-bottom: 1px solid #ececec;
}
.header_bottom.fixed{
    position: fixed;
    top: 0;
    left: 0;
    
    width: 100%;
    z-index: 999;
    transition: all .5s;
    background: #fff;
    box-shadow: 0 8px 20px 0 rgba(0,0,0,.05);
    animation: fadeInDownPP .7s ease-in-out 0s 1 normal none running;
}
@keyframes fadeInDownPP {
    0% {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}
.header_bottom .row{
    align-items: center;
}

.menu_hd{
    display: grid;
    grid-template-columns: 235px auto;
    grid-gap: 30px;
    align-items: center;
}
.menucat_hd{
    position: relative;
}
a.category_button{
    padding: 10px 15px;
    cursor: pointer;
    background: var(--cl1);
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;

    display: grid;
    grid-template-columns: 16px auto 11px;
    grid-gap: 5px;
    align-items: center;
}
a.category_button.open i.fa-angle-down{
    transform: rotate(180deg);
}
.category_dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0,0,0,.05);
    border: 1px solid var(--cl1);
    border-radius: 10px;
    min-width: 400px;
    margin-top: 20px;
    padding: 15px 10px;
    visibility: hidden;
    z-index: 999;
    opacity: 0;
    transition: all .25s ease 0s;
}
.category_dropdown.open{
    margin-top: 30px;
    opacity: 1;
    visibility: visible;
}
.category_dropdown ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}
.category_dropdown ul li{
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.category_dropdown ul li a{
    display: grid;
    grid-template-columns: 40px auto;
    grid-gap: 7px;

    font-size: 0.9em;
    font-weight: bold;
}

.menumain_hd{

}
.menumain_hd ul{
    
}
.menumain_hd > ul > li{
    position: relative;
    display: inline-block;
    line-height: 70px;
    padding: 0 15px;
}
.menumain_hd > ul > li:first-child {
    padding-left: 0 !important;
}
.menumain_hd > ul > li > a{
    display: inline-block;
    color: var(--cl3);
    font-size: 1.1em;
    font-weight: 700;
}
.menumain_hd > ul > li > a.active,
.menumain_hd > ul > li > a:hover{
    color: var(--cl1);
}
.menumain_hd > ul > li > .submenu{
    position: absolute;
    top: 100%;
    left: 0;

    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0,0,0,.05);

    border: 1px solid #ececec;
    border-radius: 10px;
    
    min-width: 250px; 
    margin-top: 20px;
    padding: 15px 10px;

    visibility: hidden;
    z-index: 999;
    opacity: 0;
    transition: all .25s ease 0s;
}
.menumain_hd > ul > li:hover > .submenu{
    margin-top: 12px;
    opacity: 1;
    visibility: visible;
}
.menumain_hd > ul > li > .submenu > li{
    position: relative;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}
.menumain_hd > ul > li > .submenu > li > a{
    display: block;
    line-height: 20px;
    color: var(--cl3);
    display: block;
    font-size: 1em;
    font-weight: bold;
    padding: 0 15px;
}

.hotline_hd{
    display: grid;
    grid-template-columns: 36px auto;
    grid-gap: 10px;
    align-items: center;
    justify-content: end;
}
.hotline_hd > div > strong{
    display: block;
    color: var(--cl1);
    font-size: 1.5em;
    line-height: 1.1;
}
.hotline_hd > div > span{
    font-size: 0.9em;
    color: #7e7e7e;
}


@media(min-width: 768px) and (max-width: 991px){
}
@media only screen and (max-width: 767px){
}

/*END HEADER*/

/*BANNER*/
.banner{
    padding: 20px 10px;
}
.boxbanner{
    position: relative;
}
.slick_banner{
    position: relative;
}
.item_banner{
    border-radius: 15px;
}
.item_banner img{
    width: 100%;
    height: auto;
    border-radius: 15px;
}
.arrow_banner{
    opacity: 0;
    transition: all .5s ease-out
}
.banner:hover .arrow_banner{
    opacity: 1;
}
.arrow_banner .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
}
.arrow_banner .banner_prev{
    left: 20px;
}
.arrow_banner .banner_next{
    right: 20px;
}
.arrow_banner .slick-arrow i{
    font-size: 1.5em;
    line-height: 40px;
}

.slick_banner .slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 0;
    bottom: 10px;
}
.slick_banner .slick-dots li {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: #fff0;
    border: 1px solid #000;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.slick_banner .slick-dots li button {
    display: none;
}
.slick_banner .slick-dots li.slick-active {
    background-color: var(--cl1);
    border: 1px solid var(--cl1);
}
/*END BANNER*/

/*FOOTER*/
footer{
    
}
footer hr{
    border-color: var(--cl1);
}
.boxinfo_ft{
    margin-bottom: 20px;
}
.boxinfo_ft > a.logoft{
    display: block;
    margin-bottom: 15px;
}
.boxinfo_ft > a.logoft > img{
    width: auto;
}
ul.contactft{
    display: grid;
    grid-gap: 10px;
}
ul.contactft li{
    display: grid;
    grid-template-columns: 16px auto;
    grid-gap: 10px;
}

.boxmenu_ft{
    margin-bottom: 20px;
}
.boxmenu_ft h3{
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: bold;
}
.boxmenu_ft ul{
    display: grid;
    grid-gap: 10px;
}
.boxmenu_ft ul li{

}
.boxmenu_ft ul li a{
    display: block;
}

.boxcopyright_ft{

}

.boxhotline_ft{
    display: grid;
    grid-template-columns: 30px auto;
    grid-gap: 10px;
    justify-content: center;
    align-items: center;
}
.boxhotline_ft div{
}
.boxhotline_ft div a{
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--cl1);
    line-height: 1.1;
}
.boxhotline_ft div span{
    font-size: 0.9em;
    color: #7e7e7e;
}

.boxsocial_ft{
    display: flex;
    grid-gap: 15px;
    align-items: center;
    justify-content: end;
}
.boxsocial_ft p{
    margin: 0;
    font-size: 1em;
    font-weight: bold;
    color: #000;
}
.gridsocial_ft{
   
}
.gridsocial_ft a{
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    background: var(--cl1);
    border-radius: 3px;
}
.gridsocial_ft a+a{
    margin-left: 5px;
}
.gridsocial_ft a:hover {
    margin-top: -2px;
    transform: translateY(-2px);
    transition: .5s all;
}
.gridsocial_ft a img{
    height: 16px;
    width: 16px;
}
.textdiscount_ft{
    text-align: right;
    font-size: 0.9em;
    color: #7e7e7e;
}

.featured_ft{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;

    padding: 30px 0;
    margin-bottom: 30px;
}
.itemfeatured_ft{
    background: #f4f6fa;
    border-radius: 10px;
    padding: 20px 10px;
    position: relative;
    display: grid;
    grid-template-columns: 60px auto;
    grid-gap: 10px;
    align-items: center;
}
.itemfeatured_ft .icon{

}
.itemfeatured_ft .text strong{
    font-size: 1.1em;
    color: #000;
}
.itemfeatured_ft .text div{
    margin-bottom: 0;
    color: #adadad;
}

.back-to-top{
    position: fixed;
    right: -50px;
    
    bottom: 30px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 30px;
    color: #000;
    width: 32px;
    height: 32px;
    overflow: hidden; 
    text-align: center; 
    z-index: 999 !important;
    transition: all .5s ease-out;

    cursor: pointer;
}

.bg_sendmail_ft{
    background-image: url(img/bg_sendmailft.png);
    background-size: cover;
    border-radius: 15px;
    clear: both;
    display: table;
    overflow: hidden;
    padding: 80px;
    width: 100%;
}
.content_sendmail_ft h4{
    margin: 0;
    padding: 0;
    margin-bottom: 50px;
    font-size: 2.5em;
    font-weight: bold;
    color: var(--cl3);
}
.content_sendmail_ft form{
    margin-bottom: 0;
    position: relative;
    max-width: 450px;
}
.content_sendmail_ft form input{
    background-color: #fff;
    background-image: url(img/icon-plane.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 25px;
    border: 0;
    border-radius: 50px;
    padding-left: 50px;
    box-shadow: none;
    font-size: 1em;
    font-weight: 600;
    width: 100%;
    height: 50px;
}
.content_sendmail_ft form button{
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;

    border: 0;
    border-radius: 50px;
    font-weight: 700;
    white-space: nowrap;
    background-color: var(--cl1);
    color: #fff;
    font-size: 1em;
    padding: 0 40px;
}

.back-to-top.display{
    right: 30px;
}

@media(min-width: 768px) and (max-width: 991px){
    .featured_ft{
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 0px;
    }
    .boxhotline_ft{
        justify-content: end;
    }

    .bg_sendmail_ft{
        padding: 50px;
    }
    .content_sendmail_ft h4{
        margin-bottom: 30px;
        font-size: 1.5em
    }
}
@media only screen and (max-width: 767px){
    .featured_ft{
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 0px;
    }
    .itemfeatured_ft{
        padding: 10px 5px;
        grid-template-columns: 40px auto;
        align-items: start;
    }
    .boxinfo_ft > a.logoft{
        text-align: center;
    }
    .boxhotline_ft{
        margin: 7px 0;
    }
    .boxsocial_ft{
        justify-content:center;
    }
    .textdiscount_ft{
        text-align: center;
    }

    .bg_sendmail_ft{
        padding: 30px;
    }
    .content_sendmail_ft h4{
        margin-bottom: 20px;
        font-size: 1.3em
    }
}
/*END FOOTER*/

.titlehead_homepage{
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: bold;
    color: var(--cl3);
}

/*DANH MUC NOI BAT*/
section.ss_categoryfeatured{
    padding: 50px 0;
}
.gridhead_ss_cf{
    display: grid;
    grid-template-columns: 50% auto;
    grid-gap: 10px;
    align-items: center;

    margin-bottom: 20px;
}
.gridhead_ss_cf .titlehead_homepage{
    margin-bottom: 0px;
}
.arrow_categoryfeatured{
    text-align: right;
}
.arrow_categoryfeatured span{
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #f2f3f4;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
}
.arrow_categoryfeatured .categoryfeatured_prev{
    
}
.arrow_categoryfeatured .categoryfeatured_next{
    
}
.arrow_categoryfeatured .slick-arrow i{
    font-size: 1.5em;
    line-height: 40px;
}

.slick_categoryfeatured{

}
.slick_categoryfeatured .slick-list{
    margin: 0 -7px;
}
/*.slick_categoryfeatured .slick-slide{
    margin-right: 55px;
    margin-left: 55px;
}*/

.item_categoryfeatured{
    padding:0 7px;
}
.item_categoryfeatured a{
    display: block;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
.slick_categoryfeatured .slick-active:nth-child(5n+1) .item_categoryfeatured a{
    background: #fffceb;
}
.slick_categoryfeatured .slick-active:nth-child(5n+2) .item_categoryfeatured a{
    background: #ecffec;
}
.slick_categoryfeatured .slick-active:nth-child(5n+3) .item_categoryfeatured a{
    background: #feefea;
}
.slick_categoryfeatured .slick-active:nth-child(5n+4) .item_categoryfeatured a{
    background: #fff3eb;
}
.slick_categoryfeatured .slick-active:nth-child(5n+5) .item_categoryfeatured a{
    background: #fff3ff;
}
.slick_categoryfeatured .slick-active:nth-child(5n+6) .item_categoryfeatured a{
    background: #f2fce4;
}
.item_categoryfeatured a img{
    width: 80%;
    border-radius: 10px;
    margin: auto;
    margin-bottom: 7px;
}
.item_categoryfeatured a h6{
    margin-bottom: 7px;
    display: inline-block;
    color: var(--cl3);
    font-size: 1em;
    font-weight: 700;
    text-align: left;

    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.item_categoryfeatured a span.count{
    color: #7e7e7e;
    font-weight: 500;
}
/*END DANH MUC NOI BAT*/

/*SAN PHAM NOI BAT*/
.ss_productfeatured{
    padding: 50px 0;
}
.grid_productfeatured{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}
/*END SAN PHAM NOI BAT*/

/*SAN PHAM*/
.ss_product{
    padding: 50px 0;
}

.slick_product{
    position: relative;
}
.slick_product .slick-list{
    margin: 0 -10px;
}
.slick_product .slick-slide{
    margin-right: 10px;
    margin-left: 10px;
}
.slick_product .slick-prev, .slick_product .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;

    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    text-align: center;

    border-radius: 50%;
    padding: 0;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all .25s ease;
}
.slick_product .slick-prev{
    left: 0px;
}
.slick_product .slick-next {
    right: 0px;
}

.slick_product .slick-prev i, .slick_product .slick-next i{
    font-size: 1.5em;
    line-height: 40px;
}

/*END SAN PHAM*/


.itemproduct{
    border-radius: 15px;
    border: 1px solid #ddd;
    overflow: hidden;
    transition: .2s;
}
.itemproduct:hover{
    border: 1px solid var(--cl2);
    box-shadow: 5px 5px 15px #0000000d;
}
.img_itemproduct{
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.img_itemproduct > a{
    display: block;
    aspect-ratio: 1 / 1;
}
.img_itemproduct > a > img{
    width: 100%;
    height: 100%;
    transition: all 1.5s cubic-bezier(0,0,.05,1);
}
.itemproduct:hover .img_itemproduct a img {
    transform: scale3d(1.1, 1.1, 1.1) translateZ(0);
}
.img_itemproduct span{
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 0.9em;
    padding: 7px 10px;
    border-radius: 0 0 15px 0;
}
.img_itemproduct span.sale{
    background: #f74b81;
}
.img_itemproduct span.new{
    background: #00c9a7;
}
.product_action{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 9;

    background: #fff;
    border: 1px solid var(--cl2);
    box-shadow: 20px 20px 40px #00000012;

    transition: all .3s ease 0s;
    opacity: 0;
    visibility: hidden;
}
.itemproduct:hover .product_action{
    opacity: 1;
    visibility: visible;
}

.product_action > a{
    position: relative;
    display: inline-block;
    width: 40px;
    height: 36px;
    line-height: 40px;
    text-align: center;
    border-right: 1px solid var(--cl1);

    transition: all .25s cubic-bezier(.02,.01,.47,1);
}
.product_action > a:last-child{
    border-right: 0;
}
.product_action > a > i {
    font-size: 1em;
    color: var(--cl1);
}
.product_action a:before{
    border: 7px solid transparent;
    border-top: 7px solid var(--cl1);
    bottom: 100%;
    content: "";
    left: calc(50% - 7px);
    margin-bottom: -13px;
    opacity: 0;
    position: absolute;
    transition-delay: .1s;
    transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(.71,1.7,.77,1.24);
    visibility: hidden;
    z-index: 9;
}
.product_action a:after{
    background-color: var(--cl1);
    border-radius: 5px;
    bottom: 100%;
    box-shadow: 4px 4px 8px rgba(0,0,0,.1);
    color: #fff;
    content: attr(aria-label);
    font-size: 0.7em;
    left: 50%;
    line-height: 1.3;
    opacity: 0;
    padding: 7px 10px;
    position: absolute;
    transform: translateX(-50%) translateY(0);
    transition-delay: .1s;
    transition: opacity .3s ease, visibility .3s ease, transform .3s cubic-bezier(.71,1.7,.77,1.24);
    visibility: hidden;
    white-space: nowrap;
}
.product_action a:hover i{
    color: #fdc040;
}
.product_action a:hover:before{
    opacity: 1;
    transform: translateY(-8px);
    visibility: visible;
}
.product_action a:hover:after{
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
    visibility: visible;
}

.content_itemproduct{
    padding: 30px 15px;
}
.content_itemproduct h2{
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--cl3);

    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.content_itemproduct h2 a{
    display: block;
    color: var(--cl3);
}
.card_itemproduct{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product_price{

}
.product_price span {
    color: var(--cl1);
    font-size: 1.1em;
    font-weight: 700;
}
.product_price span.old_price {
    color: var(--cl3);
    font-size: 1em;
    margin: 0 0 0 7px;
    text-decoration: line-through;
}
.card_itemproduct button{
    background: var(--cl2);
    border-radius: 4px;
    border:none;
    display: inline-block;
    font-size: 0.9em;
    font-weight: 700;
    color: var(--cl1);
    padding: 6px 20px;
    position: relative;

    transition: all .3s ease 0s;
}
.card_itemproduct button:hover{
    background-color: var(--cl1);
    box-shadow: 5px 5px 15px #0000000d;
    color: #fff;
    transform: translateY(-3px);
}

/*BANNER QUANG CAO*/
.ss_bannerhome{
    padding: 50px 0;
}
.grid_ss_bannerhome{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.item_bannerhome{
    position: relative;
    border-radius: 15px;
    aspect-ratio: 5 / 3;
    overflow: hidden;
}
.item_bannerhome img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.content_bannerhome{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}
.content_bannerhome h3{
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--cl3);
    transition: all .3s ease 0s;
}
.content_bannerhome a{
    display: inline-block;
    text-align: center;
    border-radius: 4px;
    background: var(--cl1);
    color: #fff;
    padding: 7px 15px;
    transition: all .3s linear 0s;
}
.content_bannerhome a:hover{
    background-color: #fdc040;
}
.content_bannerhome a:hover i {
    margin-left: 10px;
    transition-duration: .3s;
}
.item_bannerhome:hover .content_bannerhome h3{
    transform: translateY(-5px)
}
/*END BANNER QUANG CAO*/

/*SIDEBAR*/
.sidebar_wrapper{
    margin-bottom: 30px;
}
.sidebar_searchform{
    margin-bottom: 30px;
}
.sidebar_searchform form{
    position: relative;
    margin-bottom: 0px;
}
.sidebar_searchform form input{
    width: 100%;
    height: 60px;
    padding-left: 20px;
    font-size: 16px;
    border: 1px solid #ececec;
    border-radius: 10px;
    box-shadow: none;
}
.sidebar_searchform form button{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 100%;
    font-size: 20px;
    color: #242424;
    border: none;
    background-color: transparent;
    padding: 0 24px;
}

.sidebar_boxcat{
    border: 1px solid #ececec;
    border-radius: 10px;
    box-shadow: 5px 5px 15px #0000000d;
    padding: 20px;

    margin-bottom: 30px;
}
.sidebar_boxcat h4.tit_sidebarboxcat{
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ececec;
    font-size: 1em;
    font-weight: 600;
    color: var(--cl3);
    text-transform: uppercase;
}
.sidebar_boxcat ul{
}
.sidebar_boxcat ul li{
    border-bottom: 1px dotted #00000026;
    padding: 7px 0;
}
.sidebar_boxcat ul li:last-child {
    border: none;
}
.sidebar_boxcat ul li a{
    display: flex;
    justify-content: space-between;
}
.sidebar_boxcat ul li a h3{
    margin-bottom: 0;
    color: var(--cl1);
    font-size: 1em;
}

.sidebar_boxpost{
    border: 1px solid #ececec;
    border-radius: 10px;
    box-shadow: 5px 5px 15px #0000000d;
    padding: 20px;

    margin-bottom: 30px;
}
.sidebar_boxpost h4.tit_sidebarboxpost{
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ececec;
    font-size: 1em;
    font-weight: 600;
    color: var(--cl3);
    text-transform: uppercase;
}
.sidebar_boxpost ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}
.sidebar_boxpost ul li.itempost_sidebar{
    position: relative;
}
.img_itempost_sidebar{
    position: relative;
    border-radius: 10px;
    aspect-ratio: 9 / 6;
    overflow: hidden;
    margin-bottom: 7px;
}
.img_itempost_sidebar img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.info_itempost_sidebar{
    margin-bottom: 10px;
}
.info_itempost_sidebar a{
    color: var(--cl3);
}
.info_itempost_sidebar a h5{
    margin-bottom: 7px;
    font-weight: bold;
    font-size: 0.9em;
    color: var(--cl3);

    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}
.meta_itempost_sidebar{
    color: #7e7e7e;
    font-size: 0.8em;
}
.meta_itempost_sidebar span{
    display: block;
}
.meta_itempost_sidebar span i{
    margin-right: 2px;
}
/*END SIDEBAR*/

/*BREADCRUMB*/
.boxbreadcrumb{
    padding: 15px 0;
    border-bottom: 1px solid #ececec;
}
.breadcrumb_main{
    display: flex;
    font-size: 1em;
    font-weight: bold;
}
.breadcrumb_main .breadcrumb{
    margin: 0;
}
.breadcrumb_main .breadcrumb a{
    color: var(--cl1);
}
.breadcrumb_main .breadcrumb:last-child a{
    color: var(--cl3);
}
.breadcrumb_main span {
    padding: 0 10px;
    position: relative;
    text-align: center;
}
/*END BREADCRUMB*/