#products h2 {
    background-image: url(/assets/img/products-h2.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 100% auto;
}

.products-item {
    margin-top: 5.125rem;
    display: flex;
    gap: 1.25rem;
}

.products-item span {
    font-weight: 500;
    font-size: 2rem;
    line-height: 2rem;
    color: #8C8C8C;
    margin-right: 4.375rem;
}

.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-img {
    width: 44.375rem;
    height: 18.3125rem;
    flex-shrink: 0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1440px) {
    .product-img {
        width: 30%;
        height: auto;
    }

    .product-img img {
        width: 100%;
        height: auto;
        object-fit: initial;
    }
}

@media (max-width: 620px) {
    .products-item {
        flex-direction: column;
    }

    .product-img {
        width: 100%;
    }
}