.container-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.card {
    position: relative;
    padding: 30px;
    background-color: #F1F1F1;
    width: 32.333333333333%;
    margin: 0 0.5%;
    overflow: hidden;
    visibility: hidden;
}

.card::before {
    position: absolute;
    content: '';
    top: 0;
    left: -28px;
    width: 70px;
    height: 30px;
    transform: rotate(-45deg);
    background-color: white;
}

.card::after {
    position: absolute;
    content: '';
    bottom: 0;
    right: -28px;
    width: 70px;
    height: 30px;
    transform: rotate(-45deg);
    background-color: white;
}

.card__title-card {
    text-align: center;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    margin: auto;
    display: block;
    width: 218px;
    margin-bottom: 23px;
}

.card__btn-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 14px;
    font-family: 'Jost', sans-serif;
}

.card__img-poduct {
    width: 224px;
    height: 282px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 23px auto;
}

.card__img-poduct-hoodie {
    background-image: url(../img/hoodie.png);
}

.card__img-poduct-t-shirt {
    background-image: url(../img/Tshirt.png);
}

.card__img-poduct-cap {
    background-image: url(../img/cap.png);
}



/* mobile + tablet */
@media screen and (max-width:940px){
  
	.desktop{display:none!important;}

	.scrollbox{overflow:auto;overflow:-moz-scrollbars-none!important;}
      .scrollbox::-webkit-scrollbar{display:none;}

    .card {
        width: 49%;
        margin-bottom: 1%;
    }

    .card:last-child {
        margin-bottom: 0;
    }
}

/* mobile */
@media screen and (max-width:640px){
    .card {
        width: 100%;
        margin-bottom: 15px;
    }

    .card__btn-price {
        justify-content: center;
    }

    .card__btn {
        margin-right: 15px;
    }

    .card::before {
        display: none;
    }

    .card::after {
        display: none;
    }
}

@media screen and (max-width:400px){
    .card__btn-price {
        flex-direction: column;
    }

    .card__btn {
        margin: 0;
        margin-bottom: 15px;
    }
}