/* carousel */
#carou .page-heading {
	padding: 210px 0px 130px 0px;
	text-align: center;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#carou .page-heading .text-content h1 {
	text-transform: uppercase;
    font-weight: bolder;
    font-size: 45px;
    color: #ffa332;
}

@media screen and (max-width: 750px) {
    #carou .page-heading .text-content h1 {
        font-size: 2rem;
    }

    #carou .page-heading {
        padding: 100px 0px 130px 0px;
    }
}

/* Products */

/* product category */
#products .products {
	margin-top: 70px;
}

#products .products .filters {
	text-align: center;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	margin-bottom: 60px;
}

#products .products .filters li {
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 700;
	color: #121212;
	display: inline-block;
	margin: 0px 10px;
	transition: all .3s;
	cursor: pointer;
}

#products .list {
    list-style: none;
    background: #eee;
    border-radius: 7px;
    padding: 5px 10px;
    margin: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    color: #000;
}

#products .products .filters ul li.active, #products .products .filters ul li:hover {
    color: #ffa332;
}

#products .products ul.pages {
	margin-top: 30px;
	text-align: center;
}

#products .products ul.pages li {
	display: inline-block;
	margin: 0px 2px;
}

#products .products ul.pages li a {
	width: 44px;
	height: 44px;
	display: inline-block;
	line-height: 42px;
	border: 1px solid #eee;
	font-size: 15px;
	font-weight: 700;
	color: #121212;
	transition: all .3s;
}

#products .products ul.pages li a:hover, .products ul.pages li.active a {
	background-color: #ffa332;
	border-color: #ffa332;
	color: #fff;
}
/* end of product category  */

#products .product-item {
    margin-top: 4%;
}

#products .card {
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    box-shadow: 2px 4px 4px gray;	
	height:390px;
}

#products .card img {
    width: auto;	
	height:250px;
}

#products .card .product-title {
    font-size: 22px;
    font-weight: normal;
    color: rgb(89, 128, 160);
}

#products .card .btn {
    letter-spacing: 1px;
    color: #fff;
    background-color: #ffa332;
    float: right;
    border-radius: 10px;
}

.btn.focus, .btn:focus {
    box-shadow: none !important;
}

@media only screen and (max-width:991px) {
	#products .products .filters li {
        margin: 5px 10px;
    }
}

/* pagination */
/* #pageno .pagination {
    display: inline-block;
    margin-top: 5%;
    margin-left: 42%;
}

@media screen and (max-width: 750px){
    #pageno .pagination {
        display: inline-block;
        margin-top: 5%;
       margin-left: 18%;
      }
}
  
#pageno  .pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
}
  
#pageno  .pagination a.active {
    background-color: #fcc206;
    color: white;
}
  
#pageno  .pagination a:hover:not(.active) {
    background-color: #ddd;
} */