.product{
    width: 100%;
    height: 350px;
}
.carbon{
    height: 100%;
}
.product .productTitle{
    display: flex;
    justify-content: center;
    align-items: center;
}
.product .productTitle h1{
    font-size: 33px;
    font-weight: 300;
    letter-spacing: 15px;
    color: var(--themeWhite);
}
.product .productImage{
    display: flex;
    justify-content: center;
    align-items: center;
}
.product img{
    width: 600px;
    height: 300px;
    object-fit: contain;
}










/* --- PRODUCT FILTER START --- */
.productFilters {
    margin: 20px 0 57px 0;
}

    .productFilters div {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .productFilters button {
        width: 50%;
        height: 41px;
        border-radius: 20px;
        margin-top: 25px;
        transition: all 0.3s;
	color: var(--themeColor);
    }

        .productFilters button:hover {
            background-color: var(--themeColorBoom);
            color: #fff;
        }

    .productFilters .active {
        background-color: var(--themeColor);
        color: #fff;
    }
/* --- PRODUCT FILTER END --- */




















/* --- RESPONSIVE START --- */
@media all and (max-width: 1300px) and (min-width: 850px) {
    .product img{
        width: 450px;
    }
    .product .productTitle h1{
        font-size: 30px;
        letter-spacing: 10px;
    }
}
@media all and (max-width: 850px) and (min-width: 50px) {
    .carbon{
        height: 57%;
    }
    .product img{
        width: 100%;
    }
    .product .productTitle h1{
        font-size: 30px;
        letter-spacing: 13px;
        text-align: center;
    }
    .bottomHr{
        margin-bottom: 150px;
    }
}
/* --- RESPONSIVE START --- */