.page__intercom-services {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

.products {
    padding: 32px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px 16px;
    position: relative;
    background-color: var(--lightgray-color);
    width: calc(100% + 32px);
    margin-left: -16px;
    border-bottom: 2px solid #e9ebeb;
}

@media (min-width: 768px) {
    .products {
        width: calc(100% + 84px);
        margin-left: -42px;
    }
}

/*
padding: 24px 16px;
768
.info__body {
    padding: 48px 42px;

*/

.products::before,
.products::after {
    content: '';
    position: absolute;
    background-color: var(--lightgray-color);
    height: 150%;
    width: 100%;
    bottom: 0;
    pointer-events: none;
}

.products::before {
    left: -50%;
}

.products::after {
    left: 50%;
}


@media (min-width: 768px) {
    .products::before {
        /*width: calc(100% + 84px);
        left: -42px;*/
    }
}


.product {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 4px;
    z-index: 2;
}

.product::before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% - (166px / 2));
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 6px 10px 0 rgb(0 0 0 / 2%), 0 1px 18px 0 rgb(0 0 0 / 4%), 0 3px 5px -1px rgb(0 0 0 / 10%);
}

.product__image {
    /*
    overflow: hidden;
    padding-bottom: calc(181 / 256 * 100%);*/
    position: relative;
    border-radius: 50%;
    border: 4px solid #fff;
    -webkit-filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.05));
    filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.05));
    padding: 0 0 27% 0;
    width: 166px;
    height: 166px;
    background-color: #f9fafa;
    text-align: justify;
    margin: 0 auto;
}

._icon-image-outter::before {
    background: transparent;
    content: '';
    position: absolute;
    top: -24px;
    left: calc(50% - 108px);
    z-index: 1;
    pointer-events: none;
    font-size: 13.5em;
    margin: 0 auto;
    color: var(--lightgray-color);
}

.product__body {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.product__content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product__name {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 148%;
    text-align: center;
    margin-bottom: 8px;
    padding: 40px 16px 0;
}

.product__price {
    font-size: 18px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
}

.requisits__row {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 5px 0;
}

.requisits__title {
    font-weight: bold;
}