#products {
    background: #F8F9FC;
    padding: 80px 0 80px 0;
}

#products.products-technology {
    background: #F8F9FC;
}

.products-section-title {
    font-weight: bold;
    font-size: 44px;
    line-height: 59px;
    text-align: center;
    letter-spacing: -0.04em;
    margin: 0 0 64px 0;
}

.products-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1115px;
    margin: 0 auto;
    padding: 0 25px;
}

.products-column {
    width: 31.625%;
}

.products-column-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #98A6B2;
    margin: 0 0 32px 0;
}

.product {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    margin: 0 0 32px 0;
    border-radius: 10px;
    transition: background-color 0.2s ease-in-out;
}

.product:hover {
    background: rgba(201, 219, 255, 0.2);
    transition: background-color 0.2s ease-in-out;
}

.product .product-icon {
    display: block;
    max-width: 72px;
    width: 100%;
    margin: 0 24px 0 0;
}

.product .product-icon svg,
.product .product-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.product .product-content {
    display: flex;
    flex-direction: column;
}

.product .product-content h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: start;
    color: #0A2144;
    margin: 0 0 8px 0;
}

.product .product-content p {
    font-size: 18px;
    line-height: 24px;
    color: #728799;
    margin: 0;
    max-width: 200px
}


/* @media (max-width: 1230px) { */

@media (max-width: 1024px) {
    .products-section-title {
        font-weight: bold;
        font-size: 38px;
        line-height: 60px;
        margin: 0 0 30px 0;
    }
    .products-inner {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        flex-direction: column;
        max-width: 460px;
        margin: 0 auto;
    }
    .products-column {
        width: 100%;
        margin: 0 0 40px 0;
    }
    .products-column:last-child {
        margin: 0;
    }
    .product {
        padding: 10px;
        border-radius: 8px;
    }
    .product .product-icon {
        max-width: 48px;
    }
    .product .product-content h3 {
        font-size: 18px;
        line-height: 22px;
        font-weight: bold;
    }
    .product .product-content p {
        font-size: 16px;
        line-height: 20px;
        max-width: none;
    }
}

@media (max-width: 992px) {
    #products {
        padding: 60px 0 90px 0;
    }
    .product {
        margin-bottom: 8px;
    }
    .products-column {
        margin-bottom: 24px;
    }
    .products-column-title {
        font-size: 20px;
        line-height: 24px;
        margin: 0 0 16px 0;
    }
    .products-section-title {
        text-align: left;
        padding: 0 30px;
    }
    .product .product-content h3 {
        font-size: 16px;
    }
}