@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

body{
	color: #333333;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	line-height: 1.6;
	background-color: #f2f3f8;
}

img{
	max-width: 100%;
	height: auto;
}

a{
	text-decoration: none;
	-webkit-transition: ease all 0.3s;
	-moz-transition: ease all 0.3s;
	-o-transition: ease all 0.3s;
	transition: ease all 0.3s;
}

a:hover{
	-webkit-transition: ease all 0.3s;
	-moz-transition: ease all 0.3s;
	-o-transition: ease all 0.3s;
	transition: ease all 0.3s;
}

ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

h1{
	font-size: 26px;
}

h2{
	font-size: 22px;
}

h3{
	font-size: 20px;
}

h4{
	font-size: 18px;
}

h5{
	font-size: 16px;
}

h6{
	font-size: 14px;
}

h1, h2, h3{
	font-weight: 700;
}

h1, h2, h3, h4, h5, h6{
	line-height: 1.4;
}

/*----------------------
Header
----------------------*/
.header{
	padding: 8px 0;
}

.search-area{
	width: calc(100% - 190px);
	margin-right: 20px;
	float: left;
}

.search-area .btn i{
	margin-right: 0;
}

.header-top-item{
	display: flex;
	align-items: center;
	margin-right: 20px;
	float: right;
}

.header-top-item .icon i{
	font-size: 20px;
	margin-right: 10px;
	cursor: pointer;
}

.header-right .badge {
	display: block;
	width: 20px;
	height: 20px;
	line-height: 20px;
	padding: 0;
	margin-top: -20px;

}

.header .nav-brand img{
  max-width:240px;
}

/*----------------------
Nav
----------------------*/
.nav-container{
    max-width:1480px;
    width:100%;
}

nav.navbar{
	background-color: #000;
	padding: 0;
}

.navbar-nav .nav-link{
	color: #fff;
	font-weight: 300;
	font-size:13px;
	padding: 10px 0 14px 0;
    border-bottom:1px solid rgba(255, 255, 255, 0.2)
}

.navbar-nav .nav-item:last-child .nav-link{
    border-bottom: none;
}

.navbar-nav .nav-item{
	border-top: 4px solid transparent;
}

.navbar-nav .nav-item:hover,
.navbar-nav .nav-item:focus{
	color: #fffe35;
	border-top: 4px solid #fffe35;
}

.nav-container{
	max-width: 1480px;
	width: 100%;
}


.dropdown-mega .dropdown-menu{
	display: inline-block;
	opacity: 0;
	visibility: hidden;
	border-top: 5px solid #fffe35;
	transform: translateY(20px);
	transition: ease all 0.3s;
}

.dropdown-mega:hover .dropdown-menu{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: ease all 0.3s;
}

.dropdown-mega .dropdown-menu.show {
  /* Safari 4.0 - 8.0 */
  transition: ease all 0.3s;
  transform: translateY(0) !important;
}

.nav-item.dropdown.dropdown-mega {
  position: static;
}
.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 100%;
  top: auto;
  left: 5%;
}

.mega-content h5{
	display: 	inline-block;
	padding-bottom: 5px;
	margin-bottom: 8px;
	border-bottom: 1px solid #333;
}

.mega-content h5 a {
    font-size:13px;
	color: black;
	font-weight: 800;
}

/*.mega-content h5:hover  {*/
/*	border-bottom: 4px solid #fffe35;*/
/*}*/


.sub-menu a{
	display: block;
	font-size:13px;
	color: #333;
	margin-bottom: 3px;
	/*border-left: 3px solid transparent;*/
}

.sub-menu a:hover{
	/*border-left: 3px solid #333;*/
	transform: translateX(5px);
}


.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}
.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}
.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 4px;
  position: absolute;
  background: #333;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}
.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}
.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}
.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}

.navbar-expand-lg .navbar-collapse{
	display: inline-block !important;
}

/*----------------------
Hero Section
----------------------*/

/*.hero-slider-item{*/
/*	height: 510px;*/
/*	background-position:center center;*/
/*}*/

.hero-slider .slick-prev,
.hero-slider .slick-next{
	width: 40px;
	height: 40px;
}
.hero-slider-item img{
	width: 100%;
}
.hero-slider .slick-prev,
.hero-slider .slick-next,
.slick-prev,
.slick-next{
	background-color: #000;
	border-radius: 50%;
z-index: 1;
transition: ease all 0.3s;
}
.slick-prev,
.slick-next{
	width: 30px;
	height: 30px;

}

.hero-slider .slick-prev {
	left: 60px;
}
.slick-next:before,
.slick-prev:before{
  display: inline-block;
	color: transparent;
	width: 8px;
	height: auto;
	background-repeat: no-repeat;
	background-size: auto;
	background-position: center center;
  background-size: contain;
}

.slick-prev:before{
	background-image: url('../images/arrow-left.svg');
}

.slick-next:before{
	background-image: url('../images/arrow-right.svg');
}

