.pgw-filter a.active{
    font-weight:bold;
}
.pgw-filter{
    display: flex;
    justify-content: flex-end;
    align-items: center; 
    gap: 0.75vw;
}
.pgw-top-row{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2vw;
    margin: 4vw 0 2.5vw 0;
}
.pgw-featured{
    width: 70%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: #000;
    cursor: pointer;
}
.pgw-featured .pgw-image {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0.9;
}
.pgw-featured .pgw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s all ease;
}
.pgw-featured:hover .pgw-image img {
    transform: scale(1.08);
}
.project-detail-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 2.5vw;
    left: 0;
    padding: 0 2vw;
}
.pgw-featured .pgw-category {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration-line: none !important;
    color: white;
    background-color: #AB3334;
    padding: 4px 13px;
    border-radius: 20px;
}
.pgw-featured .details-container{
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.pgw-featured .details-container h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    color: white;
}
.pgw-featured .project-location {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.pgw-featured .project-location p {
    font-size: 19px;
    color: #f3f3f3;
    margin: 0;
}
.pgw-featured .arrow-container {
    background-color: white;
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    position: relative;
}
.pgw-featured .arrow-container svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pgw-review-card{
    width: 30%;
    background-color: #0F1D2E;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    padding: 3vw;
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
}
.pgw-review-card .review-count {
    font-family: 'Plus Jakarta Sans';
    font-size: 20px;
    font-weight: 600;
    color: #AB3334;
    margin: 0;
}
.pgw-review-card .review-text {
    font-family: 'Plus Jakarta Sans';
    font-size: 22px;
    font-weight: 600;
    line-height: 36px;
    font-style: italic;
    color: white;
    margin: 0;
}
.pgw-review-card .profile-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1vw;
}
.pgw-review-card .user-profile {
    width: 3.5vw;
    height: 3.5vw;
    background-color: #E1E3E4;
    border-radius: 50%;
}
.pgw-review-card .user-profile-details {
    display: flex;
    flex-direction: column;
}
.pgw-review-card .user-profile-details p.user-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: white;
    margin: 0;
}
.pgw-review-card .user-profile-details p.user-location {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    color: #788597;
    margin: 0;
}
.pgw-review-card .verified-icon {
    position: absolute;
    bottom: -2.5vw;
    right: -2.5vw;
}
.pgw-review-card .verified-icon svg {
    width: 16vw;
    height: 16vw;
}
.pgw-bottom-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: flex-start;
    align-items: stretch;
    gap: 3vw;
    margin-top: 3vw;
}
.pgw-bottom-grid .pgw-item {
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 100%;
    box-shadow: 0px 6px 15px -2px rgba(16, 24, 40, 0.05);
    border-radius: 10px;
    overflow: hidden;
}
.pgw-bottom-grid .pgw-image {
    width: 100%;
    height: 18vw;
    overflow: hidden;
    position: relative;

}
.pgw-bottom-grid .pgw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.65s all ease;
}
.pgw-bottom-grid .pgw-item:hover .pgw-image img {
    transform: scale(1.1);
}
.pgw-bottom-grid .pgw-category {
    position: absolute;
    top: 1vw;
    left: 1vw;
    background-color: white;
    text-decoration-line: none !important;
    color: black;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 12px;
    border-radius: 4px;
}
.pgw-bottom-grid .project-details-container {
    width: 100%;
    padding: 2vw 1.5vw;
}
.pgw-bottom-grid .project-details-container h4 {
    margin: 0;
    font-size: 22px;
    line-height: 30px;
}
.pgw-bottom-grid .pgw-description {
    color: #808285;
    margin-top: 0.75vw;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
}
.pgw-bottom-grid .flx-link-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1vw 0 0 0;
    padding-top: 1vw;
    border-top: 1px solid #F3F4F5;
}
.pgw-bottom-grid .project-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration-line: none !important;
    gap: 5px;
}
.pgw-bottom-grid .project-link svg {
    width: 1.5vw;
    height: 1.5vw;
}
.pgw-bottom-grid .project-link p {
    margin: 0;
}
.pgw-bottom-grid .pgw-date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}
.pgw-bottom-grid .pgw-date p {
    color: #75777D;
    margin: 0;
    font-size: 12px;
}
.pgw-load-more-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5vw;
}
.flx-top-pgw-content{
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}
.flx-top-pgw-content h3 {
    margin: 0;
    font-size: 2.5vw;
    font-weight: 600;
}
.flx-top-pgw-content p {
    font-size: 15px;
    line-height: 24px;
    margin: 0;
}
.flx-top-pgw-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}


