@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&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&family=Roboto:ital,wdth,wght@0,75..100,100..900;1,75..100,100..900&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* navbar */
.navbar {
    position: static;

    background: #fff !important;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
}

/* navbar-brand */
.navbar-brand{
    font-family:Playfair ;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 40px;
}

/* .carousel-item img */
.carousel-item img {
    height: 860px;
    background-size: cover;
}

/* .btns button */
.btns button {
    margin: 0px 4px;

}

/* .btns .btn-outline-primary */
.btns .btn-outline-primary {
    font-weight: 500;
    padding: 10px 15px;
    color: #000 !important;
    border-color: #000;
    transition: all 1.5s;
    font-family: Poppins;
    font-weight: 700;
}

/* btns .btn-outline-primary:hover */
.btns .btn-outline-primary:hover {
    background: black !important;
    border-color: #000;
    color: #fff !important;
    transition: all 1.5s;
    transform: scale(1.10);
}

.navbar-nav .nav-item a {
    color: #000 !important;
    transition: all 1.5s;
    border: none;
    font-family: roboto;
}

.navbar-nav .nav-item a:hover {
    color: #ffffff !important;
    /* border: 1.5px solid black; */
    background: #000;
    border-radius: 6.5px;
    font-weight: 600;
    transition: all 1.5s;

}

/* ======== nav end ========= */

#Electronic h1 {
    text-align: center;
    font-weight: 700;
    margin-top: 15px;
    font-family: Playfair Display;
    font-weight: 800;

}

#Fashion h1,#Beauty h1,#Home h1,#Fitness h1{
    text-align: center;
    font-weight: 700;
    margin-top: 30px;
    font-family: Playfair Display;
    font-weight: 800;
}

/* card-parent */
.card-parent {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 40px 0px;

    margin-top: 20px;
}

c {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
    transition: all .4s;
    transform: scale(1.020);
}

@media only screen and (max-width:575px) {
    .card {
        width: 100% !important;
    }
  
    .card-body .card-title{
font-size: 22px;
font-weight: 600;
    }
    .card-body .card-text{
        font-size: 18px;
    }
    .card-body p{
        font-size: 18px;
        font-weight: 600;
    }
}

 .card-title {
    font-family: Inter;
    font-weight: 600;
}

.card-text {
    font-family: roboto;
}

.card-parent .card:hover {
    transition: all .4s;
    transform: scale(1.035);
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-body .btn {

    margin: 2.5px 0px;
    background: rgba(0, 0, 0, 0.853) !important;
    border-color: rgba(0, 0, 0, 0.801);
    color: #fff !important;
    transition: all 2s;
    font-family: Poppins;
    font-weight: 600;

}

.card-body .btn:hover {
    background: #000 !important;
    border-color: #000;
    color: #fff !important;
    transition: all 2s;

}
footer{
    margin-top: 50px;
}
.back-to-top a{
 font-weight: 500;
    padding: 10px 15px;
    color: #000 !important;
    border: 1.5px solid black;
    border-color: #000;
    transition: all 1.5s;
    font-family: Poppins;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
   position: relative;
   top: 15px;
}
.back-to-top a:hover{
     background: black !important;
    border-color: #000;
    color: #fff !important;
    transition: all 1.5s;
    transform: scale(1.10);
}