.products-items{
    margin-top: 3.875rem;
}

.products-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.125rem;
    margin-bottom: 3.875rem;
}

.product-text {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2rem;
    flex-grow: 1;
}

.product-text h3 {
    font-weight: 500;
    font-size: 2rem;
    line-height: 2rem;
    margin: 0 0 0.75rem;
}

.product-text p{
    margin-bottom: 3.875rem;
}

.product-text p:last-child{
    margin-bottom: 0;
}

@media (max-width: 1440px) {
    .product-img {
        width: 30%;
        height: auto;
    }

    .product-img img {
        width: 100%;
        height: auto;
        object-fit: initial;
    }
    .products-item{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .products-item {
        flex-direction: column;
    }

    .product-img {
        width: 100%;
    }
}