.hero-slider .slick-next {
	right: 60px;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus{
	background-color: #fffe35;
	transition: ease all 0.3s;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before{
	filter: brightness(0);
}

.home-category{
  margin-top:-6px;
  padding:30px 0 !important;
}

.home-category-slider  .slick-list {
  padding-left: 0px!important;
}

.home-category-slider .slick-slide{
  padding:0 5px;
}

.home-category-slider .home-category-slider-item  img{
  padding:0 15px;
  margin-bottom: 10px;
}

.home-category-slider .home-category-slider-item h4 a{
  color:#fff;
  font-size: 16px;
  font-weight:600;
  margin-bottom: 0;
}

/*----------------------
Featured Offer
----------------------*/
.featured-slider .slick-track{
    margin-left: 0;
}
.featured-slider .slick-slide{
    margin:0 5px;
}

.featured-slider .slick-list,
.range-product-slider .slick-list{
  padding-left: 0 !important;
  padding-bottom:10px;
}

.feature-item{
	position: relative;
	transition: ease all 0.3s;
  border-radius:0;
	/* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
	cursor: pointer;
  padding:15px;
  /* background-color:#f9f9f9 !important; */
  border:1px solid #e7e7e7 !important;
  border-radius:8px;
  -webkit-transition: ease all 0.5s;
  -moz-transition: ease all 0.5s;
  -o-transition: ease all 0.5s;
  transition: ease all 0.5s;
}

.feature-item:hover{
  border-color:#fff !important;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
}

.feature-item .card-img{
  position: relative;;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  background-color:#fff;
  aspect-ratio: 1/1;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  overflow:hidden;
}

.card .badge{
  position:absolute;
  bottom:7px;
  right:7px;
  width: auto;
  height:auto;
  font-size: 14px;
  font-weight:600;
  padding:5px  10px;
  background-color: #000;
  color:#fff;
}

.price-area span{
  font-size: 15px;
  font-weight:500;
}

.price-area span.regular-price.on-offer{
  color:#FF0000;
  text-decoration: line-through;
}


/* .feature-item:hover{
	transition: ease all 0.3s;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
} */

/* .feature-item .card-footer{
	position: absolute;
	left: 0;
	bottom: 0;
	border: none;
} */

.feature-item .card-footer h5 a{
	color: rgb(0, 0, 0);
}

/* .feature-item:hover:before{
	height: 30%;
	transition: ease all 0.3s;
} */

.loyalty-form button{
	width: 100%;
}

.related-product-slider .slick-track{
	margin-left: inherit;
}

.stack-banner img{
  border-radius:8px;
}

.stack-banner-top-slider .slick-list,
.stack-banner-bottom-slider .slick-list{
  padding-left:0 !important;
}

.stack-banner-top-slider .slick-slide,
.stack-banner-bottom-slider .slick-slide{
  margin:0 5px;
}

/*----------------------
Range Product
----------------------*/

.range-product{
	background-color: #e5e5e5;
}

.slick-prev{
	left: -50px;
}

.slick-next{
	right: -50px;
}

.range-product-slider-item.product-card{
  padding:0;
  background-color:#1e1e1e !important;
  border:none !important;
}

.range-product-slider-item .card-body{
  text-align:center;
  padding:0 15px !important;
}

.range-product-slider-item.product-card .card-img{
  padding:0;
  background-color: #1e1e1e !important;
  aspect-ratio: 4/4;
}

.range-product-slider-item.product-card .card-body{
  padding:0 8px;
}

.range-product-slider-item img{
	margin-bottom:5px;
}

.range-product-slider-item .product-card-title{

    margin-bottom:15px;
}

.range-product-slider-item .product-card-title a{
  color:#fff;
}

/*----------------------
counter
----------------------*/

.counter-section{
	background-color: #121212;
}
.counter-item{
	text-align: center;
}
.counter-item i{
	color: #fff;
	font-size: 50px;
	margin-right: 15px;
	/*float: left;*/
	display: inline-block;
}

.counter-item .counter-right{
	/*overflow: hidden;*/
	display: inline-block;
}

.counter-item .counter-right h4{
	color: #fff;
	font-weight: 300;
	margin-bottom: 0;
}

.counter-item .counter-right h2{
	color: #fffe35;
	font-size: 34px;
	font-weight: 700;
}

/*----------------------
Recent Product
----------------------*/

.recent-product-slider .slick-list{
  padding-left: 0 !important;
}

.recent-product-slider .slick-slide{
	margin: 0 5px;
}

.recent-product-slider .recent-product-slider-item .card-img{
  margin-bottom:15px;
}

.recent-product-slider .recent-product-slider-item .card-body{
  padding:0 !important;
}



.product-card{
  padding:15px;
  border:1px solid #e7e7e7 !important;
  border-radius: 8px;
	cursor: pointer;
  -webkit-transition: ease all 0.5s;
  -moz-transition: ease all 0.5s;
  -o-transition: ease all 0.5s;
  transition: ease all 0.5s;
}

.product-card .card-img{
  margin-bottom: 15px;
  border-top-left-radius:8px;
  border-top-right-radius:8px;
  overflow: hidden;
}

.product-card .card-img{
  background-color: #fff;
 display: flex;
 padding:10px;
 align-items: center;
 /* aspect-ratio: 1/1; */
 overflow: hidden;
}

.product-card:hover{
  border-color:#fff !important;
  background-color: #fff;
  -webkit-transition: ease all 0.5s;
  -moz-transition: ease all 0.5s;
  -o-transition: ease all 0.5s;
  transition: ease all 0.5s;
  box-shadow: 0 0 20px rgb(0, 0, 0, 0.03);
}


.product-card:hover .compare-icon,
.feature-item:hover .compare-icon{
	right: 0;
}

.compare-prod-title{
	background: black !important;
	color: white;
}

.compare-icon{
	position: absolute;
	top: 0;
	right: -40px;
	background-color: #000;
	padding: 8px;
  z-index: 1;
}

.compare-icon i{
	color: #fff;
	font-size: 20px;
}
.compare-icon:hover{
	background-color: #fffe35;
}

.compare-icon:hover i{
	color: #000;
}

.product-card .card-body{
  padding: 0 !important;
	/* text-align: center; */
	/* border-top: 1px solid rgba(0, 0, 0, 0.125); */
}

.product-card-price{
	font-size: 14px;
	color: #000;
	font-weight: 700;
  margin-bottom:0;
	/*manish*/
	/* height: 36px; */
}
.price-prt{
    display:inline-block;
}

span.product-card-price {
    font-size:14px !important;
	color: #FF0000;
	font-weight: 400;
	text-decoration: line-through;
	margin-right:20px;
}

.product-card-price span{
font-size:14px !important;
	color: #FF0000;
	font-weight: 400;
	text-decoration: line-through;

}
.product-card-title{
	margin-bottom: 10px;
	/*manish*/
	/* height: 56px; */
}

.product-card-title a{
	color: #000;
	font-size: 16px;
	font-weight: 500;
}

/*.product-card-title a:hover{
	color: #fffe35;
}*/

.feature-week h5 a{
	color: #000;
	font-weight: 700;
}

.three-col-product{
	padding: 60px 0;
	background-color: #E5E5E5;
}

.feature-week .card{
	background-color: #E6E6E6;
}
.card-body{
    padding:25px  20px !important;
}

/*----------------------
Top Brands
----------------------*/

.top-brand-slider-item{
  padding:0 20px;
}
/*
.top-brand-slider-item img{
  border-radius:50%;
  aspect-ratio: 1/1;
} */

/*----------------------
Footer
----------------------*/

.footer{
	color: #fff;
	padding: 70px 0 30px 0;
	background-color: #000;
}

.footer-logo{
	display: inline-block;
	margin-bottom: 15px;
}

.footer-title{
	color: #fffe35;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.footer-contact-item{
	margin-bottom: 30px;
}

.footer-contact-item a{
	color: #fff;
}

.footer-contact-item a:hover{
	color: #fffe35;
}

.footer-contact-item p{
	margin-bottom: 3px;
}

.footer-item ul li{
	margin-bottom: 15px;
}

.footer-item ul li a{
	color: #fff;
}


.footer-item ul li a:hover{
color: #fffe35;
}
.footer-si{
	margin-top: 30px;
}

.footer-si li{
	display: inline-block;
	text-align: center;
}

.footer-si li a{
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	background-color: transparent;
	border-radius: 50%;
}
.footer-si li a:hover{
	background-color: #000;
}


.footer-si li a:hover svg path{
	fill:#fff;
	/*background-color: #fffe35;*/
}

.copyright{
	padding: 10px 0;
	background-color: #fffe35;
}

.copyright P{
	margin-bottom: 0;
}

.copyright P a{
	color: #000;
}

/*----------------------
Bootstrap
----------------------*/

.btn{
	padding: 10px 20px;
	border-radius: 0;
}

.btn-dark{
	background-color: #000;
	border-color: #000;
}
.btn-dark:hover,
.btn-light:hover{
  color:#121212;
  background-color: #fffe35;
  border-color: #fffe35 !important;
}

.btn-outline-primary{
	color: #fff;
	border-color: #fffe35 !important;
}
.btn-outline-primary:hover{
	color: #000 !important;
	background-color: #fffe35;
}

.form-control{
	border-radius: 0;
}

.form-control:focus{
	border-color: #e5e431;
}


.rounded{
	border-radius: 10px !important;
}

.card{
  background-color:transparent;
	overflow: hidden	;
  border:none;
  border-radius: 0;
}

.card-footer{
  padding:0;
  background-color:transparent;
  border:none;
}

.form-check-input[type=checkbox]{
	border-radius: 0;
}

/*----------------------
Product Detail
----------------------*/

.product-detail-top{
	background-color: #fff;
	/*border: 1px solid #e6e6e6;*/
	padding: 25px;
	margin-bottom: 40px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.product-detail .product-name{
	font-weight: 600;
}

.product-int{
	color: #707070;
	padding: 10px 0;
}

.int-title{
	font-weight: 400  !important;
	display: inline-block;
	min-width:150px;
	float: left;
}

.product-int span{
	color: #000;
	font-weight: 700;
}

.product-int .cube{
width: 25px;
height: 25px;
line-height: 25px;
display: inline-block;
text-align: center;
margin-right: 8px;
border: 1px solid #eaeaea;
}

.product-int.size .cube{
color: #707070;
font-weight: 400;
}

.product-int.color .cube{
	margin-bottom: -7px;
}

.product-int.color .cube.red{
	background-color: red;
}

.product-int.price{
	border-bottom: 1px solid #ededed;
}

.product-total-price{
	padding: 10px 0;
	border-top: 1px solid #ededed;
	border-bottom: 1px solid #ededed;
}

.product-total-price .int-title{
	font-size: 16px;
	font-weight: 400;
}

.product-total-price span{
	font-size: 16px;
}

.product-share .footer-si{
	display: inline-block;
}

/*.product-share .footer-si li a{
	border: 1px solid #ededed;
}
*/
.img-display{
    overflow: hidden;
}
.img-showcase{
    display: flex;
    width: 100%;
    transition: all 0.5s ease;
}
.img-showcase img{
    min-width: 100%;
}
.product-imgs{
    display: flex;

}

.img-select{
	margin-right: 20px;
}
.img-item{
    margin: 0.3rem;
}

.img-item img{
	max-width: 80px;
}
.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3){
    margin-right: 0;
}
.img-item:hover{
    opacity: 0.8;
}

.product-info-wrap{
	margin-bottom: 40px;
}

.nav-tabs .nav-link{
	color: #000;
	font-weight: 600;
	border: 1px solid  #ededed;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active{
	color: #fffe35;
	background-color: #000;
}

.tab-content{
	padding: 40px;
	background-color: #fff;
	/*border: 1px solid #e6e6e6;*/
	box-shadow: 0 1px  2px  rgba(0, 0, 0, 0.05);
}

.related-product-section{
	padding: 30px;
	background-color: #fff;
	/*border: 1px solid #e6e6e6;*/
	box-shadow: 0 1px  2px rgba(0, 0, 0, 0.05);
}

.related-product-slider .slick-slide{
	margin: 0 5px;
}

/*----------------------
Store Locator
----------------------*/

.sidebar{
    position: sticky;
    top:20px;
}

.branch-card .sidebar-widget-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:20px;
	padding: 20px;
}

.branch-card h2{
	font-weight: 700;
}

.branch-card p{
	font-size: 18px;
	margin-bottom: 5px;
}

.branch-card a{
	color: #000;
}

.store-map{
    position: sticky;
    top: 20px;
}

/*----------------------
About page
----------------------*/

.our-mission .icon,
.our-vision .icon,
.our-goal .icon{
	margin-right: 20px;
	float: left;
}

.our-mission .content,
.our-vision .content,
.our-goal .content{
	overflow: hidden;
}

/*----------------------
Contact Page
----------------------*/

.contact-area-wrap{
	background-color: #fff;
	box-shadow: 0  0  20px  rgba(0, 0, 0, 0.04);
}

.get-in-touch{
	color: #fff;
	padding: 40px;
	background-color: #000;
}

.get-in-touch h2,
.get-in-touch h4{
	color: #fffe35;
}

.contact-item{
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255,0.1);
}

