/* ====================================Top Slider  ====================================*/
.top-slider-wrap{
    width: 100%;
    display: block;
    padding: 15px 0;
    margin: 0;
    background: #550d0e;
    text-align: center;
}
.top-slider-wrap .each-item p{
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
}
/* ====================================Home Banner  ====================================*/
.home-banner{
    width: 100%;
    display: block;
    padding: 150px 0;
    margin: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
}
.home-banner .bnr-content h2{
    font-size: 72px;
    font-weight: 500;
    color: #550d0d;
    margin: 0;
}
.home-banner .bnr-content p{
    font-size: 22px;
    font-weight: 400;
    color: #252525;
    margin: 25px 0;
}

.banner_slider{
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}
.banner_slider .item{
    outline: none;
    margin: 0;
    padding: 0;
}
.banner_slider ul.slick-dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 14px;
}
.banner_slider ul.slick-dots li{
    line-height: 1em;
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px;
}
.banner_slider ul.slick-dots li button {
    width: 12px;
    height: 12px;
    border: 0;
    outline: none;
    border-radius: 100%;
    font-size: 0;
    color: transparent;
    padding: 0;
    line-height: normal;
    background: #fff;
    box-shadow: rgb(0 0 0 / 10%) 0 0 10px;
}
.banner_slider ul.slick-dots li.slick-active button {
    background: #550d0d;
}
.banner_slider .slick-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: transparent;
    font-size: 0;
    outline: none;
    z-index: 99;
    opacity: 0.5;
    transition: all 0.5s ease-in-out;
    border-radius: 4px;
}
.banner_slider .slick-arrow:hover{
    opacity: 1;
}
.banner_slider .slick-prev {
    position: absolute;
    left: 15px;
    background: #fff url(https://bdazzling.in/wp-content/uploads/2022/08/new-slider2.png) no-repeat center;
    background-size: 8px;
    width: 30px;
    height: 35px;
    padding: 0;
    box-shadow: rgba(0,0,0,0.1)0 0 10px;
}
.banner_slider .slick-next{
    position: absolute;
    right: 15px;
    background: #fff url(https://bdazzling.in/wp-content/uploads/2022/08/new-slider1.png) no-repeat center;
    background-size: 8px;
    width: 30px;
    height: 35px;
    padding: 0;
    box-shadow: rgba(0,0,0,0.1)0 0 10px;
}
/* ====================================Product Sec ====================================*/
.product-sec{
    width: 100%;
    display: block;
    padding: 90px 0 60px;
    margin: 0;
}
.product-sec .each-product{
    position: relative;
    overflow: hidden;
    margin: 0 0 30px;
}
.product-sec .each-product img{
    /* width: 100%; */
    border-radius: 10px;
}
.product-sec .each-product::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.product-sec .each-product:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.product-sec .each-product .txt-wrap{
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
.product-sec .each-product .txt-wrap h4{
    font-size: 28px;
    font-weight: 600;
    color: #550d0d;
    margin: 0 0 5px;
}
.product-sec .each-product .txt-wrap .cta-link{
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #252525;
}
.product-sec .each-product .txt-wrap .cta-link:hover{
    color: #000;
}
/* ====================================Collection Sec ====================================*/
.collection-sec{
    width: 100%;
    display: block;
    padding: 70px 0;
    margin: 0;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
}
.collection-sec p{
    font-size: 22px;
    font-weight: 500;
    color: #252525;
    margin: 25px 0 40px;
}
.collection-sec .each-collection{
    position: relative;
    overflow: hidden;
    margin: 0 0 40px;
}
.collection-sec .each-collection::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.collection-sec .each-collection:hover::before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
.collection-sec .each-collection img{
    width: 100%;
    /* height: 350px !important; */
}
.collection-sec .each-collection h4{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    background: #252525;
    border-radius: 2px;
    padding: 20px 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 94px;
    position: relative;
    margin: -1px;
}
.collection-sec.deals-sec .each-collection h4{
    font-size: 17px;
    line-height: 22px;
    min-height: 80px;
    padding: 20px 45px;
}
.deals-sec .row{
    margin-top: 40px;
}
.deals-sec .each-collection h5 {
    font-size: 22px;
    font-weight: 600;
    color: #550d0d;
    margin: 15px 0 25px;
    min-height: 53px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.deals-sec .price-n-cta {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #bfbfbf;
    padding-bottom: 20px;
}
.deals-sec .price-n-cta h6{
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #252525;
    margin: 0;
}
.deals-sec .deals-cta{
    display: inline-block;
    background: #fccd00;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.deals-sec .deals-cta:hover{
    color: #fff;
}
.deals-sec .deals-cta:after{
    position: absolute;
    content: '';
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #550d0d;
    transition: 0.5s;
}
.deals-sec .deals-cta:hover:after{
    left: 0;
}
/* ====================================Arrival Sec ====================================*/
.arrival-sec{
    width: 100%;
    display: block;
    padding: 70px 0 40px;
    margin: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
}
.arrival-sec .content-wrap p{
    width: 100%;
    max-width: 400px;
    color: #fff;
    margin: 25px 0;
}
.arrival-sec .content-wrap .heading, 
.arrival-sec .content-wrap .cta,
.arrival-sec .content-wrap .cta i{
    color: #fff;
}
.arrival-sec .img-wrap .each-img{
    margin: 0 0 30px;
    position: relative;
    overflow: hidden;
}
.arrival-sec .img-wrap .each-img img{
    width: 100%;
}
.arrival-sec .img-wrap .each-img::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.arrival-sec .img-wrap .each-img:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
/* ====================================Review Sec ====================================*/
.review-sec{
    width: 100%;
    display: block;
    padding: 100px 0 125px;
    margin: 0;
    text-align: center;
}
.review-sec .review-slider {
    width: 100%;
    display: block;
    margin: 40px 0 0;
}
.review-sec .review-slider .item{
    padding: 30px 0;
    outline: none;
    border: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.review-sec .review-slider .each-item {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: rgba(0,0,0,0.1)0 0px 10px;
    width: 100%;
    max-width: 370px;
    padding: 55px 25px 35px;
    position: relative;
    margin-left: auto !important;
    margin-right: auto !important;
}
.review-sec .review-slider .each-item::after{
    position: absolute;
    content: '';
    top: 35px;
    left: 10px;
    width: 115px;
    height: 119px;
    background-image: url('../home-images/img-19.png');
    background-repeat: no-repeat;
}
.review-sec .review-slider blockquote{
    margin: 0;
    border: 0;
}
.review-sec .review-slider p{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #252525;
    margin: 0 0 10px;
}
.review-sec .review-slider h6{
    font-size: 18px;
    font-weight: 500;
    color: #550d0d;
    margin: 0;
}
.review-sec .review-slider .each-item{
    z-index: -1;
    margin: 30px 0;
}
.review-sec .review-slider .slick-current.slick-center{
    transform: scale(1.5);
    padding: -30px 0 30px;
    z-index: 9;
    border: none;
    outline: none;
}
.slick-slide:focus,
.slick-slide  {
    border: none !important;
    outline: none !important;
}
/* ====================================Responsive  ====================================*/
@media screen and (max-width: 1199px) {
    .home-banner{
        padding: 100px 0;
    }
    .home-banner .bnr-content h2 {
        font-size: 62px;
    }
    .home-banner .bnr-content p {
        font-size: 18px;
        margin: 20px 0;
    }
}
@media screen and (max-width: 1024px) {
    .review-sec .review-slider .slick-current.slick-center{
        transform: scale(1.2);
    }
    .review-sec {
        padding: 100px 0 80px;
    }
    .review-sec .review-slider{
        margin: 0;
    }
}
@media screen and (max-width: 991px) {
    .product-sec{
        padding: 70px 0 40px;
    }
    .collection-sec{
        padding: 40px 0;
    }
    .collection-sec p {
        margin: 15px 0 40px;
    }
    .collection-sec .each-collection h4 {
        font-size: 18px;
        padding: 28px 15px;
        min-height: 95px;
    }
    .arrival-sec{
        padding: 40px 0 10px;
    }
    .review-sec{
        padding: 40px 0 20px;
    }
    .review-sec .review-slider .each-item {
        margin: 0;
    }
    .review-sec .review-slider .slick-current.slick-center{
        transform: scale(1.1);
    }
}
@media screen and (max-width: 840px) {
    .review-sec .review-slider .slick-current.slick-center{
        transform: scale(1);
    }
}
@media screen and (max-width: 767px) {
    .home-banner {
        padding: 70px 0;
    }
    .home-banner .bnr-content h2{
        font-size: 45px;
    }
    .home-banner .bnr-content p {
        font-size: 16px;
    }
    .product-sec .col-md-4,
    .collection-sec .col-md-4,
    .arrival-sec .img-wrap .col-md-6{
        width: 50%;
    }
    .arrival-sec .content-wrap{
        margin: 0 0 40px;
    }
    .product-sec {
        padding: 50px 0 30px;
    }
    .collection-sec .each-collection{
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .collection-sec p {
        font-size: 19px;
        font-weight: 400;
        margin: 15px 0 30px;
    }
    /* .collection-sec .each-collection img{
        height: 300px !important;
    } */
    .collection-sec .each-collection h4 {
        padding: 20px 15px;
        min-height: 84px;
    }

}
@media screen and (max-width: 575px) {
    .home-banner {
        padding: 40px 0;
    }
    .home-banner .bnr-content h2 {
        font-size: 40px;
    }
    .home-banner .bnr-content p {
        font-size: 16px;
        margin: 15px 0;
    }
    /* .collection-sec .each-collection img {
        height: 250px !important;
    } */


.banner_slider ul.slick-dots {
    bottom: 2px;
}
.banner_slider ul.slick-dots li button {
    width: 10px;
    height: 10px;
}    
}
@media screen and (max-width: 490px) {
    .home-banner .bnr-content{
        text-align: center;
        padding: 15px;
        background: #00000014;
        border-radius: 10px;
        backdrop-filter: blur(5px);
    }
    .product-sec .each-product .txt-wrap h4 {
        font-size: 22px;
    }
    .collection-sec .col-md-4{
        width: 100%;
    }
    .collection-sec .each-collection{
        min-height: auto;
    }
}
@media screen and (max-width:420px) {
    .product-sec .col-md-4{
        width: 100%;
    }
    .review-sec .review-slider .each-item {
        padding: 25px 15px;
    }
} 
@media screen and (max-width: 375px) {
    .home-banner .bnr-content h2 {
        font-size: 33px;
    }
    .review-sec {
        padding: 40px 0 0;
    }
    .product-sec .col-md-4{
        width: 100%;
    }
    .collection-sec .each-collection h4 {
        padding: 15px;
        min-height: 60px;
    }
}