@font-face  {
    font-family: 'Bebas';
    src: url('fonts/aa_bebasneue.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

h2, h3 {
    font-family: 'Bebas', sans-serif !important;
}

.u-section-7 .u-sheet-1 {
    min-height: 85px;
}

.u-section-7 .u-btn-1 {
    --radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    background-image: none;
    margin: 30px auto -250px;
}

.custom-list {
    list-style-type: none; /* Убираем стандартные маркеры */
    counter-reset: my-counter; /* Инициализируем счетчик */
    padding-left: 0; /* Убираем отступ слева */
}

.custom-list li {
    counter-increment: my-counter; /* Увеличиваем счетчик для каждого элемента */
    margin-bottom: 5px; /* Отступ между пунктами */
}

.custom-list li::before {
    content: counter(my-counter) ") "; /* Добавляем скобку после номера */
    margin-right: 5px; /* Отступ между номером и текстом */
}
