* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body{
    /* background-color: #F6F6F6; */
    background-color: #FFFFFF !important;
    font-family: 'Roboto ', sans-serif;
}


.carousel-item {
    transition: transform 2.0s ease-in-out;
  }
  
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: opacity 0s 2.0s;
  }
  

.category-product-img {
    width: 100%;
    height: 350px;
    object-fit: fill;
}



/* ABOUT-SECTION */

.about-card-container {
    width: 90%;
    margin: auto;
}

.about-card {
    width: 97%;
    margin: auto;
}

.about-card img {
    width: 34%;
    filter: grayscale(1) brightness(0.75);
    transition: 0.3s all linear;
    opacity: 0.6;
    padding: 35px 0;

}

.about-card .card-body p {
    font-size: 14.5px;
}

.about-card .card-body h5 {
    font-size: 18px;
}

.about-card img:hover {
    -webkit-transform: scale(0.9);
    transform: scale(1.1);
    opacity: 1;
    filter: grayscale(0) brightness(1);
}

.about-card {
    background: linear-gradient(to bottom, white 30%, #f0f0f0 100%);
    -webkit-box-shadow: 0px 8px 40px -20px black;
    /* box-shadow: 0px 8px 40px -20px black; */
    border-bottom: 5px solid #62BA46 !important;
}

/* parallex-section */
.parallex-section {
    /* background-image: linear-gradient(rgb(61, 114, 33, 0.5), rgba(61, 114, 33, 0.7)), url("./images/website_image.jpg"); */
    background-image: linear-gradient(rgba(131, 187, 100, 0.5), rgba(61, 114, 33, 0.7)), url("../images/parallax-img.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    transition: all 0.7s linear;
    /* filter: drop-shadow(2px 4px 4px #585858); */
    position: relative;
    text-align: center;
}

.parallex-text-container {
    padding: 180px 0;
}


/* inspired-section */
.category-product-card img{
    width: 100%;
}
.category-product-card img{
    /* filter: drop-shadow(4px,2pc,2px); */
}



.owl-carousel.owl-theme {
    position: relative;
}

.inspired-furniture .item div {
    /* border-radius: 20px; */
}

.owl-carousel.owl-theme .item div h4 a {
    color: #333;
}

.owl-theme .owl-nav {
    margin-top: 0px;
    left: 20px;
    width: 98%;
    display: flex;
    justify-content: space-between;
}

.designers-slider.owl-theme .owl-nav {
    width: 95%;
}

.inspired-furniture .owl-nav button.owl-next,
.inspired-furniture .owl-nav button.owl-prev {
    height: 50px;
    width: 50px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    font-size: 30px;
    z-index: 99;
    position: absolute;
    top: calc(50% - 70px);
}

.inspired-furniture .owl-nav button.owl-prev {
    left: 40px;
}

.inspired-furniture .owl-nav button.owl-next {
    right: 40px;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 812px) {
    .inspired-section .btn {
        font-size: 14px;
    }

    .inspired-furniture .item div {
        border-radius: 6px;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    }

    .inspired-furniture .item div h4 {
        font-size: 14px;
    }

    /* .owl-theme .owl-nav {
        top: calc(50% - 35px);
        width: 90%;
    }
    .designers-slider.owl-theme .owl-nav {
        width: 80%;
    } */
    .owl-carousel .owl-nav button.owl-next,
    .owl-carousel .owl-nav button.owl-prev {
        height: 30px;
        width: 30px;
        font-size: 20px;
        top: calc(50% - 35px);
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: 20px;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: 20px;
    }
}


/* ALL-PRODUCT-OWL-CAROUSEL */
.all-product-img{
    width: auto;
    margin: auto;
    height: 380px;
    object-fit: fill;
}

.carousel_se_01 .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    right: -40px;
    padding: 0px 15px 6px 15px !important;
    background:
        rgb(255, 255, 255);
    display: inline-block;
    transform: translateY(-50%);
    border-radius: 50%;
    font-size: 35px;
    line-height: 35px;
    color:
        #e0571d;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.carousel_se_01 .owl-nav button.owl-next:hover {
    background:
        #ff5e14;
    color:
        #fff;
}

.carousel_se_01 .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    left: -40px;
    padding: 0px 15px 6px 15px !important;
    background:
        rgb(255, 255, 255);
    display: inline-block;
    transform: translateY(-50%);
    border-radius: 50%;
    font-size: 35px;
    line-height: 35px;
    color:
        #e0571d;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.carousel_se_01 .owl-nav button.owl-prev:hover {
    background:
        #ff5e14;
    color:
        #fff;
}


@media screen and (max-width: 480px) {

    .category-product-img {
        width: 100%;
        height: 280px;
        object-fit: fill;
    }
    
    .all-product-img{
        width: auto;
        margin: auto;
        height: 250px;
        object-fit: fill;
    }

    /* ABOUT-SECTION */
    .about-card-container {
        width: 100%;
        margin: auto;
    }

    .about-card {
        width: 100%;
        margin: auto;
    }

    /* parallex-section */
    .parallex-text-container {
        padding: 100px 0;
    }


}

@media screen and (min-width: 768px) and (max-width: 1024px) {

    .category-product-img {
        width: 100%;
        height: 300px;
        object-fit: fill;
    }
    
    .all-product-img{
        width: auto;
        margin: auto;
        height: 330px;
        object-fit: fill;
    }

    /* ABOUT-SECTION */
    .about-card-container {
        width: 100%;
        margin: auto;
    }

    .about-card {
        width: 100%;
        margin: auto;
    }

    /* parallex-section */
    .parallex-text-container {
        padding: 120px 0;
    }


}



/* NAVBAR */
