.products_ter_section .products_ter_section__inner {
    display: flex;
    flex-direction: column;
    gap: var(--gap-rahmat-bigger);
}
.products_ter_section .products_ter_section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-rahmat-medium);
}
.products_ter_section .products_ter_section__smalltitle {
    font-size: var(--font-rahmat-size-small);
    color: var(--color-rahmat-text-secondary);
    font-weight: 500;
    margin: 0;
}
.products_ter_section .products_ter_section__title {
    margin: 0;
    font-weight: bold;
    font-size: var(--font-h1-size);
    color: var(--text-primary-color);
    line-height: var(--h2-line-height);
}
.products_ter_section .products_ter_wrap_inner {
    /*display: grid;*/
    /*grid-template-columns: repeat(3, 1fr);*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap-rahmat-medium);
}

.products_ter_section .products_ter_item {
    /*width: 32.2%;*/
    width: 23.7%;
    background-color: var(--color-rahmat-secondary);
    border-radius: var(--border-rahmat-radius-big);
    min-height: 300px;
    position: relative;
    padding: 30px 24px 85px;
    /*display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;*/
}

.products_ter_section .products_ter_item_header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.products_ter_section .products_ter_item_img {
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    font-size: 0;
}
.products_ter_section .products_ter_item_img img {
    transition: var(--global-transition);
}
.products_ter_section .products_ter_item_title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000;
}
.products_ter_section .products_ter_mini_title {
    font-size: var(--font-rahmat-size-middle);
    color: var(--color-rahmat-text-secondary);
    font-weight: normal;
    line-height: 20px;
}
.products_ter_section .products_ter_inner_text ul {
    padding-left: 12px;
    margin: 0;
}
.products_ter_section .products_ter_inner_text ul li {
    font-size: var(--font-rahmat-size-middle);
    color: var(--color-rahmat-primary);
    line-height: 20px;
}
.products_ter_section .products_ter_inner_text ul span{
    font-size: var(--font-rahmat-size-middle);
    color: var(--color-rahmat-text-secondary);
    line-height: 20px;
}
.products_ter_section .products_ter_btn {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 24px;
}
.products_ter_section .products_ter_btn a {
    flex: 1 0 0%;
    padding: 25px 16px;
}
.products_ter_section .products_ter_btn svg {
    color: #fff;
    transition: var(--transition-rahmat-normal);
}
.products_ter_section .products_ter_btn a:hover svg {
    color: var(--color-rahmat-primary);
}

/*==========  Desktop First  ==========*/
/* (≥1440px) (≥1500px) down ↓ max xxxl 1 */
@media (max-width: 1499.98px) {

}

/* (≥1340px) (≥1440px) down ↓ max xxl 1 */
@media (max-width: 1439.98px) {

}

/* (≥1200px) (≥1340px) down ↓ max lg 1 */
@media (max-width: 1339.98px) {
    .products_ter_section .products_ter_item {
        /*width: 31.2%;*/
        width: 23.2%;
    }
}

/* (≥992px) (≥1200px) down ↓ max lg 2 */
@media (max-width: 1199.98px) {

}

/* (≥768px) (≥992px) down ↓ max md 3 */
@media (max-width: 991.98px) {
    .products_ter_section .products_ter_item {
        width: 48%;
    }
    .products_ter_section .products_ter_wrap_inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* (≥576px) (≥768px) down ↓ max sm 4 */
@media (max-width: 767.98px) {
    .products_ter_section .products_ter_item {
        width: 100%;
    }
}

/* (≥480px) (auto) (≥540px) down ↓ max xd 5 */
@media (max-width: 559.98px) {
    .products_ter_section .products_ter_wrap_inner {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* (≥360px) (auto) (≥480px) down ↓ max zx 6 */
@media (max-width: 479.98px) {

}

/* (auto) (<320px) down ↓ max sx 7 */
@media (max-width: 359.98px) {

}

/*==========  Mobile First  ==========*/

/* ≤320px up ↑ min sx */
@media (min-width: 320px) {

}

/* ≤360px up ↑ min zx */
@media (min-width: 360px) {

}

/* ≤480px up ↑ min xd */
@media (min-width: 480px) {

}

/* ≤540px up ↑ min sm */
@media (min-width: 560px) {

}

/* ≤768px up ↑ min md */
@media (min-width: 768px) {

}

/* ≤992px up ↑ min lg */
@media (min-width: 992px) {

}

/* ≤1200px up ↑ min xl */
@media (min-width: 1200px) {

}

/* ≤1340px up ↑ min xxl */
@media (min-width: 1340px) {

}

/* ≤1400px up ↑ min xxxl */
@media (min-width: 1400px) {

}

/* ≤1565px up ↑ */
@media (min-width: 1565px) {

}