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


/* hero section  */
.hero{
    background-image: url(../img/spacce.jpg);
    height: 30vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    /* color: #fff; */
    color: #F44336;
    font-size: 20px;
    margin-bottom: 40px;
}

.hero p{
    color: #d7d7d7;
}


.products-one.contenar{
    padding: 0 8px;
}

.btn-cont #btn{
    display: none;
}

/* pagenation */

.pagenation{
    text-align: center;
    margin-bottom: 10px;
}
.pagenation a{
    padding: 10px 15px;
    background-color: #009688;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    transition: .3s;
}
.pagenation a:hover{
    color: #ec6c6c;
}