.sliderrbg{
	display: block;
	width: 100%;
	position: relative;
	margin-top: 1rem;
}
.sliderrbg img{
	width: 100%;
	height: auto;
}
.featuredbg{
	display: block;
	position: relative;
	padding: 52px 0;
}
.featuredbg [class*='col-']{
	border-right:1px solid #dcdcdc;
	padding: 0.5rem 0;
}
.featuredbg [class*='col-']:last-child{
	border-right: none;
}
.featuredbg .content{
	display: block;
	text-align: center;
}
.featuredbg .icon{
	display: inline-block;
	/* font-size: 36px;
	color: #202020;
	margin-bottom: 0.5rem;
	line-height: 36px; */
	width: 50px;
	margin-bottom: 0.5rem;
}
.featuredbg .icon img{
	width: 100%;
	height: auto;
}
.featuredbg .title{
	display: block;
	font-size: 1rem;
	line-height: 24px;
	color: #202020;
	font-weight: 700;
}
.featuredbg p{
	display: block;
	font-size: 1rem;
	line-height: 1.2;
	color: #444;
}
.homecollection{
	display: block;
	position: relative;
	width: 100%;
	margin-bottom: 30px;
}
.homecollection .figure{
	display: block;
	position: relative;
	width: 100%;
}
.homecollection .figure img{
	width: 100%;
	height: auto;
}
.homecollection .figure::after{
	content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    transition: all 0.6s ease-out 0s;
}
.homecollection .figure::before{
	content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    transition: all 0.6s ease-out 0s;
}
.homecollection .figure:hover:before {
    background-color: rgba(255, 255, 255, 0.2);
    right: 50%;
    left: 50%;
}
.homecollection .figure:hover:after {
    background-color: rgba(255, 255, 255, 0.2);
    top: 50%;
    bottom: 50%;
}
.homecollection .overlay{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.homecollection .overlay .title{
	display: block;
	padding: 20px 30px 0;
	font-size: 1.3rem;
	line-height: 1.2;
	color: #fff;
	letter-spacing: 0.4px;
	font-weight: 600;
}
.homecollection .overlay p{
	display: inline-block;
	padding: 0px 30px;
	font-size: 0.85rem;
	line-height: 1.2;
	color: #fff;
	letter-spacing: 0.4px;
	font-weight: 500;
}
.maintitle{
	display: block;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.2;
	color: #414141;
	margin-bottom: 0.0rem;
	text-align: center;
	letter-spacing: -0.4px;
}
.titleline{
	display: block;
	position: relative;
	text-align: center;
	margin-bottom: 1rem;
}
.titleline span{
	display: inline-block;
	width: 20px;
	position: relative;
}
.titleline span img{
	width: 100%;
	height: auto;
}
.titleline span::before{
	content: '';
	display: block;
	width: 50px;
	height: 1px;
	background: rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 13px;
	left: -65px;
}
.titleline span::after{
	content: '';
	display: block;
	width: 50px;
	height: 1px;
	background: rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 13px;
	right: -65px;
}
a.addtocart, .addtocart {
    display: block;
	width: 100%;
	box-sizing: border-box;
    background: #202020;
    color: #fff;
    font-size: 1.0rem;
    letter-spacing: -0.4px;
    line-height: 42px;
    text-align: center;
    padding: 3px 30px;
    margin-top: 1rem;
	font-weight: 600;
	transition: all 0.3s ease-in-out;
}
a.addtocart:hover, .addtocart:hover {
    display: block;
    background: #707070;
}
.productlisting{
	display: block;
	padding: 60px 0;
	position: relative;
}
.productlisting [class*='col-']{
	margin:1.5rem 0;
}
.productlisting .column{
	display: block;
	width: 100%;
	position: relative;
	border: 1px solid #f3f2f2;
	position: relative;
	height: 100%;
	background: #F8F9FA;;
}
.productlisting .column .figure{
	display: block;
	width: 100%;
	position: relative;
}
.productlisting .column .overlay{
	display: block;
	position: absolute;
	top: 0;
	right: 0;
}
.productlisting .column .addcartbg{
	width: 40px;
	background: #2C2C2C;
	border-radius: 3px 0 0 3px;
	box-sizing: border-box;
	padding: 3px 5px;
	position: absolute;
	top: 15px;
	right: 0px;
	transform: rotateY(-90deg);
	transform-origin: 100% 50%;
	transition: all 0.3s ease-in-out;
}
.productlisting .column:hover .addcartbg{
	transform: rotateY(0deg);transform-origin: 100% 100%;
}
.productlisting .column .addcartbg ul{}
.productlisting .column .addcartbg ul li{
	display:inline-block;
	margin:7px 0;
}
.productlisting .column .addcartbg ul li a{
	display:inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	color: #3a3d45;
	font-size: 17px;
	background: #f1f1f1;
	transition: all 0.3s ease-in-out;
}
.productlisting .column .addcartbg ul li a:hover{
	background: #3a3d45;
	color: #fff;
}
.productlisting .column .figure img{
	width: 100%;
	height: auto;
}
.productlisting .column .caption{
	display: block;
	padding: 1rem;
	text-align: left;
}
.productlisting .column .title{
	display: block;
	font-size: 1.1rem;
	line-height: 1.2;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #202020;
	letter-spacing: -0.4px;
	min-height: 2.6rem;
}
.productlisting .column .price{
	font-size: 1.2rem;
	line-height: 1.2;
	color: #B82C3A;
	font-weight: 600;
	margin: 1rem 0;
}
.productlisting .column .deldate{
	display: block;
	position: relative;
	padding-left: 30px;
	font-size: 0.9rem;
	line-height: 17px;
	font-weight: 600;
	color: #999;
	text-align: left;
}
.productlisting .column .deldate::before{
	content: '';
	display: block;
	width: 19px;
	height: 17px;
	background: url(../images/shipicon.jpg) no-repeat center center;
	position: absolute;
	top: 0;
	left: 0;
}
.productmarkerbg{
	display: block;
	width: 100%;
	margin:0;
	padding: 0;
	position: relative;
	margin-bottom: 20px;
}
.productmarkerbg::after{
	content: '';
	display: block;
	clear: both;
}
.productmarkerbg .leftmarker{
	display: block;
	width: 50%;
	background: #EEEEEE;
	position: relative;
	height: 100%;
	float: left;
}
.productmarkerbg .rightmarker{
	display: block;
	width: 50%;
	background: #DEDBDA;
	position: relative;
	height: 100%;
	float: left;
}
.productmarkerbg .leftmarker img,
.productmarkerbg .rightmarker img{
	width: 100%;
	height: auto;
}

.newsletterbg{
	display: block;
	width: 100%;
	position: relative;
	background: #F7F7F9;
}
.newsleatterinfo{
	display: block;
	position: relative;
	padding: 100px 0;
	text-align: center;
}
.newsleatterinfo .title{
	display: block;
	font-size: 1.4rem;
	line-height: 1.2;
	color: #000;
	font-weight: 600;
	letter-spacing: -0.4px;
	margin-bottom: 0.5rem;
}
.newsleatterinfo p{
	display: block;
	font-size: 0.9rem;
	line-height: 1.6;
	color: #4c4848;
	margin-bottom: 2rem;
}
.newsleatterinfo .formbg{
	display: block;
	width: 100%;
	position: relative;
}
.newsleatterinfo .formbg form{
	display: flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 0;
}
.newsleatterinfo .formbg input[type="text"] {
    display: block;
    flex: 1;
    padding: 0 0px;
    font-size: 1rem;
    line-height: 48px;
    border-radius: 5px;
    color: #000;
    background: #ffffff;
	padding: 0 20px;
    border: 0;
}
.newsleatterinfo .formbg input[type="submit"] {
    display: inline-block;
    padding: 0 25px;
    font-size: 1rem;
    line-height: 48px;
    border-radius: 5px;
    color: #fff;
    background: #b1343c;
    border: 0;
    max-width: 145px;
    flex: 0 0 145px;
}
.newsleatterinfo .figure{
	display: block;
	width: 100%;
}
.newsleatterinfo .figure img{
	width: auto;
	max-width: 100%;
	height: auto;
}
.owl-nav{
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 11;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0px 30px 0275px 0px;
    gap: 8px;
}
.owl-carousel .owl-nav button.owl-next, 
.owl-carousel .owl-nav button.owl-prev{
	background-color: rgba(0, 0, 0, 0.2);
    border-style: none;
    border-radius: 5px 5px 5px 5px;
    padding: 12px 20px 12px 20px !important;
    box-shadow: -1px 6px 75px -7px #000000;
    cursor: pointer;
    color: #fff;    
}
.owl-carousel .owl-nav button.owl-next:hover, 
.owl-carousel .owl-nav button.owl-prev:hover{
	background-color: #fff;
    border-color: #707070;
    color: #000;
}
.owl-carousel .owl-nav i{
	font-size: 24px;
	transition: all .3s ease;

}
.owl-carousel .owl-nav:hover i{
	transform: rotate(360deg);
}
@media screen and (max-width:768px){
	.featuredbg [class*='col-'] {
	    border-right: 0;
	    border-bottom: 1px solid #dcdcdc;
	    padding-bottom: 2rem;
	}
	.homecollection .figure{
		margin:0.5rem 0;
	}
}