@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
}
:root{
    --bg-danger:#f63440;
    --bg-white:#fff;
    --bg-light-white:#f5f5f5;
    --primary-font:"poppins","sans-serif";
    --text-white:#fff;
    --text-black:#121212;
    --text-danger:#f63440;
    --text-gray:#aaa;
    --text-dark-gray:#777;
}

body{
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    background-color: var(--bg-white);
    color: var(--text-black);
    overflow-x: hidden;
}

a,
a:hover{
    text-decoration: none;
}
p{
    margin: 0;
}
.btn-danger{
    background: var(--bg-danger);
    border-color: var(--bg-danger);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}
.btn-danger:hover{
    color: var(--bg-danger);
    background: transparent;
}

#header .fixed-top{
    box-shadow: 0 0.125rem 0.675rem rgb(0 0 0 / 5%);
}
#header .navbar-nav .nav-item .nav-link{
    color: var(--text-black);
    padding: 0.5rem 1rem;
    text-align: center;
}
#header .navbar-nav .nav-item .nav-link:hover,
#header .navbar-nav .nav-item .nav-link.active{
    color: var(--text-danger);
}
#header .navbar-toggler-icon{
    width: 30px;
    height: 20px;
}
#header .navbar-toggler-focus{
    box-shadow: none;
}

.home-banner-1,
.home-banner-2{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 90% center;
    min-height: 650px;
    position: relative;
}
.home-banner-1{
    background-image:url('banner1.jpg');
}
.home-banner-2{
    background-image:url('banner2.jpg') ;
}
.home-banner .home-banner-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-110%, -50%)
}
.home-banner .home-banner-text h1{
    font-size: 6rem;
}
.carousel-indicators [data-bs-target]{
    background-color: var(--bg-danger);
    width:2.5rem;
    height:0.313rem;
}
.carousel-control-next-icon,
.carousel-control-prev-icon{
  background: transparent;
}

