/*=======================================================================
Theme Name: Outstock - Clean, Minimal eCommerce HTML5 Template
Template URI: www.websabbir.com
Author: html tamplate
gmail: mdsabbirahmed63812@gmail.com
Version: 1.0
/*=======================================================================
[Table of content]
=========================================================================

[01] backtop
[02] preloader-area
[03] header-area
[04] top-header
[05] header-info
[06] header-bottom
[07] slider-area
[08] Features-area
[09] Banner__area
[10] best-selling-area
[11] Banner-two-area
[12] Deal-area
[13] banner-three
[14] Onsale-product
[15] Blog_area
[16] Subscribe_arae
[17] Back-to-top
[18] Fooder_area
[19] footer__copyright

=========================================================================
[ End table of content ]
=========================================================================*/
:root{
 --backgroundcolor: #fcb700;
 --textcolor:#ffffff;
 --bordercolor: #d69c00;;
 --bdr-color: #ebebeb;
 --headingcolor: #222;
 --polor: #666;
}

*{
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

ul,ol{
    list-style-type: none;
}

h1,h2,h3,h4,h5,h6,ul,ol,span,nav,p{
    padding: 0;
    margin: 0;
}
h4{
    font-family: "Rubik", sans-serif;
    color: var(--headingcolor);
    font-weight: 500;  
}
h3{
    font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: var(--headingcolor);
    
}

h6{
    font-family: "Rubik", sans-serif;
    color: var(--headingcolor);
    font-weight: 500;
    font-size: 14px;
}
body{
    font-family: 'Rubik', sans-serif;
    color: var(--polor);
    font-size: 13px;
}


/* header-area  part css */
#main-header{
    background: var(--backgroundcolor);
}

.header__welcome span{
    color: var(--headingcolor);
    font-size: 13px;
}

.header__action ul li{
    position: relative;
    margin-right: 20px;
    padding-right: 20px;
    line-height: 45px;
    display: inline-block;
}

.header__action ul li a{
    font-size: 13px;
    display: block;
    color: var(--headingcolor);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}
.header__action ul li a:hover{
    color: var(--textcolor);
}
.header__action ul li a::after{
    content: '';
    position: absolute;
    right: 0;
    width: 1px;
    height: 13px;
    background: var(--bordercolor);
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

/* header__info css */

#header__info{
    padding: 25px 0;
    border-top: 1px solid var(--bordercolor);
    border-bottom: 1px solid var(--bordercolor);
}

.header__hotline-icon{
    margin-right: 15px;
    display: inline-block;
}
.header__hotline-info{
    display: inline-block;
}
.header__hotline-icon i{
    font-size: 35px;
}

.header__hotline-info span{
    font-weight: 400;
    font-size: 13px;
    color: var(--headingcolor);
}

.header__info-right{
    position: relative;
}

.header__search-box{
    position: relative;
}

