@charset "utf-8";
/* CSS Document */
.main-bar-text {
    width: 96%;
    max-width: 960px;
    margin: 0 auto 70px auto;
}


/* ------------ products -------------*/
.products-Box .inner {
    display: grid;
    grid-template-columns: 2fr 2.5fr 2.5fr;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 10px;
    border-top: 0.5px solid #eee;
    border-bottom: 0.5px solid #eee;
}

.products-Box .inner div {
/*    width: calc( (100% - 20px) /3);*/
    font-size: 1.4rem;
    padding: 10px;
}

.products-Box .inner:first-child div {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .products-Box .inner {
        width: 100%;
        grid-template-columns: 1fr 1fr 1fr;
        max-width: 960px;
        column-gap: 30px;
        margin: 0 auto;
    }
    
    .products-Box .inner div {
        padding: 20px;
    }
/*
    .products-Box .inner {
        column-gap: 30px;
    }
    
    .products-Box .inner div {
        width: calc( (100% - 60px) /3);
    }
}
*/
}

/* ------------ sell-items -------------*/
.sell-items {
    margin: 40px auto;
    width: 96%;
    max-width: 960px;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    column-gap: 15px;
}

.sell-items .inner img {
    opacity: 0.8;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 4;
}

.sell-items .inner {
    background-color: #ffff00;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    margin-bottom: 15px;
    height: 200px;
}

.sell-items .inner p {
    margin: 0;
    font-weight: bold;
    position: relative;
    z-index:5;
    color: red;
}

@media screen and (min-width: 768px) {
    .sell-items {
        width: 100%;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
}

