.section-buildings h1 {
    font-size: 35px;
    line-height: 44px;
    margin-bottom: 0px;
}

.section-buildings .container {
    max-width: 1920px !important;
}

.section-buildings .filters-container {
    list-style: none;
    background: transparent;
    padding: 0px;
    background: white;
    padding: 0px;
    margin-top: 24px;
}

.section-buildings .filters-container .title {
    color: black;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1.5px;
}

.section-buildings .filters-container ul {
    list-style: none;
    margin: 0;
    padding-left: 0px;
    display: flex;
    gap: 14px;
    flex-direction: column;
    width: fit-content;
}

.section-buildings .filters-container ul li {
    height: 39px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.section-buildings .filters-container ul a {
    color: black;
    text-decoration: none;
    padding: 12px 10px;
    font-size: 16px;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 45px;
    height: 100%;
    width: 100%;
    border-radius: 2px;
    border-bottom: 1px solid black;
}

.section-buildings .filters-container ul a.active {
    color: var(--dark-green);
    background: var(--grey-4);
    border-bottom: 1px solid var(--dark-green);
}

.section-buildings .filters-container ul a::after {
    content: url("/assets/img/icons/black-link.svg");
    width: 6px;
    height: auto;
    display: block;
}

.section-buildings .filters-container ul a.active::after {
    content: url("/assets/img/icons/dark-green-link.svg");
}

.section-buildings .col {
    padding-top: 82px;
    padding-bottom: 100px;
}

.section-buildings .listing-col {
    background: var(--grey-4);
    padding-right: 38px;
    padding-left: 38px;
}

.section-buildings .listing-col .building-col {
    padding: 6px;
}

.section-buildings .filters-col {
    padding-left: 60px;
    padding-right: 60px;
    height: fit-content;
    position: sticky;
    top: 82px;
}

.section-buildings .filters-col .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-buildings .filters-col .text-wrapper .tagline {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 22px;
    color: var(--dark-green);
    letter-spacing: 0.1px;
}

.section-buildings .filters-col .text-wrapper p {
    color: var(--grey-1);
    font-weight: 400;
}

.section-buildings .filters-col .text-wrapper p span {
    color: black;
}

@media screen and (max-width: 991px) {

    .section-buildings .filters-container {
        list-style: none;
        background: transparent;
        padding: 0px;
        background: white;
        padding: 0px;
        margin-top: 24px;
    }

    .section-buildings .filters-container .title {
        color: black;
        font-size: 16px;
        text-transform: uppercase;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: 1.5px;
    }

    .section-buildings .filters-container ul {
        list-style: none;
        margin: auto;
        padding-left: 0px;
        display: flex;
        gap: 12px;
        flex-direction: row;
        width: fit-content;
        justify-content: center;
        flex-wrap: wrap;
    }

    .section-buildings .filters-container ul li {
        height: 29px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .section-buildings .filters-container ul a {
        color: black;
        text-decoration: none;
        padding: 5px 16px;
        font-size: 16px;
        line-height: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        column-gap: 0px;
        height: 100%;
        width: fit-content;
        border-radius: 0px;
        border-bottom: 1px solid var(--grey-3);
        border: 1px solid var(--grey-3);
    }

    .section-buildings .filters-container ul a.active {
        background: var(--green);
        border-bottom: 1px solid var(--green);
        border: 1px solid var(--green);
        color: black;
    }

    .section-buildings .filters-container ul a::after {
        content: none;
    }

    .section-buildings .filters-container ul a.active::after {
        content: none
    }

    .section-buildings .col {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .section-buildings .listing-col {
        background: white;
        padding-right: 20px;
        padding-left: 20px;
        padding-top: 0px;
    }

    .section-buildings .listing-col .building-col {
        padding: 8px 20px;
    }

    .section-buildings .filters-col {
        padding-left: 20px;
        padding-right: 20px;
        position: static;
        top: 0px;
    }

    .section-buildings .filters-col .text-wrapper {
        justify-content: center;
        gap: 35px;
        text-align: center;
    }
}