html, body {
    height: 100%;
    margin: 0;
}

html footer {
    margin-top: 0;
}

path.logo__text {
    fill: white;
}

.body {
    margin-top: 50px;
}

.body .row {
    align-items: center;
    gap: 40px;
}

.body .custom__button_new {
    margin-top: 30px;
}

.body__block img {
    width: 100%;
    border-radius: 16px;
}

.body h1,
.body h2,
.body p {
    color: #000;
}

.body h1 {
    font-size: 26px;
    font-weight: 400;
    line-height: 110%;
    width: 375px;
}

.body h2 {
    margin: 20px 0;
    font-size: 20px;
    font-weight: 300;
    line-height: 125%;
}

.body p {
    font-size: 14px;
    font-weight: 300;
    line-height: 125%;
    width: 375px;
}

.katalogs .katalog__block img {
    width: 100%;
    border-radius: 8px;
}

.katalogs {
    margin-top: 80px;
    padding-bottom: 60px;
}

.katalogs .katalog__block {
    display: inline-block;
    padding: 16px 12px;
    background: #F8F8F8;
    border-radius: 16px;
    height: 285px;
    width: 100%;
    transition: .3s;
}

.katalogs .katalog__block:hover {
    transform: scale(1.03);
    cursor: pointer;
}

.katalogs .katalog__block p {
    font-size: 16px;
}

@media (max-width: 1300px) {
    .body h1,
    .body p {
        width: auto;
    }
}

@media (max-width: 550px) {

    .body .row {
        flex-direction: column-reverse;
    }

    .body .custom__button_new {
        width: 100%;
    }

    .katalogs .katalog__block {
        height: auto;
    }

    .katalogs .col-md-3:not(:first-child) .katalog__block {
        margin-top: 20px;
    }

}