.contact-item:last-child{
	padding-bottom: 0;
	border-bottom: none;
}

.contact-item .icon{
	float: left;
	margin-right: 10px;
}

.contact-item .icon i{
	color: #fffe35;
	font-size: 20px;
}

.contact-item .content{
	overflow: hidden;
}

.contact-item a{
	color: #fff;
}

.si-wrap{
	text-align: center;
	margin: 30px 0;
}

.si-wrap li{
	display: inline-block;
	margin: 0 2px;
}

.si-wrap li a{
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 35px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.si-wrap li a:hover{
	background-color: #fffe35;
}

.si-wrap li a:hover svg path{
	fill: #000;
}

/*----------------------
Sidebar
----------------------*/

.show-hide-btn{
  padding:8px 15px;
  margin-bottom:30px;
}

.show-hide-btn:hover,
.show-hide-btn:visited{
  color:#333;
  background-color: #fffe35;
  border-color:#fffe35;
  box-shadow: none;
}

.sidebar-widget{
	margin-bottom: 30px;
}

.sidebar-widget:last-child{
	margin-bottom: 0;
}

.sidebar-header{
	background-color: #fff;
	padding: 15px  20px;
	border-bottom: 1px solid #e2e5ec;
}

.sidebar-header h4{
	color: #1b1b28;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 0;
}

.sidebar-widget-inner{
	padding: 20px;
	background-color: #fff;
	box-shadow: 0 3px 20px rgba(0, 0, 0, 0.03);
}

.sidebar-widget-inner .form-check{
	margin-bottom: 10px;
}

.sidebar-widget-inner .form-check:last-child{
	margin-bottom: 0;
}

.sidebar-widget-inner .form-check .form-check-input:checked{
	background-color: #000;
	border-color: #000;
}

.filter-by-color{
	display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.filter-by-color .btn-group label.btn{
	padding: 0;
}

.color-pallet{
	display: inline-block;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 1px solid #eee;
}

.color-pallet.red{
	background-color: red;
}

.color-pallet.blue{
	background-color: blue;
}

.color-pallet.white{
	background-color: white;
}

.color-pallet.green{
	background-color: green;
}

.color-pallet.black{
	background-color: black;
}

.color-pallet.yellow{
	background-color: yellow;
}

.color-pallet.grey{
	background-color: grey;
}

.color-pallet.maroon{
	background-color: maroon;
}

.color-pallet.light-grey{
	background-color: #e2e2e2;
}

.color-pallet.dark-blue{
	background-color: #080593;
}

.color-pallet.light-green{
	background-color: #76f73f;
}

.color-pallet.orange{
	background-color: orange;
}

.btn-check:checked+.btn-outline-primary{
	background-color: inherit;
}

.btn-check:checked+.color-pallet{
	box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 1);
}

.btn-check:active+.btn-dark:focus, .btn-check:checked+.btn-dark:focus, .btn-dark.active:focus, .btn-dark:active:focus, .show>.btn-dark.dropdown-toggle:focus{
  box-shadow: none;
}

/*----------------------
Miscellanous
----------------------*/

main{
	margin-bottom: 50px;
}

.btn i{
	margin-right: 10px;
}

.block{
	padding: 50px 0;
}

.counter-section.block{
	padding:40px 0;
}

/* .bottom-overlay{
	position: relative;
}

.bottom-overlay:before{
	content: " ";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	transition: ease all 0.3s;
background: -moz-linear-gradient(top,  rgba(30,87,153,0) 0%, rgba(0,1,2,1) 99%, rgba(0,0,0,1) 100%);
background: -webkit-linear-gradient(top,  rgba(30,87,153,0) 0%,rgba(0,1,2,1) 99%,rgba(0,0,0,1) 100%);
background: linear-gradient(to bottom,  rgba(30,87,153,0) 0%,rgba(0,1,2,1) 99%,rgba(0,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#001e5799', endColorstr='#000000',GradientType=0 );

} */

.page-header{
	padding: 15px 0;
}

.page-header h1{
	margin-bottom: 10px;
	font-weight: 600;
}

.section-title{
	margin-bottom: 30px;
	font-weight: 800;
}

.breadcrumb{
	margin-bottom: 0;
}

.breadcrumb-item a{
	color: #777;
}














.range-slider {
  width: auto;
  margin: auto;
  text-align: center;
  position: relative;
  height: 50px;
}
.range-slider svg,
.range-slider input[type=range] {
  position: absolute;
  left: 0;
  bottom: 0;
}
.range-slider input[type=number] {
  border:none;
  font-size: 14px;
  -moz-appearance: textfield;
}
.range-slider input[type=number]::-webkit-outer-spin-button,
.range-slider input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.range-slider input[type=number]:invalid,
.range-slider input[type=number]:out-of-range {
  border: 2px solid #ff6347;
}
.range-slider input[type=range] {
  -webkit-appearance: none;
  width: 100%;
}
.range-slider input[type=range]:focus {
  outline: none;
}
.range-slider input[type=range]:focus::-webkit-slider-runnable-track {
  background: #000;
}
.range-slider input[type=range]:focus::-ms-fill-lower {
  background: #000;
}
.range-slider input[type=range]:focus::-ms-fill-upper {
  background: #000;
}
.range-slider input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: #000;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}
.range-slider input[type=range]::-webkit-slider-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid #000;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #fffe35;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}
.range-slider input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: #000;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}
.range-slider input[type=range]::-moz-range-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid #fffe35;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #fffe35;
  cursor: pointer;
}
.range-slider input[type=range]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.range-slider input[type=range]::-ms-fill-lower,
.range-slider input[type=range]::-ms-fill-upper {
  background: #000;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}
.range-slider input[type=range]::-ms-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid #fffe35;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #a1d0ff;
  cursor: pointer;
}






























