    .info {
        display: flex;
        margin-bottom: 48px;
    }
    .info .logo {
        min-width: 159px;
        width: 159px;
        height: 92px;
        background-size: cover;
        background-repeat: no-repeat;
    }
    .info .title-block {
        padding-right: 40px;
    }
    .info .title-block .title {
        margin-bottom: 20px;
        font-size: 37px;    
    }
    .info .text {
        font-size: 19.2px;
        line-height: 130%;
    }

    .items-title {
        margin-bottom: 22px;
    }
    .items {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -8px -16px;
    }
    .item-wrap {
        padding: 0 16px;
        flex: 0 0 33%;
        max-width: 33%;
        margin-bottom: 32px;
    }
    .item {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 16px;
        font-size: 18px;
        text-align: center;
        border-radius: 16px;
        box-shadow: 1px 1px 16px rgba(0,0,0,0.1);
        color: #003268;
        font-weight: bold;
    }
    .item .icon {
        width: 100px;
        min-width: 100px;
        height: 100px;
        margin-bottom: 16px;
    }

    @media (max-width: 992px) {
        .item-wrap {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }
    @media (max-width: 575px) {
        .item-wrap {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }