.CatalogSection {
    display: flex;
    flex-flow: row wrap;
}

.Catalog {
    display: flex;
    flex-flow: row wrap;
    margin-top: 30px;
    margin-bottom: 70px;
}

.Filter {
    width: 236px;
}

.CatalogElementList {
    width: calc(100% - 236px);
    padding-left: 27px;
}

.CatalogSection .CatalogItem {
    width: 25%;
    padding: 14px;
}

.CatalogSection {
    margin: -14px -14px 80px;
}


.PortfolioSection a {
    position: absolute;
    padding: 10px 25px;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #221F1C;
    text-decoration: none;
    background: #FFFFFF;
    box-shadow: 0px 4px 5px rgb(0 0 0 / 10%);
    border-radius: 25px;
    top: -60px;
    left: 0;
}

.PortfolioSection a svg {
    margin-right: 10px;
}
.PortfolioSection {
    position: relative;
}

h1 {
    padding-left: 230px;
    text-align: center;
}

@media (max-width: 1100px) {
    .CatalogSection .CatalogItem {
        width: 33.33%;
        padding: 10px;
    }

    .CatalogSection {
        margin: -10px -10px 80px;
    }
}

@media (max-width: 767px) {
    .Filter {
        width: 100%;
    }

    .CatalogElementList {
        width: 100%;
        padding-left: 0;
    }

    .CatalogSection .CatalogItem {
        width: 50%;
    }

    .PortfolioSection a {
        box-shadow: none;
        padding: 0;
        font-size: 0;
        top: -30px;
        background: none;
    }
    h1 {
        padding-left: 35px;
        text-align: left;
    }
}