/*




@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.dropdown-menu.show {
  -webkit-animation: fadeIn 0.3s alternate;
  /* Safari 4.0 - 8.0 */
/*  animation: fadeIn 0.3s alternate;
}*/



.nav-item.dropdown.dropdown-mega {
  position: static;
}
.nav-item.dropdown.dropdown-mega .dropdown-menu {
  width: 75%;
  top: auto;
  left: 5%;
}

.navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler .hamburger-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  z-index: 11;
  float: right;
}
.navbar-toggler .hamburger-toggle .hamburger {
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  pointer-events: none;
}
.navbar-toggler .hamburger-toggle .hamburger span {
  width: 100%;
  height: 2px;
  position: absolute;
  background: #fff;
  border-radius: 2px;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
  left: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger span:first-child {
  top: 10%;
  transform-origin: 50% 50%;
  transform: translate(0% -50%) !important;
}
.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.navbar-toggler .hamburger-toggle .hamburger span:last-child {
  left: 0px;
  top: auto;
  bottom: 10%;
  transform-origin: 50% 50%;
}
.navbar-toggler .hamburger-toggle .hamburger.active span {
  position: absolute;
  margin: 0;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
  top: 45%;
  transform: rotate(45deg);
}
.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
  left: 50%;
  width: 0px;
}
.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
  top: 45%;
  transform: rotate(-45deg);
}

