._q1 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2em;
}

._q1__count {
    font-size: 30px;
    font-weight: bold;
    margin-right: 30px;
    padding-top: 5px;
}

._q1__count > p:last-child {
    margin-bottom: 0;
}

._products {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 16px;
}

._product {
    padding: 32px 16px;
    border: 1px solid #d0dfe4;
    text-align: center;
    flex-basis: calc((100% - 32px) / 3);
    display: flex;
    flex-direction: column;
}

._product__image {
    margin-bottom: 16px;
}

._product__title {
    color: #13adac;
    font-size: 18px;
    line-height: 1.56em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 16px;
}

._product__description {
    margin-bottom: 16px;
}

._product__price {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 24px;
}

._product__button {
    margin-top: auto;
}

@media screen and (max-width: 1024px) {
    ._product {
        flex-basis: calc((100% - 16px) / 2);
    }
}

@media screen and (max-width: 600px) {
    ._product {
        flex-basis: 100%;
    }
}