body {
	font-family: 'Montserrat';
}

/* -------- Header Css -------- */
.navbar {
	background-color: #000;
}

.nav-item {
	margin-right: 20px;
	font-weight: 200;
}

.nav-item.active a {
	color: #F9B234 !important;
	font-weight: 600;
}

.nav-link span {
	color: #F9B234;
	font-weight: 400;
}

.input-navbar input {
	border-radius: 0;
}

.button-navbar button {
	border-radius: 0;
	border: 0;
}

/* Carousel */

#owl-demo .item img{
    display: block;
    width: 100%;
    height: auto;
}

.single_promo{
    text-align: left;
    overflow: hidden;
    position: relative;
	margin-bottom: 30px;
}
.single_promo:before{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.35s ease 0s;
}
.single_promo:hover:before{
    opacity: 1;
}
.single_promo img{
    width: 100%;
    height: auto;
}
.single_promo .box-content{
    width: 90%;
    height: 90%;
    position: absolute;
    top: 5%;
    left: 5%;
	padding: 20px;
}
.single_promo .box-content:before,
.single_promo .box-content:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all 0.7s ease 0s;
}
.single_promo .box-content:before{
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    transform: scale(0, 1);
    transform-origin: 0 0 0;
}
.single_promo .box-content:after{
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    transform: scale(1, 0);
    transform-origin: 100% 0 0;
}
.single_promo:hover .box-content:before,
.single_promo:hover .box-content:after{
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.15s;
}
.single_promo .title {
	font-size: 15px;
	font-weight: 400;
	color: #fff;
	margin: 15px 0 5px;
	opacity: 1;
	transition: transform 0.5s ease 0s;
	background: #F9B234;
	width: auto;
	display: inline-block;
	padding: 5px 13px;
	overflow: hidden;
	letter-spacing: 2px;
}

#new-product h3 span {
	color: #F9B234;
}

@media only screen and (max-width:990px){
    .single_promo{ margin-bottom: 30px; }
}

.divider {
	position: relative;
	display: inline-block;
	background: #F9B234;
	width: 10px;
	height: 10px;
	border-radius:50%;
}
.divider:after{
	position: absolute;
	content: '';
	top: 5px;
	right: 20px;	
	background:#F9B234;
	width: 30px;
	height: 1px;
}
.divider:before{
	position: absolute;
	content: '';
	top: 5px;
	left: 20px;
	background:#F9B234;
	width: 30px;
	height: 1px;
}

/*Product*/

.product-description {
	font-weight: 200;
}

.figure h5 {
	font-weight: bold;
	color: #000;
}

.figure p {
	font-weight: 100;
	color: #171717;
	margin-top: -5px;
}

.figure-img {
	position: relative;
}

.figure-img a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 8px;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity 0.3s;
}

.figure-img:hover a {
	opacity: 1;
}

/*Product Page*/

.title-product {
	font-weight: 600;
}

.price-product {
	font-weight: 200;
}

.add-cart input {
	border-radius: 0;
}

.add-cart select {
	border-radius: 0;
}

.btn-cart {
	background-color: #9A9A9A !important;
	color: #fff;
	border-radius: 50px;
}

.btn-cart:hover {
	background-color: #656464 !important;
}

.card {
	border-radius: 0;
	box-shadow: 5px 5px 5px #888888;
	box-sizing: border-box;
}

.product-info a {
	font-weight: 400;
	color: #000;
}

.product-info .active {
	background-color: #F9B234 !important;
	border-radius: 50px;
}

.tab-pane p {
	font-weight: 200;
}

/* Footer */
footer {
	background: #000;
}

footer p, a {
	font-weight: 200;
}