.icons {
  display: inline-flex;
  margin-left: auto;
}
.icons a {
  transition: all 0.2s ease-in-out;
  padding: 0.2rem 0.4rem;
  color: #ccc !important;
  text-decoration: none;
}
.icons a:hover {
  color: white;
  text-shadow: 0 0 30px white;
}


.tabula-tooltip[data-title]:not([data-title=""]) {
  position: relative;
  display: inline-block;
}
.tabula-tooltip[data-title]:not([data-title=""])::before,
.tabula-tooltip[data-title]:not([data-title=""])::after {
  position: absolute;
  display: block;
  top: -5px;
  left: 50%;
  z-index: 1070;
  opacity: 0;
  transition: opacity 0.15s linear;
}
.tabula-tooltip[data-title]:not([data-title=""])::before {
  content: "";
  transform: translateX(-50%);
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color:  transparent  transparent #fffe35 transparent ;
}
.tabula-tooltip[data-title]:not([data-title=""])::after {
  content: attr(data-title);
  transform: translateX(-30%) translateY(40px);
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  line-break: auto;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  font-size: 12px;
  max-width: 200px;
  padding: 3px 8px;
  color: #000;
  text-align: center;
  background-color: #fffe35;
  border-radius: 0px;/*
  min-width: 150px;*/
  pointer-events: none;
  transition: ease all 0.4s;
}
.tabula-tooltip[data-title]:not([data-title=""]):hover::before,
.tabula-tooltip[data-title]:not([data-title=""]):hover::after {
  opacity: 1;
  transform: translateX(-30%) translateY(35px);
  transition: ease all 0.4s;
}


