.product {
    position: relative;
    z-index: 1;
    padding: 4.375rem 0 10rem
}

.product::before {
    content: "";
    position: absolute;
    top: 0;
    left: -630px;
    background: url(../../../../img/icons/shape-3.svg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -1
}

.product .title-main {
    margin-bottom: 4.375rem
}

.product__row {
    /*display: -ms-grid;*/
    /*display: grid;*/
    /*-ms-grid-columns:(1fr) [ 4 ];*/
    /*grid-template-columns:repeat(4, 1fr);*/
    /*gap: 3.125rem .9375rem*/
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.product__item {
    width: 19%;
    border-top: 1px solid #000
}

.product__item:hover img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03)
}

.product__title {
    padding: 1.5625rem 0;
    white-space: nowrap
}

@supports (font-size:clamp(1.375rem ,1.1863207547rem + 0.9433962264vw ,1.5rem)) {
    .product__title {
        font-size: clamp(1.375rem, 1.1863207547rem + .9433962264vw, 1.5rem)
    }
}

@supports not (font-size:clamp(1.375rem ,1.1863207547rem + 0.9433962264vw ,1.5rem)) {
    .product__title {
        font-size: calc(1.375rem + .125 * (100vw - 20rem) / 66.25)
    }
}

.product__title a {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-transition: color .4s ease-in-out;
    -o-transition: color .4s ease-in-out;
    transition: color .4s ease-in-out
}

.product__title:hover a {
    color: #1641bf
}

.product__text {
    color: #a4a4a4;
    font-size: 1rem;
    margin-bottom: 1.875rem;
    line-height: 1.375rem
}

.product__item-body {
    height: 10rem
}

.product__picture {
    overflow: hidden
}

.product__picture img {
    -webkit-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

@media (max-width: 61.99875em) {
    /*.product__row {*/
    /*    -ms-grid-columns:(1fr) [ 3 ];*/
    /*    grid-template-columns:repeat(3, 1fr)*/
    /*}*/

    .product__item {
        width: 48%;
        margin-bottom: 3rem;
    }
}

@media (max-width: 47.99875em) {
    /*.product__row {*/
    /*    -ms-grid-columns:(1fr) [ 2 ];*/
    /*    grid-template-columns:repeat(2, 1fr)*/
    /*}*/

    .product {
        padding: 3.125rem 0 6.25rem
    }

    .product__item {
        width: 100%;
    }
}

@media (max-width: 35.9375em) {
    .product .title-main {
        margin-bottom: 2.5rem
    }

    .product {
        padding: 3.125rem 0
    }
}

/*@media (max-width: 29.99875em) {*/
/*    .product__row {*/
/*        -ms-grid-columns:(1fr) [ 1 ];*/
/*        grid-template-columns:repeat(1, 1fr)*/
/*    }*/
/*}*/