.pml-filters {
    background-color: #fff;
    position: sticky;
    top: 82px;
    padding: 20px 0;
    z-index: 99;
}
.pml-filters-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
}
.filter-btn {
    background: transparent !important;
    color: #000 !important;
    padding: 5px 0 !important;
    border: none;
    border-radius: 0 !important;
    cursor: pointer;
    font-size: 15px !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.filter-btn.active,
.filter-btn:hover {
    color: #5546FF !important;
}
.filter-btn:after {
    background: #5546FF !important;
}
.filter-btn.active:after,
.filter-btn:hover:after {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
#pml-container {
    margin-top: 20px;
}

.port_row {
    display: flex;
    margin-bottom: 20px;
    gap: 25px;
}
.port_6 {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.port_6 > .port_6 {
    flex: 1 1 45%;
    height: calc(50% - 12.5px);
}

#pml-load-more {
    display: block;
    margin: 50px auto 0;
    padding: 0 0 3px;
    background: transparent;
    color: #000;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    border-bottom: 1px solid #000;
    border-radius: 0;
}
#pml-load-more:after {
    display: none;
}

.pml-title, .elementor-kit-26 h3.pml-title {
    font-size: 18px;
    line-height: 1.4em;
    font-weight: 500;
}
.pml-card {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.pml-card img {
    width: 100%;
}
.pml-info {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-start;
    gap: 20px;
    padding-top: 10px;
    position: absolute;
    bottom: -1px;
    padding: 10px 0;
    background-color: #fff;
    width: 100%;
    transition: all 0.3s ease;
    transform: translateY(99%);
}
.pml-card:hover .pml-info {
    transform: translateY(0);
}
.pml-arrow_right {
    content: "";
    background: url('../arrow_right.svg') no-repeat center/ 100%;
    width: 30px;
    height: 10px;
    display: inline-block;
    margin-top: 5px;
}

@media (max-width: 1400px) {
    .pml-filters {
        overflow-x: auto;
    }
    .pml-filters-wrap {
        gap: 20px;
        min-width: 980px;
    }
    .filter-btn {
        font-size: 12px !important;
    }
}
@media (max-width: 991px) {
    .pml-title, .elementor-kit-26 h3.pml-title {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .port_row {
        flex-direction: column;
        gap: 15px;
    }
    #pml-container .port_row:nth-child(even) {
        flex-direction: column-reverse;
    }
    .port_6 {
        gap: 15px;
    }
}