/*! nouislider - 14.6.2 - 9/16/2020 */
                                                            .noUi-target, .noUi-target * {
                                                                -webkit-touch-callout: none;
                                                                -webkit-tap-highlight-color: transparent;
                                                                -webkit-user-select: none;
                                                                -ms-touch-action: none;
                                                                touch-action: none;
                                                                -ms-user-select: none;
                                                                -moz-user-select: none;
                                                                user-select: none;
                                                                -moz-box-sizing: border-box;
                                                                box-sizing: border-box
                                                            }

                                                            .noUi-target {
                                                                position: relative
                                                            }

                                                            .noUi-base, .noUi-connects {
                                                                width: 100%;
                                                                height: 100%;
                                                                position: relative;
                                                                z-index: 1
                                                            }

                                                            .noUi-connects {
                                                                overflow: hidden;
                                                                z-index: 0
                                                            }

                                                            .noUi-connect, .noUi-origin {
                                                                will-change: transform;
                                                                position: absolute;
                                                                z-index: 1;
                                                                top: 0;
                                                                right: 0;
                                                                -ms-transform-origin: 0 0;
                                                                -webkit-transform-origin: 0 0;
                                                                -webkit-transform-style: preserve-3d;
                                                                transform-origin: 0 0;
                                                                transform-style: flat
                                                            }

                                                            .noUi-connect {
                                                                height: 100%;
                                                                width: 100%
                                                            }

                                                            .noUi-origin {
                                                                height: 10%;
                                                                width: 10%
                                                            }

                                                            .noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
                                                                left: 0;
                                                                right: auto
                                                            }

                                                            .noUi-vertical .noUi-origin {
                                                                width: 0
                                                            }

                                                            .noUi-horizontal .noUi-origin {
                                                                height: 0
                                                            }

                                                            .noUi-handle {
                                                                -webkit-backface-visibility: hidden;
                                                                backface-visibility: hidden;
                                                                position: absolute
                                                            }

                                                            .noUi-touch-area {
                                                                height: 100%;
                                                                width: 100%
                                                            }

                                                            .noUi-state-tap .noUi-connect, .noUi-state-tap .noUi-origin {
                                                                -webkit-transition: transform .3s;
                                                                transition: transform .3s
                                                            }

                                                            .noUi-state-drag * {
                                                                cursor: inherit !important
                                                            }

                                                            .noUi-horizontal {
                                                                height: 7px
                                                            }

                                                            .noUi-horizontal .noUi-handle {
                                                               /* width: 34px;
                                                                height: 28px;
                                                                right: -17px;
                                                                top: -6px*/

                                                                /*manish*/
                                                                    width: 20px;
    height: 20px;
    right: -9px;
    top: -7px;
    border-radius: 50%;
        background: #fffe35;
                                                            }

                                                            .noUi-vertical {
                                                                width: 18px
                                                            }

                                                            .noUi-vertical .noUi-handle {
                                                                width: 28px;
                                                                height: 34px;
                                                                right: -6px;
                                                                top: -17px
                                                            }

                                                            .noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
                                                                left: -17px;
                                                                right: auto
                                                            }

                                                            .noUi-target {
                                                                background: #FAFAFA;
                                                                border-radius: 4px;
                                                                border: 1px solid #D3D3D3;
                                                                box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB
                                                            }

                                                            .noUi-connects {
                                                                border-radius: 3px
                                                            }

                                                            .noUi-connect {
                                                                background: black !important;
                                                            }

                                                            .noUi-draggable {
                                                                cursor: ew-resize
                                                            }

                                                            .noUi-vertical .noUi-draggable {
                                                                cursor: ns-resize
                                                            }

                                                            .noUi-handle {
                                                                /*border: 1px solid #D9D9D9;*/
                                                                border: 1px solid black;
                                                                border-radius: 3px;
                                                                background: #FFF;
                                                                cursor: default;
                                                                box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB
                                                            }

                                                            .noUi-active {
                                                                box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB
                                                            }
                                                            /*manish*/
                                                           /* .noUi-handle:after, .noUi-handle:before {
                                                                content: "";
                                                                display: block;
                                                                position: absolute;
                                                                height: 14px;
                                                                width: 1px;
                                                                background: #E8E7E6;
                                                                left: 14px;
                                                                top: 6px
                                                            }*/

                                                            .noUi-handle:after {
                                                                left: 17px
                                                            }

                                                            .noUi-vertical .noUi-handle:after, .noUi-vertical .noUi-handle:before {
                                                                width: 14px;
                                                                height: 1px;
                                                                left: 6px;
                                                                top: 14px
                                                            }

                                                            .noUi-vertical .noUi-handle:after {
                                                                top: 17px
                                                            }

                                                            [disabled] .noUi-connect {
                                                                background: #B8B8B8
                                                            }

                                                            [disabled] .noUi-handle, [disabled].noUi-handle, [disabled].noUi-target {
                                                                cursor: not-allowed
                                                            }

                                                            .noUi-pips, .noUi-pips * {
                                                                -moz-box-sizing: border-box;
                                                                box-sizing: border-box
                                                            }

                                                            .noUi-pips {
                                                                position: absolute;
                                                                color: #999
                                                            }

                                                            .noUi-value {
                                                                position: absolute;
                                                                white-space: nowrap;
                                                                text-align: center
                                                            }

                                                            .noUi-value-sub {
                                                                color: #ccc;
                                                                font-size: 10px
                                                            }

                                                            .noUi-marker {
                                                                position: absolute;
                                                                background: #CCC
                                                            }

                                                            .noUi-marker-sub {
                                                                background: #AAA
                                                            }

                                                            .noUi-marker-large {
                                                                background: #AAA
                                                            }

                                                            .noUi-pips-horizontal {
                                                                padding: 10px 0;
                                                                height: 80px;
                                                                top: 100%;
                                                                left: 0;
                                                                width: 100%
                                                            }

                                                            .noUi-value-horizontal {
                                                                -webkit-transform: translate(-50%, 50%);
                                                                transform: translate(-50%, 50%)
                                                            }

                                                            .noUi-rtl .noUi-value-horizontal {
                                                                -webkit-transform: translate(50%, 50%);
                                                                transform: translate(50%, 50%)
                                                            }

                                                            .noUi-marker-horizontal.noUi-marker {
                                                                margin-left: -1px;
                                                                width: 2px;
                                                                height: 5px
                                                            }

                                                            .noUi-marker-horizontal.noUi-marker-sub {
                                                                height: 10px
                                                            }

                                                            .noUi-marker-horizontal.noUi-marker-large {
                                                                height: 15px
                                                            }

                                                            .noUi-pips-vertical {
                                                                padding: 0 10px;
                                                                height: 100%;
                                                                top: 0;
                                                                left: 100%
                                                            }

                                                            .noUi-value-vertical {
                                                                -webkit-transform: translate(0, -50%);
                                                                transform: translate(0, -50%);
                                                                padding-left: 25px
                                                            }

                                                            .noUi-rtl .noUi-value-vertical {
                                                                -webkit-transform: translate(0, 50%);
                                                                transform: translate(0, 50%)
                                                            }

                                                            .noUi-marker-vertical.noUi-marker {
                                                                width: 5px;
                                                                height: 2px;
                                                                margin-top: -1px
                                                            }

                                                            .noUi-marker-vertical.noUi-marker-sub {
                                                                width: 10px
                                                            }

                                                            .noUi-marker-vertical.noUi-marker-large {
                                                                width: 15px
                                                            }

                                                            .noUi-tooltip {
                                                                display: block;
                                                                position: absolute;
                                                                border: 1px solid #D9D9D9;
                                                                border-radius: 3px;
                                                                background: #fff;
                                                                color: #000;
                                                                padding: 5px;
                                                                text-align: center;
                                                                white-space: nowrap
                                                            }

                                                            .noUi-horizontal .noUi-tooltip {
                                                                -webkit-transform: translate(-50%, 0);
                                                                transform: translate(-50%, 0);
                                                                left: 50%;
                                                                bottom: 120%
                                                            }

                                                            .noUi-vertical .noUi-tooltip {
                                                                -webkit-transform: translate(0, -50%);
                                                                transform: translate(0, -50%);
                                                                top: 50%;
                                                                right: 120%
                                                            }

                                                            .noUi-horizontal .noUi-origin>.noUi-tooltip {
                                                                -webkit-transform: translate(50%, 0);
                                                                transform: translate(50%, 0);
                                                                left: auto;
                                                                bottom: 10px
                                                            }

                                                            .noUi-vertical .noUi-origin>.noUi-tooltip {
                                                                -webkit-transform: translate(0, -18px);
                                                                transform: translate(0, -18px);
                                                                top: auto;
                                                                right: 28px
                                                            }

