.prodp {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #555;
    line-height: 22px;
}

.prodh {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    color: #333333;
    margin: 0;
    padding: 0;
    font-size: 27px;
    font-weight: 500;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
}

.cardContainer {
    position: relative;
    width: 300px;
    height: 400px;
    min-width: 300px;
    min-height: 400px;
    margin: 4px;
    perspective: 1000px;
}

.card {
    display: inline-block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    
    transform-style: preserve-3d;
    transform: translateZ(-100px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover {
    transform: translateZ(0px);
}

.card .side {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-color: white;
}

.card .front {
    z-index: 2;
}

.card .info {
    padding: 16px 16px 0px 16px;
}

.front .img {
    object-fit: cover;
    background-color: #dadce2;
    background-position: center;
    background-size: cover;
    border-radius: 5px 5px 0 0;
    width: 100%;
    height: 250px;
}

.price {
    position: absolute;
    bottom: 0px;
    right: 17px;
}
.filter-section{
    margin-right: 15px;
    display: flex;
    width: 38%;
    background-color: white;
    border-radius: 30px;
}
.namefilter{
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #ffffff;
    appearance: none;
    border-radius: 15px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.selectfilter{
    display: block;
    width: 100px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #7d858c;
    background-color: #ffffff;
    border: 1px solid #fbfbfb;
    border-radius: 0px;
    appearance: none;
}
.filbut{
    color: #F0F2F1;
    border: 1px solid #fbfbfb;
    border-radius: 15px;
}
.second-filter{    
    margin-top: 15px;      
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}
.filter-2-search{ 
    width: 100%;
    margin: 20px 10%;
}