/* navbar */
.navbar-area .nav-container {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
}
.navbar-area.nav-fixed {
    background-color: #f2f2f2;
}
.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
     z-index: initial;
}
/* cart icon badge design */
.navbar-area .nav-container .nav-right-content ul li.cart a:hover .pcount ,
.mobile-cart a:hover .pcount {
    color: #fff;
}
.mobile-cart a{
    color: #fff;
    display: none;
}

.navbar-area .nav-container .nav-right-content ul li.cart,
.mobile-cart a{
    position: relative;
}

.navbar-area .nav-container .nav-right-content ul li.cart .pcount,
.mobile-cart a .pcount {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--secondary-color);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}
/* header slider */
.product-home-header-area.style-03 .title {
    font-size: 45px;
    line-height: 85px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-home-header-area.style-03 p {
    font-size: 16px;
    line-height: 30px;
    padding: 2px 10px;
    /* background: rgba(0,0,0,.5); */
    border-left: 5px solid #4caf50;
	color:#fff;
	font-weight:100;
}

.product-home-header-area.style-03 .btn-wrapper .boxed-btn {
    border-radius: 14px;
    background-color: var(--secondary-color);
}

.product-home-header-area.style-03 .btn-wrapper .boxed-btn:hover {
    background-color: var(--main-color-one);
    color: #fff;
}
.product-home-header-area {
    padding: 140px 0 250px;
}

.product-home-header-wrapper {
    position: relative;
}

.product-home-header-wrapper:before {
    position: absolute;
    left: -230px;
    top: 0;
    width: 420px;
    height: 420px;
    content: '';
    border: 60px solid #f5f5f5;
    border-radius: 50%;
    z-index: -1;
}
.product-home-header-wrapper:after {
    position: absolute;
    right: -800px;
    top: -850px;
    width: 1600px;
    height: 1600px;
    content: '';
    background-color: #f5f5f5;
    border-radius: 50%;
    z-index: -1;
}
.product-home-header-area .right-image-wrap {
    position: absolute;
   /* right: 150px;*/
    left: 50%;
	margin-left:120px;
    top: 80px;
}


/* category slider */
.single-category-item .thumb img {
    width: auto;
    margin: 0 auto;
    margin-bottom: 20px;
}

.single-category-item {
    background-color: #f5f5f5;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.single-category-item .content .title:hover {
    color: var(--main-color-one);
}
.single-category-item .content .title {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
    font-weight: 700;
    transition: all 300ms;
}

.product-category-carousel .owl-nav div ,
.feature-product-slider .owl-nav div
{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 32px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 3px;
    transition: 300ms all;
    visibility: hidden;
    opacity: 0;
}

.feature-product-slider .owl-nav div:hover ,
.product-category-carousel .owl-nav div:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.product-category-carousel .owl-nav div.owl-next ,
.feature-product-slider .owl-nav div.owl-next
{
    left: auto;
    right: 0;
}

.product-category-carousel:hover .owl-nav div ,
.feature-product-slider:hover .owl-nav div
{
    visibility: visible;
    opacity: 1;
}

.product-category-carousel:hover .owl-nav div.owl-next ,
.feature-product-slider:hover .owl-nav div.owl-next
{
    right: -20px;
}

.product-category-carousel:hover .owl-nav div.owl-prev ,
.feature-product-slider:hover .owl-nav div.owl-prev
{
    left: -20px;
}
/* featured products */
.single-feature-product .thumb {
    position: relative;
}

.single-feature-product .thumb .tag {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 10px;
    background-color: #5b626b;
    color: #fff;
    font-size: 14px;
}
.single-feature-product .thumb .hover {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms;
}

.single-feature-product .thumb .hover .addtocart {
    display: inline-block;
    padding: 8px 22px;
    background-color: var(--secondary-color);
    border-radius: 14px;
    font-size: 14px;
    color: #fff;
    transition: all 300ms;
}

.single-feature-product .thumb .hover .addtocart:hover {
    background-color: var(--main-color-one);
    color: #fff;
}

.single-feature-product:hover .thumb .hover {
    visibility: visible;
    opacity: 1;
}
.single-feature-product .content {
    padding-top: 25px;
}

.single-feature-product .content .title {
    font-size: 24px;
    line-height: 28px;
    font-weight: 600;
    transition: all 300ms;
}

.single-feature-product .content .title:hover {
    color: var(--main-color-one);
}

.single-feature-product .content .bottom-part {
    display: flex;
    justify-content: space-between;
}

.single-feature-product .content .bottom-part .price-wrap {
    font-size: 20px;
    line-height: 60px;
    font-weight: 600;
    color: var(--heading-color);
    opacity: .6;
}

/* decorate area */

.decorate-area {
    position: relative;
    margin-top: 200px;
    margin-bottom: 150px;
}

.decorate-area .right-image-wrap {
    position: absolute;
   /* right: 60px;*/
    top: 10%;
	
	left: 50%;
	margin-left:120px;
}

.decorate-area .left-content-wrpper {
    padding-right: 80px;
}

.decorate-area .left-content-wrapper {
    padding-right: 60px;
}

.decorate-area .left-content-wrapper .title {
    font-size: 36px;
    line-height: 45px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.decorate-area .left-content-wrapper .title:after {
    position: absolute;
    left: -80px;
    top: -80px;
    width: 200px;
    height: 200px;
    background-color: #f4f4f4;
    content: '';
    border-radius: 50%;
    z-index: -1;
    /* opacity: .7; */
}

.decorate-area .left-content-wrapper p {
    font-size: 16px;
    line-height: 30px;
}
.decorate-area .right-image-wrap:after {
    position: absolute;
    right: -200px;
    top: -60px;
    width: 630px;
    height: 630px;
    border: 80px solid #f4f4f4;
    content: "";
    border-radius: 50%;
    z-index: -1;
}

/* latest items area */
.latest-product-filter-nav {
    text-align: center;
    margin-bottom: 40px;
}
.latest-product-filter-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.latest-product-filter-nav ul li {
    display: inline-block;
    cursor: pointer;
}

.latest-product-filter-nav ul li+li {
    margin-left: 20px;
}

.latest-product-filter-nav ul li.active{
    color: var(--main-color-one);
}
.latest-product-masonry .single-feature-product .content .title{
    font-size: 18px;
    line-height: 26px;
}
.single-carousel.product-home:hover img{
    filter: grayscale(0%);
}
.single-carousel.product-home img{
    transition: all 300ms;
    filter: grayscale(100%);
}

/* testimonial area */
.product-section-title {
    position: relative;
}

.product-section-title:after {
    position: absolute;
    left: -80px;
    top: -80px;
    width: 200px;
    height: 200px;
    background-color: #f4f4f4;
    content: '';
    border-radius: 50%;
    z-index: -1;
}

.product-section-title .title {
    font-size: 36px;
    line-height: 46px;
    font-weight: 600;
    margin-bottom: 30px;
}

.product-section-title p {
    font-size: 16px;
    line-height: 30px;
}

.single-carousel-item-08 {
    box-shadow: 0 0 40px 0 rgba(0,0,0,.05);
    padding: 40px 30px;
    margin: 30px;
    border-radius: 20px;
}

.single-carousel-item-08 .top-part {
    display: flex;
    margin-bottom: 40px;
}

.single-carousel-item-08 .top-part .thumb img {
    border-radius: 50%;
}

.single-carousel-item-08 .top-part .thumb {
    margin-right: 20px;
}

.single-carousel-item-08 .top-part .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-carousel-item-08 .top-part .content .title {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.single-carousel-item-08 .top-part .content .designation {
    font-size: 14px;
}
.single-carousel-item-08 .bottom-part {
    display: flex;
}

.single-carousel-item-08 .bottom-part p {
    margin-bottom: 0;
}

.single-carousel-item-08 .bottom-part i {
    font-size: 30px;
    margin-right: 20px;
}

.single-carousel-item-08 .bottom-part p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
}
.testimonial-area .left-content-wrapper {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}
.testimonial-carousel-08 .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel-08 .owl-nav div {
    margin: 0 10px;
    transition: all 300ms;
}

.testimonial-carousel-08 .owl-nav div:hover {
    color: var(--main-color-one);
}

/* cta area */
.cta-inner-area {
    background-color: #1f1f1f;
    border-radius: 15px;
    padding: 80px 120px;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 0;
    overflow:hidden;
}
.cta-inner-area:after {
    position: absolute;
    right: -180px;
    top: -60px;
    width: 400px;
    height: 400px;
    background-color: #424242;
    content: '';
    border-radius: 50%;
    z-index: -1;
}

.cta-inner-area .left-content {
    width: 50%;
    margin-right: 40px;
}

.cta-inner-area .left-content .title {
    font-size: 40px;
    line-height: 46px;
    font-weight: 700;
    color: #fff;
}
.newsletter-form-wrap .form-group .form-control {
    width: 100%;
    padding-right: 70px;
}

.cta-inner-area .right-content {
    width: 50%;
    display: flex;
    align-items: center;
}

.cta-inner-area .right-content .newsletter-form-wrap {
    width: 100%;
}

.cta-inner-area .right-content .newsletter-form-wrap input::placeholder {
    opacity: .5;
}

.cta-inner-area .right-content .newsletter-form-wrap .submit-btn {
    width: 40px;
    height: 40px;
    background-color: #202020;
    line-height: 30px;
    font-size: 14px;
    padding: 0;
    border-radius: 5px;
    color: #fff;
    top: 5px;
    right: 8px;
}
.cta-inner-area:before {
    position: absolute;
    left: -70px;
    top: -70px;
    width: 300px;
    height: 300px;
    border: 50px solid #424242;
    border-radius: 50%;
    content: '';
    z-index: -1;
}

.footer-area.home-page-08 .footer-top {
    background-color: #f4f4f4;
    margin-top: -100px;
    padding-top: 200px;
}