.slider-icon{
    font-size: 3rem;
    font-weight: 600;
    color: var(--bg-danger);
}
.offers{
    padding-top: 8.75rem;
}
.offers .offer-box .offer-image::before{
    position: absolute;
    content: '';
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(to right, rgba(255,255,255,0)0% ,rgba(255,255,255,0.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0)0% ,rgba(255,255,255,0.3) 100%);
    transform: skewX(-25deg);
}
.offers .offer-box .offer-image img{
    transform: scale(1.02);
    width:100%;
    height: 100%;
    object-fit: cover;
}
.offers .offer-box:hover .offer-image::before{
    animation: effect_shine 1s;
}
@keyframes effect_shine{
    100%{
        left: 150%;
    }
}
.offers .offer-overlay::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.offers .offer-box .offer-info{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display:flex;
    flex-direction: column;
    z-index: 1;
    transition: all 250ms ease-out;
    justify-content: center;
    align-items: center;
}
.offers .offer-box .offer-info .heading-bigger{
    font-size: 4.375rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--text-white);
}
.offers .offer-box .offer-info .offer-title-1{
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 300;
    margin-bottom: 0;
    letter-spacing: 2px;
}
.offers .offer-box .offer-info .btn-outline-danger{
    color: var(--text-white);
    border-color: var(--bg-white);
    transition:all 0.3s ease-in-out;
}
.offers .offer-box .offer-info .btn-outline-danger:hover{
    border-color: var(--bg-danger);
    background-color: var(--bg-danger);
}
.products{
    padding-top: 8.75rem;
}
.headline h2::before{
    content: '';
    width: 30%;
    height: 0.125rem;
    background-color: var(--bg-danger);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0.625rem;
}
.products a{
    text-decoration: none;
    color: var(--text-black);
}
.product-list .product-imge img{
    transition: all 500ms ease-in-out;
}
.product-list .product-imge .product-imge-secondary{
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.product-list .product-imge:hover .product-imge-secondary{
    opacity: 1;
}
.product-list .product-imge .sale{
    background: var(--bg-danger);
    border-radius: 0.313rem;
    color: var(--text-white);
    font-size: 0.813rem;
    letter-spacing: 0.125rem;
    line-height: 1.563rem;
    padding: 0.125rem 0.813rem;
    text-transform: uppercase;
    position: absolute;
    left: 1rem;
    top: 1.188rem;
    z-index: 99;
}
.product-list .product-name h3{
    font-size: 1.125rem;
    color: var(--text-black);
    transition: all 0.3s ease 0s;
}
.product-list .product-name h3:hover{
    color: var(--text-danger);
}
.product-list .product-name .amount{
    color: var(--text-danger);
    font-weight: 500;
}
.product-list .product-name .amount del{
    color: var(--text-gray);
}
.product-list .product-name .ti-star :active{
    color: var(--text-danger);
}
.product-list .product-name .add_to_Card{
    background: transparent;
    border: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease 0s;
}
.product-list .product-name .add_to_Card:hover{
    color: var(--text-danger);
}

.products .up_to_off{
    position: relative;
}
.products .up_to_off::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
    cursor: pointer;
    transition: 0.5s;
}
.products .up_to_off img{
    transition: 0.5s;
}
.products .up_to_off:hover img{
    transform: scale(1.1);
}
.products .up_to_off h2{
    color: var(--text-white);
    font-size: 1.626rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.special{
    padding: 6rem 0;
    background: var(--bg-light-white);
}
.special .countdown-container{
    padding-top: 4.375rem;
}
.special .countdown-container p{
    color:var(--text-dark-gray) ;
    font-weight: 300;
    line-height: 1.875rem;
}
.special .countdown-container .countdown-counter{
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 1.875rem;
}
.special .countdown-container .countdown-counter li{
    display: inline-block;
    font-size: 0.875rem;
    font-weight: bold;
    text-align: center;
    background: var(--bg-white);
    border-radius: 0.3rem;
    padding: 2rem 1rem;
    width: 15%;
    margin: 0 0.313rem;
}
.special .countdown-container .countdown-counter li span{
    font-weight: 500;
}
.special .countdown-container .countdown-price del{
    color: var(--text-gray);
    font-size: 1rem;
}
.special .special-img span{
    background: var(--bg-danger);
    border-radius: 0.313rem;
    color: var(--text-white);
    font-size: 0.813rem;
    letter-spacing: 0.125rem;
    line-height: 1.563rem;
    padding: 0.125rem 0.813rem;
    text-transform: uppercase;
    position: absolute;
    left: 1rem;
    top: 1.188rem;
    z-index: 99;
}
.testimonial{
    padding: 5rem 0 8rem;
}
.testimonial .testimonial-wrapper{
    box-shadow: 0 0 0.563rem 0 rgb(0 0 0  / 5%);
    background: var(--bg-white);
    margin: auto;
    padding: 1rem 5rem;
    border: 0.063rem solid var(--bg-light-white);
    border-radius: 0.625rem;
}
.testimonial .testimonial-wrapper img{
    border-radius: 100%;
    width: 5rem;
    height: 5rem;
    margin: 1.25rem auto;
    object-fit: cover;
    background-color: var(--bg-white);
    border: 0.063rem solid var(--bg-white);
}
.testimonial .testimonial-wrapper span{
    color: var(--text-gray);
    font-size: 1rem;
    text-transform: uppercase;
    margin: 1rem 0;
    display:block ;
}
.testimonial .testimonial-wrapper p{
    color: var(--text-gray);
    font-size: 0.875rem;
    font-weight: 300;
}
.testimonial .carousel-indicators [data-bs-target]{
    background-color: var(--bg-danger);
    width:2.5rem;
    height:0.313rem;
}
.testimonial .carousel-control-next-icon,
.testimonial .carousel-control-prev-icon{
    background: transparent;
}

.testimonial .carousel-indicators{
    bottom: -3rem;
}

.testimonial .slider-icon{
    font-size: 3rem;
    font-weight: 600;
    color: var(--bg-danger);
}
.testimonial .carousel-control-prev{
    left: -8.75rem;
}
.testimonial .carousel-control-next{
    right: -8.75rem;
}
.contact{
    padding: 4rem 0;
    background-color: var(--bg-light-white);
}
.contact .info li p a{
    font-size: 1rem;
    display: inline-block;
    margin: 0.75rem 0;
    color: var(--text-black);
}
.contact .form-group{
    margin-bottom:1.5rem;
}
.contact .form-control{
    height: 3.75rem;
    padding: 0.375rem 1.1875rem;
    border: none;
    font-size: 1rem;
    box-shadow:0 0.1875rem 1.25rem 0 rgb(0 0 0  / 12%) ;
}
.contact textarea{
    width: 100%;
    border-radius: 0.25rem;
    padding: 0.75rem 1.1875rem;
    border: none;
    font-size: 1rem;
    margin-top: 0.3125rem;
    box-shadow: 0 0.1875rem 1.25rem 0 rgb(0 0 0 / 12%);
}
.contact textarea:focus{
    outline: none;
    border: none;
}
.copyright{
    background: var(--bg-danger);
}
.copyright p,
.copyright a{
    color: var(--text-white);
}
#scrollUp{
    position: fixed;
    right: 2%;
    bottom: 3%;
    height: 2.813rem;
    width: 2.5rem;
    border-radius: 0.25rem;
    text-align: center;
    cursor: pointer;
    z-index: 500;
    display: none;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    background: var(--bg-danger);
}
#scrollUp span{
    line-height: 2.625rem;
}
#scrollUp .scrollActive{
    display: block;
}