.header__search-box::after{
    position: absolute;
    content: "";
    top: 50%;
    left: 160px;
    height: 45%;
    width: 1px;
    background: #e1e1e1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.header__search-box input{
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 13px;
    padding: 0 15px;
    padding-left: 180px;
    padding-right: 190px;
    color: var(--polor);
    border: 2px solid var(--backgroundcolor);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.header__search-box button{
        position: absolute;
        top: 0;
        right: 0;
        border: none;
        height: 50px;
        color: var(--textcolor);
        display: block;
        line-height: 50px;
        padding: 0 65px;
        font-size: 14px;
        font-weight: 400;
        background: var(--headingcolor);
        border-radius: 0 30px 30px 0;
        text-transform: capitalize;
        cursor: pointer;
}

.header__search-cat{
    position: absolute;
    left: 20px;
    top: 50%;
    z-index: 9;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.header__search-cat .nice-select{
    border: none;
    padding-left: 0;
    color: #6d6d6d;
}

.nice-select {
    font-size: 14px;
    height: 42px;
    line-height: 40px;
    position: relative;
    cursor: pointer;
}
.nice-select::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    display: block;
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    transform: rotate(45deg) ;
    -webkit-transform: rotate(45deg) ;
    -moz-transform: rotate(45deg) ;
    -ms-transform: rotate(45deg) ;
    -o-transform: rotate(45deg) ;
    transition: all 0.15s ease-in-out;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -ms-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
}

.nice-select .list{
    position: absolute;
    top: 100%;
    margin-top: 4px;
    cursor: pointer;
    background: var(--textcolor);
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    opacity: 0;
}
.nice-select.open .list {
	opacity: 1;
    visibility: visible;
}

.header__search-cat .nice-select::after {
    height: 8px;
	width: 8px;
	border-width: 1px;
	margin-top: -7px;
    border-color: var(--headingcolor);
}

.header__search-cat .nice-select .list{
    min-width: 220px;
    height: 250px;
    overflow: hidden;
    overflow-y: scroll;
}
.nice-select .option.selected {
	font-weight: 700;
}
.header__search-cat .nice-select .list .option:hover,
.header__search-cat .nice-select .list .option.selected {
    color: var(--textcolor);
    background: var(--backgroundcolor);

  }
 
  .header__search-cat .nice-select .list .option {
	padding: 10px 6px;
	line-height: 1.5;
}

.nice-select .option {
	font-weight: 400;
	line-height: 40px;
    min-height: 40px;
	padding-left: 18px;
	padding-right: 29px;
    cursor: pointer;
	text-align: left;
	transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
}
.cart__mini-wrapper{
    float: right;
}
.cart__toggle{
    position: relative;
    height: 50px;
    width: 50px;
    font-size: 18px;
    line-height: 50px;
    margin-right: 25px;
    text-align: center;
    color: var(--headingcolor);
    border: 2px solid var(--bordercolor);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}
.cart__toggle:hover{
    color: var(--textcolor);
    border: 2px solid var(--textcolor);
}
.cart__toggle i span{
    position: absolute;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 9px;
    top: -2px;
    left: 30px;
    text-align: center;
    color: var(--textcolor);
    background: var(--headingcolor);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.cart__content span {
	color: var(--headingcolor);
    font-size: 13px;
    display: block;
}
.cart__mini{
    position: absolute;
    margin-top: 100px;
    right: 115px;
    width: 350px;
    padding: 35px 15px;
    padding-top: 27px;
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
    border-top: 2px solid var(--backgroundcolor);
    background: var(--textcolor);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    transition: all 0.2s ease-out 0s;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
}
#header__info .cart__mini-wrapper:hover .cart__mini{
    margin-top: 50px;
    opacity: 1;
    visibility: visible;
}

.cart__title {
	border-bottom: 1px solid var(--bdr-color);
	padding-bottom: 20px;
}

.cart__title h4 {
	font-size: 18px;
	display: inline-block;
	margin-right: 5px;
}

.cart__title span{
    font-size: 12px;
}

.cart__item {
	padding-bottom: 20px;
	padding-top: 20px;
	border-bottom: 1px solid var(--bdr-color);
}

.cart__thumb {
	margin-right: 15px;
}

.cart__thumb img {
	width: 70px;
	height: 70px;
}
.cart__details h6 {
    padding-bottom: 10px;
}
.cart__del a i,
.cart__details h6 a{
    color: var(--polor);
}

.cart__price span {
	color: var(--backgroundcolor);
}

.cart__sub {
	padding-top: 20px;
	padding-bottom: 20px;
}

.cart__sub-total {
	font-size: 14px;
	font-weight: 500;
	color: var(--backgroundcolor);
}
.t-y-btn{
    height: 45px;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
    line-height: 42px;
    padding: 0 50px;
    margin-bottom: 10px;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    color: var(--textcolor);
    background-color: var(--backgroundcolor);
    border: 2px solid transparent;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

.t-y-btn:hover {
	border-color: var(--backgroundcolor);
	color: var(--headingcolor);
	background: var(--textcolor);
}
.t-y-btn-border {
	background: var(--textcolor);
	color: var(--headingcolor);
	border-color: var(--backgroundcolor);
}
.t-y-btn-border:hover {
	background: var(--backgroundcolor);
	color: var(--textcolor);
}

/* header-bottom css part */

.main-menu ul li {
    position: relative;
    display: inline-block;
    margin-right: 50px;
}

.main-menu ul li a {
	font-size: 14px;
    padding: 19px 0;
	font-weight: 500;
    display: block;
	text-transform: uppercase;
    color: var(--headingcolor);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}
.main-menu ul li:hover> a{
    color: var(--textcolor);
}
.main-menu ul li ul.submenu li a:hover {
	color: var(--backgroundcolor);
}
.main-menu ul li ul.submenu {
	position: absolute;
	top: 120%;
	left: 0;
	min-width: 200px;
    opacity: 0;
    z-index: 11;
    visibility: hidden;
    border: 1px solid #b0c6c64d;
	background: var(--textcolor);
    box-shadow:  0px 15px 30px 0px rgba(0, 3, 143, 0.1);;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.main-menu ul li:hover ul.submenu {
    visibility: visible;
    opacity: 1;
    top: 100%;
  }
.main-menu ul li ul.submenu li {
	display: block;
	margin-right: 0;
}

.main-menu ul li ul.submenu li a {
	position: relative;
	padding: 9px 25px;
	font-size: 13px;
	text-transform: capitalize;
	border-bottom: 1px solid #b0c6c64d;
	color: var(--headingcolor);
}
  .main-menu ul li ul.submenu li ul.submenu {
	left: 120%;
	top: 0%;
	visibility: hidden;
	opacity: 0;
}
.main-menu ul li ul.submenu li:hover ul.submenu {
    opacity: 1;
    left: 100%;
    visibility: visible;
  }

.main-menu ul li ul.submenu li a i {
	position: absolute;
	top: 34%;
	right: 0;
	transform: rotate(-90deg) translateY(-50%);
    -webkit-transform: rotate(-90deg) translateY(-50%);
    -moz-transform: rotate(-90deg) translateY(-50%);
    -ms-transform: rotate(-90deg) translateY(-50%);
    -o-transform: rotate(-90deg) translateY(-50%);
}

.header__currency {
	position: relative;
	padding-right: 10px;
}

.header__currency::before {
	position: absolute;
	content: "";
	right: 0;
	top: 50%;
	height: 15px;
	width: 1px;
	background: var(--bordercolor);
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.header__currency .nice-select,  
.header__lang .nice-select {
	background: transparent;
	color: var(--headingcolor);
}
.header__currency .nice-select,
.header__lang .nice-select {
    font-size: 13px;
	border: none;
	color: var(--headingcolor);
}

.header__currency .nice-select .list,
.header__lang .nice-select .list {
	min-width: 220px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	left: auto;
	right: 10%;
}

.header__currency .nice-select .list .option,
.header__lang .nice-select .list .option {
	padding: 10px 15px;
	line-height: 1.5;
}

.nice-select .option.selected {
	font-weight: bold;
}
.header__lang .nice-select .list .option:hover,
.header__lang .nice-select .list .option.selected,
.header__currency .nice-select .list .option:hover, 
.header__currency .nice-select .list .option.selected {
	color: var(--textcolor);
	background: #333;
}

.header__currency .nice-select::after,
.header__lang .nice-select::after {
	border-width: 1px;
	border-color: var(--headingcolor);
	height: 6px;
	width: 6px;
	margin-top: -5px;
}

/* side menu btn */
.side-menu-btn {
    background: transparent;
    font-size: 18px;
    margin-right: 20px;
    color: var(--headingcolor);
    border: none;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}
.side-menu-btn:hover{
    color: var(--textcolor);
}

/* slider-area part css */

#slider-area{
    padding-top: 50px;
}
.cat__menu-wrapper {
	margin-right: -35px;
}
.cat-toggle{
    position: relative;
    border: 2px solid var(--backgroundcolor);
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
}

.cat-toggle-btn {
    width: 100%;
    height: 61px;
    line-height: 61px;
    font-size: 14px;
    padding-left: 10px;
    font-weight: 500;
    border: 0;
    text-align: left;
    text-transform: uppercase;
    color: var(--headingcolor);
    background: var(--textcolor);
    border-bottom: 1px solid var(--bdr-color);
    border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    -ms-border-radius: 3px 3px 0 0;
    -o-border-radius: 3px 3px 0 0;
}

.cat-toggle-btn i {
	margin-right: 10px;
}

.cat__menu ul {
    background: var(--textcolor);
    border-radius: 0 0 5px 3px;
    -webkit-border-radius: 0 0 5px 3px;
    -moz-border-radius: 0 0 5px 3px;
    -ms-border-radius: 0 0 5px 3px;
    -o-border-radius: 0 0 5px 3px;
}

.cat__menu ul li {
	position: relative;
}

.cat__menu ul li a {
	padding: 9px 15px;
}
.cat__menu ul li:hover > a {
    color: var(--backgroundcolor);
}
.cat__menu ul li a {
	position: relative;
    text-align: left;
	display: inline-block;
    text-transform: capitalize;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
	padding: 10px 15px;
	color: var(--headingcolor);
	background: var(--textcolor);
	border-bottom: 1px solid var(--bdr-color);	
}

.cat__menu ul li a i {
	position: absolute;
	top: 34%;
	right: 20px;
	-webkit-transform: rotate(-90deg) translateY(-50%);
	-moz-transform: rotate(-90deg) translateY(-50%);
	-ms-transform: rotate(-90deg) translateY(-50%);
	transform: rotate(-90deg) translateY(-50%);
}
.cat__menu ul li .mega-menu {
	position: absolute;
	left: 100%;
	top: 0;
	width: 800px;
	background: var(--textcolor);
	z-index: 1;
	padding: 40px 50px;
	padding-bottom: 10px;
    opacity: 0;
	visibility: hidden;
    background-size: cover;
	background-repeat: no-repeat;
	background-position: right;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	-webkit-box-shadow: 4.316px 4.168px 20px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 4.316px 4.168px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 4.316px 4.168px 20px 0px rgba(0, 0, 0, 0.1);
	
}

.cat__menu ul li:hover .mega-menu {
	visibility: visible;
	opacity: 1;
	top: 0;
}

.cat__menu ul li .mega-menu li {
    width: 33.33%;
    float: left;
    margin-bottom: 25px;
}

.cat__menu ul li .mega-menu li > a {
    position: relative;
    margin-bottom: 15px;
    font-size: 16px;
    padding: 0;
    border: none;
    color: var(--headingcolor);
}

.cat__menu ul li .mega-menu li ul li {
    display: block;
    margin-bottom: 8px;
    width: 100%;
}

.cat__menu .mega-menu li ul.mega-item li a {
    font-size: 14px;
    margin-bottom: 0;
    color: #888; 
}

.cat__menu ul li .mega-menu li ul li a {
    position: relative;
    display: inline-block;
    width: auto;
    font-size: 14px;
    color: var(--polor);
    margin-bottom: 0;
    font-weight: 400;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}
.cat__menu ul li .mega-menu li ul li:hover > a {
	color: var(--headingcolor);
}
.cat__menu ul li .mega-menu li ul li a::after {
	position: absolute;
	content: "";
	left: auto;
	right: 0;
	bottom: 0;
	background: var(--polor);
	width: 0;
	height: 1px;
}
.cat__menu ul li .mega-menu li ul li:hover > a::after {
	width: 100%;
	left: 0;
	right: auto;
}

.cat__menu ul li a .cat-label {
    position: relative;
    top: -5px;
	right: -2px;
    padding: 3px;
    font-size: 9px;
    text-transform: uppercase;
	color: var(--textcolor);
	background: #eb2771;
}
.cat__menu ul li a .cat-label {
	font-size: 8px;
	color: var(--textcolor);
	text-transform: uppercase;
}
.cat__menu ul li a .cat-label::after {
	position: absolute;
	content: "";
	left: -6px;
	top: 3px;
	bottom: auto;
	border: 3px solid transparent;
	border-top-color: transparent;
	border-right-color: #eb2771;
}

.cat__menu ul li a .cat-label.green {
	background: #0cc485;
}

.cat__menu ul li a .cat-label.green::after {
	border-right-color: #0cc485;
}

.cat__menu ul li > ul.submenu {
    position: absolute;
    top: 20%;
    left: 100%;
    min-width: 200px;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #b0c6c64d;
    background: var(--textcolor);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -webkit-box-shadow: 0px 15px 30px 0px rgba(0, 3, 143, 0.1);
    -moz-box-shadow: 0px 15px 30px 0px rgba(0, 3, 143, 0.1);
    box-shadow: 0px 15px 30px 0px rgba(0, 3, 143, 0.1);
}

.cat__menu ul li > ul.submenu li {
	display: block;
	margin-right: 0;
}

.cat__menu ul li > ul.submenu li a {
	padding: 9px 25px;
	font-size: 13px;
	text-transform: capitalize;
	border-bottom: 1px solid #b0c6c64d;
}

.cat__menu ul li > ul.submenu li ul.submenu {
	left: 120%;
	top: 0%;
	visibility: hidden;
	opacity: 0;
}

.cat__menu ul li:hover .submenu {
	top: 0;
	visibility: visible;
	opacity: 1;
}

.cat__menu ul li > ul.submenu li:hover ul.submenu {
	visibility: visible;
	opacity: 1;
	left: 100%;
}

.single-slider img{
    width: 100%;
}

.banner__item {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.banner__item a img{
    width: 100%;
    height: 113px; 
}
.banner__item::after, 
.banner__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
}

.banner__item:hover::after {
	top: 50%;
	bottom: 50%;
	background: rgba(255, 255, 255, 0.2);
}
.banner__item:hover::before {
	right: 50%;
	left: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.bannar_dots{
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 10px;
    left: 0;
   
}
.bannar_dots  li{
    display: inline-block;
    margin: 0 5px;
   
}

.bannar_dots li button{
   height: 7px;
   width: 7px;
   border: none;
   color: transparent;
   overflow: hidden;
   background: var(--bdr-color);
   border-radius: 7px;
   -webkit-border-radius: 7px;
   -moz-border-radius: 7px;
   -ms-border-radius: 7px;
   -o-border-radius: 7px;
}

.bannar_dots .slick-active button{
    width: 35px;
	background: var(--backgroundcolor);
}

/* Features-area css part */

#Features-area{
    margin: 40px 0 20px -10px;
}

#Features-area .container .row{
    --bs-gutter-x: 0;
    --bs-gutter-y: 0; 
}

.features__inner{
    border: 1px solid var(--bdr-color);
}

.features__item{
    padding: 25px;
    position: relative;
}

.features__item::after{
    position: absolute;
    content: "";
    right: 15px;
    top: 50%;
    width: 1px;
    height: 50%;
    background: var(--bdr-color);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.features__item-last:after{
    display: none;
}

.features__icon{
    margin-right: 15px;
}

.features__icon i{
    font-size: 40px;
    color: var(--backgroundcolor);
}
.features__content h6{
    padding-bottom: 5px;
}

.features__content p{
    font-size: 12px;
    line-height: 12px;
}

/* Banner-area css part */

#Banner-area{
    padding: 20px 0 10px 0;

}

.banner__items{
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.banner__items::after,
.banner__items::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	transition: all 0.4s linear;
	-webkit-transition: all 0.4s linear;
	-moz-transition: all 0.4s linear;
	-ms-transition: all 0.4s linear;
	-o-transition: all 0.4s linear;
}

.banner__items a img{
    width: 100%;
}
.banner__items:hover::after {
	top: 50%;
	bottom: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.banner__items:hover::before {
	right: 50%;
	left: 50%;
	background: rgba(255, 255, 255, 0.2);
}

/* Best-selling-area */

#Best-selling-area{
    padding: 15px 0 40px 0;
}

.section__head{
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--bdr-color);
}
.section__head::after {
	position: absolute;
	content: "";
	bottom: -1px;
	left: 0;
	height: 2px;
	width: 50px;
	background: var(--backgroundcolor);
}
.section__title h3 span{
    font-weight: 300;
}

.product__nav-tab{
    margin-right: 75px;
}

.product__nav-tab ul li{
    margin-right: 35px;
    font-size: 14px;
    text-transform: capitalize;
    color: var(--headingcolor);
    cursor: pointer;
}

.product__nav-tab ul li:last-child{
    margin-right: 0;
}

.product__nav-tab ul li.active{
    color: var(--backgroundcolor);
}

.product-item{
    position: relative;
    overflow: hidden;
    padding: 15px 10px 30px 10px;
    margin: 0 10px;
    border: 2px solid var(--bdr-color);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}
.product-item:hover{
    border-color: var(--backgroundcolor);
}
.product__thumb{
    position: relative;
}

.product__thumb a img{
    width: 100%;
}

.product__thumb .second_img{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

.product-item:hover .product__thumb .second_img{
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.product__action{
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: visible;
    margin: auto;
    text-align: center;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

.product-item:hover .product__thumb .product__action{
    visibility: visible;
    opacity: 1;
    bottom: 20px;
}
.product__action ul li{
    display: inline-block;
    margin: 0 2px;
}
.product__action ul li a{
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    color: var(--headingcolor);
    border: 1px solid #d7d7d7;
    background: #f1f1f1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.product__action ul li a:hover{
    color: var(--textcolor);
    border-color: var(--backgroundcolor);
    background: var(--backgroundcolor);
}
.product__content h6{
    padding-top: 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.product__content h6 a{
    color: #0066c0;
}

.product__content h6:hover a{
    text-decoration: underline;
}

.rating {
	margin-bottom: 5px;
}

.rating ul li{
    display: inline-block;
}

.rating ul li a{
    color: var(--backgroundcolor);
}

.product__content span {
	font-size: 16px;
	font-weight: 500;
    padding: 0 7px;
	color: var(--headingcolor);
}

.product__add-btn {
    position: absolute;
    bottom: -40px;
    right: 0;
    left: 0;
    margin: 0;
    opacity: 0;
    text-align: center;
    visibility: hidden;
    transition: all 0.2s ease-out 0s;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
}

.product__add-btn a {
    padding: 0 30px;
    font-size: 12px;
    font-weight: 500;
    line-height: 45px;
    text-transform: uppercase;
    display: inline-block;
    color: var(--textcolor);
    background-color: var(--backgroundcolor);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.product-item:hover .product__add-btn {
    bottom: 35px;
    visibility: visible;
    opacity: 1;
  }

  .product__add-btn a:hover {
	background: var(--headingcolor);
	color: var(--textcolor);
}

.arrows_right,
.arrows_left{
    position: absolute;
    top: -77px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    text-align: right;
    cursor: pointer;
}

.arrows_right{
    right: 8px;
}
.arrows_left{
    right: 25px;
}

/* Banner-two-areav css part */

#Banner-two-area{
    padding: 20px 0 40px 0;
}

.banner-two{
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.banner-two::after,
.banner-two::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
}
.banner-two:hover::after {
	top: 50%;
	bottom: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.banner-two:hover::before {
	right: 50%;
	left: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.banner-two a img{
    width: 100%;
}

/* Deal-area css part */

#Deal-area{
    padding-bottom: 40px;
}

.product__deal{
    position: relative;
    overflow: hidden;
    padding: 15px 10px 0px 10px;
    margin-bottom: 30px;
    border: 2px solid var(--bdr-color);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

.product__deal:hover{
    border-color: var(--backgroundcolor);
}

.product__sale_thumb{
    position: relative;
}

.product__sale_thumb .second_img-two{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

.product__deal:hover .product__sale_thumb .second_img-two {
	visibility: visible;
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.product__sale_thumb a img{
    width: 100%;
}

.product__offer{
    position: absolute;
    top: 0;
    right: 10px;
}

.product__offer span {
    font-size: 12px;
    padding: 4px 10px;
    font-weight: 400;
    display: inline-block;
    text-align: center;
    background-color: #d01418;
    color: var(--textcolor);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.product__content_2 h6 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
    padding-top: 15px;
    line-height: 18px;
}

.product__content_2 h6 a{
    color: #0066c0;
}

.rating-2{
    margin-bottom: 15px;
}

.product__content_2 span {
	font-size: 16px;
	font-weight: 500;
	padding: 0 7px;
	display: inline-block;
}

.product__content_2 span.new {
	color: var(--backgroundcolor);
    padding-bottom: 5px;
}

.product__content_2 span.price-old {
	color: #b5b5b5;
	font-weight: 400;
    padding-bottom: 5px;
}

.product__content_2 p{
    font-family: "Rubik", sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: var(--polor);
    margin-bottom: 15px;
    line-height: 24px;
    margin-top: 10px;
}

.product_countdown{
    padding-bottom: 25px;
}

.product_countdown h4{
    font-size: 16px;
    margin-bottom: 15px;
}

.product_countdown ul li {
    width: 55px;
    height: 55px;
    line-height: 1;
    padding: 13px 0;
    margin-right: 4px;
    text-align: center;
    display: inline-block;
    background: #f5f5f5;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.product_countdown ul li span {
	font-size: 14px;
}

.product_countdown ul li p {
	font-size: 12px;
	text-transform: capitalize;
    padding: 0;
    margin: 0;
}

/* Banner-three-area css part */

#banner-three{
    padding-bottom: 40px;
}

.banner-three-items{
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.banner-three-items::after, .banner-three-items::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
}
.banner-three-items:hover::after {
	top: 50%;
	bottom: 50%;
	background: rgba(255, 255, 255, 0.2);
}
.banner-three-items:hover::before {
	right: 50%;
	left: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.banner-three-items a img{
    width: 100%;
}

/* Onsale-product-area css part */

#Onsale-product{
    padding: 15px 0 40px 0;
}

.product__item-wrapper{
    padding: 0 10px;
}

.Onsale-product-items{
    position: relative;
    overflow: hidden;
    padding: 15px 10px 40px 10px;
    margin-bottom: 20px;
    border: 2px solid var(--bdr-color);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

.Onsale-product-items:hover{
   border-color: var(--backgroundcolor);
}
.Onsale-product{
    position: relative;
}

.Onsale-product a img{
    width: 125px;
}

.Onsale-product .Onsale-images {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transition: all 0.3ms ease-out 0s;
    -webkit-transition: all 0.3ms ease-out 0s;
    -moz-transition: all 0.3ms ease-out 0s;
    -ms-transition: all 0.3ms ease-out 0s;
    -o-transition: all 0.3ms ease-out 0s;
}

.Onsale-product-items:hover .Onsale-product .Onsale-images {
	visibility: visible;
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.product__content span.price-old {
	color: #b5b5b5;
	font-weight: 400;
}

/* Blog_area css part */

#Blog_area{
    padding: 55px 0 40px 0;
    background-color: #f5f5f5;
}

.blog__item{
    margin-bottom: 30px;
    padding: 0 10px;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

.blog__item:hover{
    box-shadow: 0 0 20px 0 rgba(155, 166, 200, 0.2);
}

.blog__thumb{
    overflow: hidden;
}

.blog__item:hover .blog__thumb img {
    transform: scale(1.1) rotate(1deg);
    -webkit-transform: scale(1.1) rotate(1deg);
    -moz-transform: scale(1.1) rotate(1deg);
    -ms-transform: scale(1.1) rotate(1deg);
    -o-transform: scale(1.1) rotate(1deg);
}

.blog__thumb a img{
    width: 100%;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

.blog__content{
    padding: 25px 20px;
    background-color: var(--textcolor);
}

.blog__content h3{
    font-size: 16px;
    margin-bottom: 5px;
}

.blog__content h3 a{
    color: var(--headingcolor);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

.blog__content h3 a:hover{
    color: var(--backgroundcolor);
}

.blog__meta{
    margin-bottom: 15px;
}

.blog__meta span.date {
	color: var(--backgroundcolor);
}

.blog__content p {
	font-size: 14px;
	line-height: 24px;
    padding-right: 5px;
}

/* Subscribe_arae css part */

#Subscribe_arae{
    padding: 35px 0 30px 0;
}

.subscribe__icon{
    margin-right: 25px;
}

.subscribe__content h4 {
	text-transform: capitalize;
	font-size: 24px;
	margin-bottom: 5px;
}


.subscribe__content p {
	font-weight: 400;
	color: var(--headingcolor);
}

.subscribe__content p span {
	font-weight: 500;
}

.subscribe__form{
    position: relative;
    float: right;
    width: 85%;
}

.subscribe__form input {
    width: 100%;
    height: 50px;
    line-height: 46px;
    padding-left: 20px;
    color: #979ca5;
    border: 2px solid #e4e7f0;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.subscribe__form button {
	position: absolute;
	top: 0;
	right: 0;
}

.t-y-btn-sub {
    height: 50px;
    line-height: 50px;
    padding: 0 25px;
    border: 0;
    text-align: center;
    text-transform: uppercase;
    color: var(--headingcolor);
    background: var(--backgroundcolor);
    border-radius:  0 35px 35px 0;
    -webkit-border-radius:  0 35px 35px 0;
    -moz-border-radius:  0 35px 35px 0;
    -ms-border-radius:  0 35px 35px 0;
    -o-border-radius:  0 35px 35px 0;
}

/* Back-to-top css part */

#Back-to-top{
    padding: 20px 0;
    background-color: #333;
    
}

.back_btn a {
	font-weight: 500;
	display: block;
	text-transform: uppercase;
    color: var(--textcolor);
}

.back_btn:hover a{
    color: var(--backgroundcolor);
}

/* Fooder_area css part */

#Fooder_area{
    padding: 80px 0 40px 0;
    background-color: var(--headingcolor);
}

.footer__widget {
	margin-bottom: 40px;
}


.footer__widget h4 {
	font-size: 16px;
    padding-top: 15px;
    margin-bottom: 33px;
    text-transform: capitalize;
	color: var(--textcolor);
}

.footer__widget ul li{
    padding-bottom: 6px;
}

.footer__widget ul li a{
    color: #999;
    font-size: 14px;
    line-height: 24px;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

.footer__widget ul li a:hover{
    padding-left: 15px;
    color: var(--backgroundcolor);
}

.footer__social{
    margin-bottom: 20px;
}

.footer__social ul li {
    margin-right: 8px;
	margin-bottom: 10px;
	display: inline-block;
}

.footer__social ul li a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: inline-block;
    color: var(--textcolor);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

.footer__social ul li.fb a {
	background: #3b5998;
}
.footer__social ul li.tw a {
	background: #00acee;
}
.footer__social ul li.gp a {
	background: #DD4B39;
}
.footer__social ul li.yt a {
	background: #FF0000;
}
.footer__social ul li.pt a {
	background: #E60023;
}
.footer__social ul li.em a {
	background: #BB001B;
}

.footer__social ul li a:hover {
	background: var(--backgroundcolor);
}

.footer__download {
	margin-top: 25px;
}


.footer__download h4 {
	font-size: 14px;
	margin-bottom: 15px;
	text-transform: capitalize;
    color: var(--textcolor);
}

.footer__download a img{
    max-width: 100%;
}

/* footer__copyright css part */

#footer__copyright{
    padding-bottom: 35px;
    background-color: var(--headingcolor);
}

.footer__copyright-inner {
	border-top: 1px solid #393939;
    padding-top: 30px;
}


.footer__copyright-text p {
    font-size: 14px;
    line-height: 24px;
	color: #767676;
	
}
.footer__copyright-text p a {
	color: var(--backgroundcolor);
}
.footer__payment{
    float: right;
}

.footer__payment a {
    opacity: 0.4;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
}

.footer__payment a:hover {
	opacity: 0.6;
}

.footer__payment a img{
    max-width: 100%;
}


/* preloader css part */

.preloader-img{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--textcolor);
    z-index: 9999999;
}

.preloader{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.preloader img{
    max-width: 80px;
}

/* backtop up css part */

.backtop{
    position: fixed;
    height: 45px;
    width: 45px;
    line-height: 45px;
    right: 40px;
    bottom: 40px;
    font-size: 20px;
    z-index: 99999;
    display: none;
    cursor: pointer;
    text-align: center;
    border: 1px solid #2c3941;
    color: #2c3941;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
