.home{
    display: grid;
    row-gap: 56px;
}

.trial-list{
    display: grid;
    row-gap: 20px;
}
.trial-list__title{
    color: #1F1F1F;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 114.286% */
}
.trial-list__btn{
    border-radius: 99px;
    background: #BED600;
    color: #1F1F1F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
    padding: 10px 24px;
    justify-self: center;
    cursor: pointer;
}
.trial-list__content{
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 2 колонки */
    grid-template-rows: 380px 312px;
    gap: 20px;
}
.trial:nth-child(1) {
    grid-column: 1/4;
    grid-row: 1/2;
    grid-template-rows: 4fr 2fr;
    height: 100%;
}
.trial:nth-child(2) {
    grid-column: 4/7;
    grid-row: 1/2;
    grid-template-rows: 4fr 2fr;
    height: 100%;
}
.trial:nth-child(3) {
    grid-column: 1/3;
    grid-row: 2/3;
}
.trial:nth-child(4) {
    grid-column: 3/5;
    grid-row: 2/3;
}
.trial:nth-child(5) {
    grid-column: 5/7;
    grid-row: 2/3;
}

@media (max-width: 900px){
    .trial:nth-child(1), .trial:nth-child(2) {
        grid-template-rows: 27fr 20fr;
        height: auto;
    }
    .trial:nth-child(1), .trial:nth-child(2), .trial:nth-child(3), .trial:nth-child(4), .trial:nth-child(5){
        grid-column: auto;
        grid-row: auto;
        height: 310px !important;
    }
    .trial-list__content{
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        grid-template-rows: auto;
    }

}