@media (max-width: 1024px) {
    .flx-top-pgw-container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 3vw;
    }
    .flx-top-pgw-content {
        width: 100%;
    }
    .pgw-filter {
        width: 100%;
    }
    .elementor-786 .elementor-element.elementor-element-f0614d4 .pgw-filter a {
        font-size: 14px !important;
    }
    .pgw-review-card .review-count {
        font-size: 18px;
    }
    .pgw-review-card .review-text {
        font-size: 18px;
        line-height: 30px;
    }
    .pgw-review-card .profile-container {
        margin-top: 1.5vw;
    }
    .pgw-review-card .user-profile-details p.user-name {
        font-size: 14px;
    }
    .pgw-review-card .user-profile-details p.user-location{
        font-size: 12px;
    }
    .pgw-featured .details-container h2 {
        font-size: 26px;
    }
    .pgw-featured .project-location svg {
        width: 22px;
        height: 22px;
    }
    .pgw-featured .project-location p {
        font-size: 17px;
    }
    .pgw-featured .pgw-category {
        font-size: 11px;
        letter-spacing: 0.58px;
    }
    .pgw-featured .arrow-container svg {
        width: 20px;
        height: 20px;
    }
    .pgw-featured .pgw-image {
        height: 370px;
    }
    .pgw-bottom-grid .project-details-container h4 {
        font-size: 18px;
        line-height: 24px;
    }
    .pgw-bottom-grid .pgw-description {
        margin-top: 1.5vw;
        margin-bottom: 2.5vw;
        font-size: 13px;
        line-height: 18px;
    }
    .pgw-bottom-grid .project-link p {
        font-size: 13px;
    }
}

@media (max-width: 780px) {
    .pgw-bottom-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pgw-bottom-grid .pgw-image {
        height: 24vw;
    }
    .pgw-top-row{
        flex-direction: column-reverse;
    }
    .pgw-review-card {
        width: 100%;
    }
    .pgw-featured{
        width: 100%;
    }
    .pgw-featured .arrow-container{
        width: 6vw;
        height: 6vw;
    }
    .flx-top-pgw-content h3{
        font-size: 3.5vw;
    }
    .pgw-review-card .user-profile {
        width: 5.5vw;
        height: 5.5vw;
    }
}

@media (max-width: 580px) {
    .flx-top-pgw-content h3 {
        font-size: 4vw;
    }
    .elementor-786 .elementor-element.elementor-element-f0614d4 .pgw-filter a {
        font-size: 13px !important;
    }
    .pgw-review-card .review-text {
        font-size: 17px;
        line-height: 28px;
    }
    .pgw-featured .pgw-image {
        height: 320px;
    }
    .pgw-bottom-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pgw-bottom-grid .pgw-image {
        height: 35vw;
    }
    .elementor-786 .elementor-element.elementor-element-f0614d4 .pgw-filter a {
        white-space: nowrap;
    }
    .pgw-filter {
        justify-content: flex-start;
        overflow: scroll;
    }
}
@media (max-width: 480px) {
    .pgw-bottom-grid {
        grid-template-columns: 1fr;
    }
    .pgw-bottom-grid .pgw-image {
        height: 45vw;
    }
    .flx-top-pgw-content h3 {
        font-size: 5.5vw;
    }
    .pgw-top-row, .pgw-bottom-grid{
        width: 98%;
        margin: 4vw auto 2.5vw auto;
    }
}