#our-range-of-products div.slick-slide{
	margin:0 10px;
}

.typed-search-box{
	z-index: 9999999999;
}

.compare-notification{
	background-color: #e5e431 !important;
    color: black;
}


.bdu-form-active:focus{

border-color: #e5e431 !important;
box-shadow: 0 0 0 0.15rem rgb(217 215 58 / 31%);
}

.advertisement-section.home-banner-1{
	margin-top: 30px;
}

.advertisement-section.home-banner-2{

}

.advertisement-section.home-banner-3{
	margin-bottom: 40px;
}

/*2022/6/1*/

.view-all-link{
	font-size: 14px;
	font-weight: 500;
	padding: 8px  20px;
	margin-bottom: -9px;
	float: right;
	border-bottom: 4px solid #fffe35;
	box-shadow: -2px -2px  10px rgba(0, 0, 0, 0.1);
}

.view-all-link:hover{
	border-bottom: 4px solid #fffe35;
}


.nav-item.dropdown.dropdown-mega .dropdown-menu{
	overflow: hidden;
}

.dropdown-menu{
	margin-top: 0 !important;
	border: none;
}

.nav-item.more-nav .dropdown-menu{
	display: inherit;
	opacity: 0;
	visibility: hidden;
	border-top: 5px solid #fffe35;
	transform: translateY(20px);
	transition: ease all 0.3s;
}

.nav-item.more-nav .nav-link.dropdown-toggle:hover ~ .dropdown-menu{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: ease all 0.3s;
}

.nav-item.more-nav .dropdown-menu:hover{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: ease all 0.3s;
}

.nav-item.more-nav .dropdown-item:focus,
.nav-item.more-nav .dropdown-item:hover{
	background-color: transparent;
	transform: translateX(5px);
}

.more-nav .dropdown-menu{
	right: 0;
	min-width: inherit;
	max-width: inherit;
}

a.onHover:hover{
	color: black !important;
}

a.onHover{

	/*border-left: 5px solid #e5d92c;*/
	padding-bottom: 10px;
}



.skip-popup-wrap{
	position: relative;
}

.skip-popup-wrap .modal{
	display: table !important;
}

