.item_card{
    max-width: 410px;
    width: 100%;
    height: 547px;
    margin-bottom: 105px;
    border-radius: 30px;
    position: relative;
}
.item_card:hover.item_card .item_card_name {
    color: #f00;
}
.item_card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}


.item_card_data{
    min-width: 291px;
    min-height: 111px;
    /* height: 111px; */
    width: 291px;
    max-width: 300px;
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -55px;
    text-decoration: none;
    overflow: hidden;
}
.white{
    background: var(--white);
    color: #1f1f1f;
}
.black{
    background: var(--black);
    color: var(--white);
}

.item_card_name{
    font-size: 34px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 5px;
    margin-top: 10px;
    transition: all 300ms ease-in-out;
}
.item_card_price_value{
    font-size: 18px;
    font-weight: 400;
}

.price_white{
    color: var(--white);
}
.black .item_card_price_time{
    color: #fff;
}
.white .item_card_price_time{
    color: #000;
}
.item_card_price_time{
    font-size: 15px;
    font-weight: 400;
}

.item_card_parameters {
    opacity: 0;
    max-height: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0 0;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}
.item_card_parameters_item {
    display: flex;
    width: 49%;
    flex-direction: column;
}
.item_card_parameters_item:not(:last-child) {
    margin-bottom: 10px;
}
.item_card:hover .item_card_parameters {
    opacity: 1;
    max-height: 200px; 
}

@media (max-width: 1024px) {
    .girls {
        justify-content: space-evenly;
    }
    .item_card {
        max-width: 315px;
        height: 420px;
        margin-bottom: 75px;
        border-radius: 30px;
        position: relative;
    }
    .item_card_data{
        min-width: 245px;
        width: 245px;
        /* height: 105px; */
        min-height: 105px;
        max-width: 300px;
        padding: 20px 19px;
        
    }
    .item_card_name {
        font-size: 28px;
    }
  
}
@media (max-width: 768px) {
    .item_card {
        max-width: 354px;
        height: 472px;
        /* margin-bottom: 52px; */
        border-radius: 30px;
        position: relative;
    }
    .item_card_name {
        font-size: 28px;
    }
   
}
@media (max-width: 320px) {
    .item_card {
        max-width: 290px;
        height: 386px;
        margin-bottom: 55px;
    }
    .item_card_data{
        min-width: 250px;
        width: 250px;
        min-height: 88px;
        /* height: 88px; */
        max-width: 300px;
        padding: 20px 19px;
    }
    .item_card_name {
        font-size: 20px;
    }
   
}