.checklist {
    margin-bottom: 48px;
}

.checklist__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 72px;
    height: 84px;
    width: 100%;
    border-radius: 14px;
    background: #cc6c1e;
    /* background: linear-gradient(90deg, #a70701 40%, #F16001); */
}

.checklist__block-text {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 17px;
    line-height: 150%;
    color: #FFF;
}

.checklist__link {
    padding: 12px 36px;
    border-radius: 999px;
    font-family: "Inter";
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    color: #000;
    background: #FFF;
    transition: color 200ms ease, background 200ms ease;
    cursor: pointer;
}

.checklist__link:hover {
    background: #f3f3f3;
}

.catalog .container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    row-gap: 36px;
    column-gap: 12px;
    padding-top: 100px;
    margin-bottom: 307px;
}

.catalog-title {
    position: absolute;
    max-width: 493px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 25px;
    top: -15px;
    line-height: 150%;
    color: var(--main-color);
    margin-bottom: 48px;
}

.catalog-br {
    max-width: 525px;
    height: 1px;
    background: #D9D9D9;
    margin-bottom: 52px;
}

.about {
    margin-bottom: 125px;
}

@media (max-width: 1240px) {

    .catalog-title {
        font-size: 22px;
        text-align: center;
    }

    .catalog .container {
        justify-content: center;
        margin-bottom: 270px;
    }
}