.skip-popup-wrap .modal .modal-dialog{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.skip-popup .modal-body a.pre-order-btn {
  color: #000;
  background-color: gold;
  border-radius: 1em;
  padding: 1em;
  display: block;
  margin: 2em auto;
  width: 50%;
  font-size: 1.25em;
  font-weight: 600;
}
.skip-popup .modal-body a.pre-order-btn:hover {
  background-color: #000;
  text-decoration: none;
  color: gold;
}

.skip-popup p{
	text-align: center;
	color: #fff;
}

.skip-popup .modal-content{
	background-color: transparent;
	/*max-width: 650px;*/
	max-width: 900px;
	border: none;
	width: 100%;
	margin: 0 auto;
	padding: 0 30px;
}

.skip-popup .modal-content img{
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.btn-warning{
	background-color: #fffe35;
	border-color: #fffe35;
}

.skip-popup .skip-btn{
	float: right;
	padding: 2px 10px;
    font-weight: 700;
}

a.nav-link{
	text-transform: uppercase;
	font-weight: 500 !important;
}

.aiz-square-check:after{
	border: 1px solid white;
}

.blog-card{
	margin-bottom: 30px;
}

s


.blog-card .card-body .cat{
	display: inline-block;
	font-size: 12px;
	margin-bottom: 5px;
}

/* .product-card .card-body, */
.blog-card .card-body{
	border: 1px solid rgba(0, 0, 0, 0.125);
}

.related-blog{
    padding-bottom: 15px;
}

.related-blog figure{
        float:left;
        margin-right: 10px;
        width:100px;
}

.related-blog .content{
    overflow: hidden;
}

.product-card-title a,
.blog-card-title a{
	color: #000;
	font-size: 16px;
	font-weight: 500;
}

h1.entry-title{
	font-size: 3.5em;
}


.post-content#blog-post-content p{
	text-align: left;
}
.post-content a{
    color:#e5e431;
}

.text-primary{
	color: black !important;
	font-weight: 800 !important;
}

.text-warning{
  color:#fffe35  !important;
}

.page-item.active .page-link,.pagination .page-link:hover{
	    background-color: #000;
    border-color: #000;
}

span.int-value{
	overflow: hidden;
    display: block;
    font-weight: 400;
}

a.reset-compare-btn:hover{
	background: black;
    color: white;
    border-color: black;
}


.alert-success{
	color: white !important
}

.alert-danger{
	color: white !important

}






/* Compatibility styles for frameworks like bootstrap, foundation e.t.c */
.xzoom-source img, .xzoom-preview img, .xzoom-lens img {
  display: block;
  max-width: none;
  max-height: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
/* --------------- */

/* xZoom Styles below */
.xzoom-container {
  display: inline-block;
}

.xzoom-thumbs {
	margin-right: 15px;
  margin-bottom: 10px;
  float: left;
}

.xzoom-thumbs a{
	display: block;
}

.xzoom {
	max-width: 400px;
	width: 100%;
	margin-bottom: 20px;
	float: right;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
}
.xzoom2, .xzoom3, .xzoom4, .xzoom5 {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
}

/* Thumbs */
.xzoom-gallery, .xzoom-gallery2, .xzoom-gallery3, .xzoom-gallery4, .xzoom-gallery5 {
  border: 1px solid #cecece;
  margin-left: 5px;
  margin-bottom: 10px;
}

.xzoom-source, .xzoom-hidden {
  display: block;
  position: static;
  float: none;
  clear: both;
}

/* Everything out of border is hidden */
.xzoom-hidden {
  overflow: hidden;
}

/* Preview */
.xzoom-preview {
  border: 1px solid #888;
  background: #2f4f4f;
  box-shadow: -0px -0px 10px rgba(0,0,0,0.50);
}

/* Lens */
.xzoom-lens {
  border: 1px solid #555;
  box-shadow: -0px -0px 10px rgba(0,0,0,0.50);
  cursor: crosshair;
}

/* Loading */
.xzoom-loading {
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 100%;
  opacity: .7;
  background: url(../images/xloading.gif);
  width: 48px;
  height: 48px;
}

/* Additional class that applied to thumb when it is active */
.xactive {
  -webkit-box-shadow: 0px 0px 3px 0px rgba(74,169,210,1);
  -moz-box-shadow: 0px 0px 3px 0px rgba(74,169,210,1);
  box-shadow: 0px 0px 3px 0px rgba(74,169,210,1);
  border: 1px solid #4aaad2;
}

/* Caption */
.xzoom-caption {
  position: absolute;
  bottom: -43px;
  left: 0;
  background: #000;
  width: 100%;
  text-align: left;
}

.xzoom-caption span {
  color: #fff;
  font-family: Arial, sans-serif;
  display: block;
  font-size: 0.75em;
  font-weight: bold;
  padding: 10px;
}

.footer-about{
	display: block;
}


.contact-lft{
    color:#fff;
}

    .contact-lft,
    .contact-rtl{
        padding:40px;
    }

    .contact-info h5{
        font-weight:700;
    }

    .contact-info li{
        margin-bottom:30px;
    }

    .contact-info .footer-si li a{
        width:auto;
        height:auto;
        margin-right:15px;
    }

    .contact-info .footer-si li a:hover{
        background-color:transparent;
    }

    .bg-dark{
        background-color:#121212 !important;
    }

    .profile.off-register .card{
    	background-color: rgba(255,255,255,0.85);
    }


    .profile.off-register form .form-control {
    	font-size: 14px;
    }

    .register-for-dashain img{
    	width: 55%;
    }

    .total-price{
      font-size:20px;
      font-weight:500;
    }

    .total-price span{
      font-size: 32px;
      font-weight:600;
    }

    .btn-link{
        text-decoration: none !important;
    }

<<<<<<< HEAD
@media (max-width: 575px) {

}
=======
>>>>>>> 082e0e0 (updateS)
