/* --------- ------------ ------------ ------------
    landing page
 --------- ------------ ------------ ------------*/
@media only screen and (max-width:992px){
    .container{
        width: 100% !important;
        max-width: 100% !important;
        padding:0 5%;
    }
}

/* Hero*/
#heroCarousel{
    height: 278px !important;
}

#heroCarousel .item{
    height: 278px !important;
    overflow: hidden;
}

#heroCarousel .item img{
   object-fit: cover;
    height: 278px;
}

#heroCarousel .owl-nav{
    position: absolute;
    top: 38%;
    width: 100%;
    margin: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}

#heroCarousel .owl-dots{
    position: absolute;
    width: 100%;
    bottom: 0;
}

#heroCarousel .owl-dot span{
    width: 6px;
    height: 6px;
    background-color: #EBEBEB;
    border-radius: 6px;
    margin-left: 8px;
    margin-right: 0;
}

#heroCarousel .active.owl-dot span{
    width: 12px;
    height: 6px;
    background-color: #AA0E13;
}

/*.landing-hero p{*/
/*    font-size: 18px;*/
/*    font-style: normal;*/
/*    font-weight: 500;*/
/*    line-height: 35px;*/
/*}*/

/*brand*/
.brand{
    padding: 0px;
}

.brand img {
    width: 196px;
    height: 196px;
}

@media (max-width: 992px) {
    .brand .container {
        padding: 0 24px;
    }
    /*.landing-hero p{*/
    /*    padding-right: 0px;*/
    /*    line-height: 34px;*/
    /*    padding-left: 0px;*/
    /*}*/

    .landing-slider{
        width: 100% !important;
        padding: 0 !important;
    }
}

.landing-brand{
    padding-top: 32px;
}

/*tab*/

.tab{
    padding: 0 65px;
}

.tabs-container {
    position: relative;
    width: 100%;
    padding-bottom: 10px;
    margin-top: 40px;
}

.tabs-buttons-container {
    height: 63px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.tabs-buttons-container .scroll-x{
    overflow-y: hidden;
    height: 100%;
}

.tabs-buttons-container .scroll-x::-webkit-scrollbar-thumb {
	background-color: #F8BBD0;
    display: none;
}

.tabs-buttons-container .scroll-x::-webkit-scrollbar-track {
	background-color: transparent;
    display: none;
}

.tabs-buttons-container .scroll-x ul{
    height: 100%;
}

.tabs-buttons-container .nav-tabs {
    border-width: 0 !important;
    display: flex;
    flex-wrap: nowrap;
    padding: 10px 20px 0 !important;
}

.tabs-buttons-container .nav-tabs li{
    width: 176px;
    flex: 0 0 176px;
    margin-left: 20px;
}

.tabs-buttons-container .nav-tabs .nav-link {
    border-radius: 5px;
    border: 1px solid #15542B !important;
    color: #15542B;
    background-color: transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
}

.tabs-buttons-container .nav-tabs .nav-link.active {
    background-color: #15542B !important;
    color: white !important;
    border-color: #15542B !important;
    padding: 9px;

}

.tabs-buttons-container .nav-tabs .nav-link:hover {
    background-color: #15542B;
    color: white !important;
}

.tab-pane{
    padding: 16px 4%;
}

.product-card{
    background-color: #fff !important;
}

@media (max-width: 768px) {
    #heroCarousel {
        margin: 0;
        padding: 0;
    }
    #heroCarousel  img {
        width: 100%;
        height: 278px;
    }

    .tab {
        padding: 0 16px;
    }

    .tab-pane {
        padding: 16px ;
    }

    .tabs-buttons-container {
        padding: 0 24px;
    }

    .row.row-cols-2 {
        margin: 0;
    }

    .row-cols-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .tabs-buttons-container .nav-tabs{
        padding-right: 0px !important;
    }

    .tabs-buttons-container .nav-tabs li{
        width: 115px;
        flex: 0 0 115px;
        margin-left: 10px;
    }

    .tabs-buttons-container .nav-tabs .nav-link{
        padding-left: 2px;
        padding-right: 2px;
    }


    .product-card .product-card__image{
        width: 80px;
        height: 80px;
        border: 1px solid rgba(215, 215, 215, 1);
        border-radius: 5px;
        float: right;
        margin-left: 12px;
    }

    .product-card__title{
        font-size: 14px;
        line-height: 26px;
        font-weight: 500;
        position: relative;
    }

    .product-card .clear{
        clear: both;
        content: '';
    }

    .product-card__price {
        color: #15542B;
        font-size: 16px;
        margin-top: 0;
        text-align: left;
        font-weight: 500;
    }
}


@media (min-width: 1024px) {
    /* .tabs-buttons-container li {
        flex: 0 0 calc(100% / 5.5);
    } */
}

@media (max-width: 1024px) {
    /* .tabs-buttons-container li {
        flex: 0 0 calc(100% / 4);
    } */

    .tabs-buttons-container::-webkit-scrollbar {
        height: 6px;
    }
}

/* Scroll to Top Button */
.scroll-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 1000;
}

@media (min-width: 992px) {
    .scroll-btn {
        display: block;
    }
}

