.ship_cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*grid-auto-rows: 1fr;*/ 
    gap: 20px;
}
.ship_cards__item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    background-color: #F5F5F7;
    box-sizing: border-box;
}
.ship_cards__top{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.ship_cards__icon{
    width: 40px;
    height: 40px;
}
.ship_cards__num{
    font-size: 38px !important;
    font-family: "Roboto Mono";
    color: var(--secondary-color-4, #CBCBCB);
    text-align: right;
}
.ship_cards__title{
    color: var(--black, #201600);
    font-family: Roboto;
    font-size: 19px;
    font-weight: 400;
    line-height: 140%;
}
.ship_cards__text{
    color: #333333;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}
.ship_cards__text p{
    margin: 0 0 10px;
}
.ship_cards__text p:last-child{
    margin-bottom: 0;
}
@media (max-width: 768px){
    .ship_cards{
        grid-template-columns: 1fr;
    }
}