Загрузка данных


<style>
.nb-services-catalog,
.nb-services-catalog * {
    box-sizing: border-box;
}

.nb-services-catalog {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --dark: #111827;
    --text: #5f6b7a;
    --border: #bfd5f7;
    --light-blue: #eef5ff;
    --white: #ffffff;

    position: relative;
    left: 50%;

    width: 100vw;
    margin-left: -50vw;
    padding: 68px 24px 78px;

    overflow: hidden;

    font-family: inherit;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(219, 234, 254, 0.48),
            rgba(255, 255, 255, 0) 46%
        ),
        #ffffff;
}

.nb-services-catalog__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

/* Верхняя часть */
.nb-services-catalog__header {
    max-width: 850px;
    margin: 0 auto 42px;

    text-align: center;
}

.nb-services-catalog__label {
    margin: 0 0 12px;

    color: var(--blue);

    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nb-services-catalog__title {
    margin: 0 0 18px;

    color: var(--dark);

    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.045em;
}

.nb-services-catalog__description {
    max-width: 700px;
    margin: 0 auto;

    color: var(--text);

    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
}

/* Сетка */
.nb-services-catalog__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

/* Карточка */
.nb-service-card {
    position: relative;

    min-width: 0;
    min-height: 210px;
    padding: 24px 22px 22px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    color: inherit !important;
    text-decoration: none !important;

    background: rgba(255, 255, 255, 0.98);
    border: 2px solid var(--border);

    box-shadow:
        6px 6px 0 rgba(37, 99, 235, 0.12);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

/* Синий угол */
.nb-service-card::before {
    content: "";

    position: absolute;
    top: -2px;
    left: -2px;

    width: 16px;
    height: 16px;

    background: var(--blue);
}

/* Иконка */
.nb-service-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;

    color: var(--blue);

    background: var(--light-blue);
    border: 2px solid var(--blue);

    box-shadow:
        4px 4px 0 rgba(37, 99, 235, 0.16);
}

.nb-service-card__icon svg {
    display: block;

    width: 28px;
    height: 28px;

    stroke: currentColor;
}

/* Номер */
.nb-service-card__number {
    position: absolute;
    top: 18px;
    right: 18px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.12em;
}

/* Заголовок */
.nb-service-card__title {
    width: 100%;
    margin: 0 0 12px;
    padding-right: 24px;

    color: var(--dark);

    font-size: 19px;
    font-weight: 900;
    line-height: 1.2;
    text-align: left;
}

/* Текст */
.nb-service-card__text {
    width: 100%;
    margin: 0;
    padding-top: 12px;

    color: var(--text);
    border-top: 1px dashed #d8e4f5;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

/* Стрелка */
.nb-service-card__arrow {
    width: 34px;
    height: 34px;
    margin-top: auto;
    padding-top: 16px;

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;

    color: var(--blue);

    font-size: 22px;
    font-weight: 800;
    line-height: 1;

    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.nb-service-card:hover {
    color: inherit !important;

    background: #ffffff;
    border-color: var(--blue);

    transform: translate(-3px, -3px);

    box-shadow:
        10px 10px 0 rgba(37, 99, 235, 0.18);
}

.nb-service-card:hover .nb-service-card__arrow {
    color: var(--blue-dark);
    transform: translateX(5px);
}

.nb-service-card:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.28);
    outline-offset: 5px;
}

/* Нижняя плашка */
.nb-services-catalog__footer {
    margin-top: 34px;
    padding: 22px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    background: var(--light-blue);
    border: 2px solid var(--border);
}

.nb-services-catalog__footer-text {
    margin: 0;

    color: var(--dark);

    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.nb-services-catalog__footer-button {
    min-width: 220px;
    min-height: 50px;
    padding: 13px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 0 auto;

    color: #ffffff !important;
    background: var(--blue);
    border: 2px solid var(--blue);

    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none !important;

    box-shadow:
        5px 5px 0 #b9d2f7;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.nb-services-catalog__footer-button::after {
    content: "→";

    font-size: 19px;
    line-height: 1;
}

.nb-services-catalog__footer-button:hover {
    color: #ffffff !important;
    background: var(--blue-dark);

    transform: translate(3px, 3px);

    box-shadow:
        2px 2px 0 #b9d2f7;
}

/* Ноутбуки */
@media (max-width: 1200px) {
    .nb-services-catalog__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Планшеты */
@media (max-width: 900px) {
    .nb-services-catalog {
        padding-right: 18px;
        padding-left: 18px;
    }

    .nb-services-catalog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nb-services-catalog__footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .nb-services-catalog__footer-button {
        width: 100%;
    }
}

/* Телефоны */
@media (max-width: 767px) {
    .nb-services-catalog {
        padding: 44px 14px 54px;
    }

    .nb-services-catalog__header {
        margin-bottom: 28px;
    }

    .nb-services-catalog__label {
        font-size: 11px;
    }

    .nb-services-catalog__title {
        font-size: clamp(34px, 11vw, 46px);
    }

    .nb-services-catalog__description {
        font-size: 15px;
    }

    .nb-services-catalog__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .nb-service-card {
        min-height: 0;
        padding: 20px 18px;
    }

    .nb-service-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 17px;
        flex-basis: 48px;
    }

    .nb-service-card__icon svg {
        width: 26px;
        height: 26px;
    }

    .nb-service-card__title {
        font-size: 18px;
    }

    .nb-service-card__text {
        font-size: 14px;
    }

    .nb-services-catalog__footer {
        margin-top: 24px;
        padding: 20px 17px;
    }

    .nb-services-catalog__footer-text {
        font-size: 15px;
    }
}
</style>


<section class="nb-services-catalog">

    <div class="nb-services-catalog__inner">

        <header class="nb-services-catalog__header">

            <p class="nb-services-catalog__label">
                Notebook1.by
            </p>

            <h2 class="nb-services-catalog__title">
                Услуги
            </h2>

            <p class="nb-services-catalog__description">
                Диагностика, ремонт и обслуживание ноутбуков.
                Выберите нужную услугу, чтобы узнать подробности,
                сроки и особенности ремонта.
            </p>

        </header>


        <div class="nb-services-catalog__grid">

            <!-- 01 -->
            <a class="nb-service-card" href="/diagnostika-noutbukov/">

                <span class="nb-service-card__number">01</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <circle cx="11" cy="11" r="6"></circle>
                        <path d="M16 16L21 21"></path>
                        <path d="M8 11H14"></path>
                        <path d="M11 8V14"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Диагностика ноутбука
                </h3>

                <p class="nb-service-card__text">
                    Определим причину неисправности и предложим
                    оптимальный вариант ремонта.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 02 -->
            <a class="nb-service-card" href="/remont-materinskoj-platy/">

                <span class="nb-service-card__number">02</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="5" y="5" width="14" height="14"></rect>
                        <path d="M9 9H15V15H9Z"></path>
                        <path d="M2 9H5M2 15H5M19 9H22M19 15H22"></path>
                        <path d="M9 2V5M15 2V5M9 19V22M15 19V22"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Ремонт материнской платы
                </h3>

                <p class="nb-service-card__text">
                    Восстановление цепей питания, контроллеров,
                    дорожек и других компонентов платы.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 03 -->
            <a class="nb-service-card" href="/zamena-matricy-noutbuka/">

                <span class="nb-service-card__number">03</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="3" y="4" width="18" height="13"></rect>
                        <path d="M8 21H16"></path>
                        <path d="M12 17V21"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Замена матрицы
                </h3>

                <p class="nb-service-card__text">
                    Подберём совместимый дисплей, проверим шлейф
                    и качество изображения.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 04 -->
            <a class="nb-service-card" href="/remont-kryshki-i-petel/">

                <span class="nb-service-card__number">04</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="4" y="4" width="16" height="11"></rect>
                        <path d="M2 19H22"></path>
                        <path d="M8 15V19M16 15V19"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Ремонт корпуса и петель
                </h3>

                <p class="nb-service-card__text">
                    Восстановим крепления, крышку, петли
                    и повреждённые элементы корпуса.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 05 -->
            <a class="nb-service-card" href="/zamena-klaviatury-noutbuka/">

                <span class="nb-service-card__number">05</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="3" y="6" width="18" height="12"></rect>
                        <path d="M6 9H8M10 9H12M14 9H16M18 9H19"></path>
                        <path d="M6 12H8M10 12H12M14 12H16M18 12H19"></path>
                        <path d="M7 15H17"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Замена клавиатуры
                </h3>

                <p class="nb-service-card__text">
                    Замена неработающих клавиатур, отдельных клавиш
                    и клавиатурных модулей.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 06 -->
            <a class="nb-service-card" href="/chistka-noutbuka/">

                <span class="nb-service-card__number">06</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <path d="M12 3V7"></path>
                        <path d="M12 17V21"></path>
                        <path d="M3 12H7"></path>
                        <path d="M17 12H21"></path>
                        <path d="M5.6 5.6L8.4 8.4"></path>
                        <path d="M15.6 15.6L18.4 18.4"></path>
                        <circle cx="12" cy="12" r="4"></circle>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Чистка и профилактика
                </h3>

                <p class="nb-service-card__text">
                    Удалим пыль, заменим термоинтерфейсы
                    и проверим систему охлаждения.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 07 -->
            <a class="nb-service-card" href="/remont-sistemy-ohlazhdeniya/">

                <span class="nb-service-card__number">07</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <circle cx="12" cy="12" r="3"></circle>
                        <path d="M12 3C15 3 17 5 17 8C17 10 15 11 12 12"></path>
                        <path d="M21 12C21 15 19 17 16 17C14 17 13 15 12 12"></path>
                        <path d="M12 21C9 21 7 19 7 16C7 14 9 13 12 12"></path>
                        <path d="M3 12C3 9 5 7 8 7C10 7 11 9 12 12"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Ремонт охлаждения
                </h3>

                <p class="nb-service-card__text">
                    Замена вентиляторов, ремонт тепловых трубок
                    и устранение перегрева.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 08 -->
            <a class="nb-service-card" href="/remont-razema-pitaniya/">

                <span class="nb-service-card__number">08</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <path d="M9 3V10"></path>
                        <path d="M15 3V10"></path>
                        <path d="M7 10H17V13C17 16 15 18 12 18C9 18 7 16 7 13V10Z"></path>
                        <path d="M12 18V22"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Ремонт разъёма питания
                </h3>

                <p class="nb-service-card__text">
                    Восстановим питание, заменим разъём
                    и проверим зарядное устройство.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 09 -->
            <a class="nb-service-card" href="/remont-razemov-noutbuka/">

                <span class="nb-service-card__number">09</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="3" y="7" width="18" height="10"></rect>
                        <path d="M7 10H10V14H7Z"></path>
                        <path d="M14 10H18"></path>
                        <path d="M14 14H18"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Ремонт разъёмов
                </h3>

                <p class="nb-service-card__text">
                    Замена USB, HDMI, аудиоразъёмов,
                    Type-C и других портов ноутбука.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 10 -->
            <a class="nb-service-card" href="/remont-posle-zalitiya/">

                <span class="nb-service-card__number">10</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <path d="M12 2C12 2 6 9 6 14C6 17.3 8.7 20 12 20C15.3 20 18 17.3 18 14C18 9 12 2 12 2Z"></path>
                        <path d="M9 15C9.5 16.5 10.5 17 12 17"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Ремонт после залития
                </h3>

                <p class="nb-service-card__text">
                    Очистка платы, устранение окислов
                    и восстановление повреждённых цепей.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 11 -->
            <a class="nb-service-card" href="/zamena-ssd-hdd/">

                <span class="nb-service-card__number">11</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="4" y="3" width="16" height="18"></rect>
                        <circle cx="12" cy="11" r="4"></circle>
                        <circle cx="12" cy="11" r="1"></circle>
                        <path d="M16 17H18"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Замена SSD и HDD
                </h3>

                <p class="nb-service-card__text">
                    Подберём накопитель, перенесём систему
                    и увеличим скорость работы ноутбука.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 12 -->
            <a class="nb-service-card" href="/uvelichenie-operativnoj-pamyati/">

                <span class="nb-service-card__number">12</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="3" y="7" width="18" height="10"></rect>
                        <path d="M7 10H9V14H7Z"></path>
                        <path d="M11 10H13V14H11Z"></path>
                        <path d="M15 10H17V14H15Z"></path>
                        <path d="M6 17V20M10 17V20M14 17V20M18 17V20"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Увеличение оперативной памяти
                </h3>

                <p class="nb-service-card__text">
                    Проверим совместимость и установим
                    дополнительную оперативную память.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 13 -->
            <a class="nb-service-card" href="/zamena-akkumulyatora/">

                <span class="nb-service-card__number">13</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="3" y="7" width="17" height="10"></rect>
                        <path d="M20 10H22V14H20"></path>
                        <path d="M7 12H11"></path>
                        <path d="M9 10V14"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Замена аккумулятора
                </h3>

                <p class="nb-service-card__text">
                    Проверим состояние батареи и установим
                    совместимый аккумулятор.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 14 -->
            <a class="nb-service-card" href="/proshivka-bios/">

                <span class="nb-service-card__number">14</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="5" y="5" width="14" height="14"></rect>
                        <path d="M9 9H15V15H9Z"></path>
                        <path d="M2 9H5M2 15H5M19 9H22M19 15H22"></path>
                        <path d="M9 2V5M15 2V5M9 19V22M15 19V22"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Прошивка BIOS
                </h3>

                <p class="nb-service-card__text">
                    Восстановим BIOS после сбоя, неудачного обновления
                    или отсутствия запуска.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 15 -->
            <a class="nb-service-card" href="/remont-videochipa/">

                <span class="nb-service-card__number">15</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <rect x="5" y="5" width="14" height="14"></rect>
                        <path d="M8 15L11 12L13 14L16 10"></path>
                        <circle cx="15.5" cy="8.5" r="1"></circle>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Ремонт видеосистемы
                </h3>

                <p class="nb-service-card__text">
                    Диагностика видеочипа, памяти,
                    питания и системы вывода изображения.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 16 -->
            <a class="nb-service-card" href="/ustanovka-windows/">

                <span class="nb-service-card__number">16</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <path d="M3 5L11 4V11H3V5Z"></path>
                        <path d="M13 3.7L21 3V11H13V3.7Z"></path>
                        <path d="M3 13H11V20L3 19V13Z"></path>
                        <path d="M13 13H21V21L13 20.3V13Z"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Установка Windows
                </h3>

                <p class="nb-service-card__text">
                    Установка системы, драйверов,
                    обновлений и необходимых программ.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 17 -->
            <a class="nb-service-card" href="/udalenie-virusov/">

                <span class="nb-service-card__number">17</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <path d="M12 4C16 4 19 7 19 11V14C19 18 16 20 12 20C8 20 5 18 5 14V11C5 7 8 4 12 4Z"></path>
                        <path d="M8 2L9 5"></path>
                        <path d="M16 2L15 5"></path>
                        <path d="M2 10L5 11"></path>
                        <path d="M22 10L19 11"></path>
                        <path d="M2 17L6 16"></path>
                        <path d="M22 17L18 16"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Удаление вирусов
                </h3>

                <p class="nb-service-card__text">
                    Очистим систему от вредоносных программ,
                    рекламы и нежелательных расширений.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 18 -->
            <a class="nb-service-card" href="/vosstanovlenie-dannyh/">

                <span class="nb-service-card__number">18</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <path d="M4 7H10L12 9H20V19H4V7Z"></path>
                        <path d="M12 12V17"></path>
                        <path d="M9.5 14.5L12 12L14.5 14.5"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Восстановление данных
                </h3>

                <p class="nb-service-card__text">
                    Поможем восстановить документы, фотографии
                    и другие важные файлы.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 19 -->
            <a class="nb-service-card" href="/remont-igrovyh-noutbukov/">

                <span class="nb-service-card__number">19</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <path d="M7 8H17C20 8 22 11 21 15L20 18C19.5 20 17 20.5 16 18L14.5 16H9.5L8 18C7 20.5 4.5 20 4 18L3 15C2 11 4 8 7 8Z"></path>
                        <path d="M7 11V15"></path>
                        <path d="M5 13H9"></path>
                        <circle cx="16" cy="12" r="1"></circle>
                        <circle cx="18" cy="14" r="1"></circle>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Игровые ноутбуки
                </h3>

                <p class="nb-service-card__text">
                    Ремонт и обслуживание игровых моделей
                    с мощными системами охлаждения.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>


            <!-- 20 -->
            <a class="nb-service-card" href="/nastroyka-noutbuka/">

                <span class="nb-service-card__number">20</span>

                <span class="nb-service-card__icon" aria-hidden="true">
                    <svg viewBox="0 0 24 24" fill="none">
                        <circle cx="12" cy="12" r="3"></circle>
                        <path d="M12 2V5"></path>
                        <path d="M12 19V22"></path>
                        <path d="M2 12H5"></path>
                        <path d="M19 12H22"></path>
                        <path d="M4.9 4.9L7 7"></path>
                        <path d="M17 17L19.1 19.1"></path>
                        <path d="M19.1 4.9L17 7"></path>
                        <path d="M7 17L4.9 19.1"></path>
                    </svg>
                </span>

                <h3 class="nb-service-card__title">
                    Настройка ноутбука
                </h3>

                <p class="nb-service-card__text">
                    Настроим программы, интернет, учётные записи
                    и основные параметры системы.
                </p>

                <span class="nb-service-card__arrow">→</span>

            </a>

        </div>


        <div class="nb-services-catalog__footer">

            <p class="nb-services-catalog__footer-text">
                Не нашли нужную услугу? Опишите неисправность —
                мы подскажем, можно ли восстановить ноутбук.
            </p>

            <a
                class="nb-services-catalog__footer-button"
                href="#contacts">

                Связаться с мастерской

            </a>

        </div>

    </div>

</section>