.sub-header .buttons-wrapper {
    overflow-x: scroll;
    display: flex;
    direction: rtl;
    gap: 0.5rem;
}
.sub-header .buttons-wrapper {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.sub-header .buttons-wrapper::after {
    content: "";
    flex: 0 0 2rem;
}

.sub-header .buttons-wrapper::-webkit-scrollbar {
    display: none;
}

.items-main-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.items-main-container a{
    text-decoration: none;
    color: var(--cl-secondary-green);
    direction: rtl;
    width: 100%;
}

.item-container {
    justify-content: flex-end;
    top:1rem;
    display: flex;
    background-color: var(--cl-primary);
    padding-inline: 2rem;
    height: 200px;
    border-radius: 99rem;
    width: 100%;
    z-index: 99;
    position: relative;

}

.item-container .item__image-container {
    position: absolute;
    left: 0;
    z-index: 999;
    top: 50%;
    transform: translate(-10%, -50%);
}
.item-container .item__image__background{
    background-size: cover;
    display: flex;
    align-items: center;
    height: 150px;
    width: 160px;
    justify-content: center;
}
.item-container .item__image__background .item__image {
    display: flex;
    height: 100%;
    width: 100%;
    position: relative;
    left: .4rem;
    bottom: .3rem;
    justify-content: center;

}
.item-container .item__image__background .item__image img{
    max-width: 161px;
}
.item-container .item__info-container{
    width: 800%;
    margin-top: 1.5rem;
    max-width: 60%;
    direction: rtl;
}
@media (max-width: 430px) {
    .item-container .item__info-container{
        width: 100%;
        margin-top: 1.5rem;
        max-width: 60%;
        direction: rtl;
    }
}
.item-container .item__info-container .item__info__title{
    font-size:16px;
    font-family: var(--ff-secondary);
}
.item-container .item__info-container .item__info__description{

    font-size: calc(var(--fs-sm) - .2rem) !important;
    font-weight: 200;
    text-align: justify;
}

.item-container:nth-last-child(1) .item-line{
    display: none;
}
.item-line {
    width: 85%;
    height: auto;
    margin-inline: auto;
    position:absolute;
    left: 50%;
    z-index: 1;
    bottom: 1rem;
    transform: translate(-50%, 100%);
}

.item-container:nth-child(even) {
    direction: rtl;
}
.item-container:nth-child(even) .item__image-container {
    left: unset;
    right: 0;
    transform: translate(10%, -55%);
}
.item-container:nth-child(even) .item__info-container{
    right: 8rem;
    position: relative;
}
@media (min-width: 390px) {
    .item-container:nth-child(even) .item__info-container{
        right: 7.5rem;
        position: relative;
    }
}
.item-container:nth-child(even) .item__image__background .item__image {
    right: .4rem;
    left: 0;
    bottom: 0;
    top: .3rem;
}
.price-label-container {
    position: absolute;
    right: 4rem;
    bottom: 1rem;
    font-weight: bold;
    border-radius: 9rem 9rem 9rem 9rem;
    padding: .2rem 1rem;
    font-size: calc(var(--fs-sm) - .1rem);
    width: 60%;
    display: block;
    background-color: var(--cl-secondary);
    color: var( --cl-primary);
    text-align: right;
}
.item-container:nth-child(even) .price-label-container {
    right: unset;
    left: 4rem;
    border-radius: 9rem 0rem 0rem 9rem;
    text-align: left;
}
.item-container:nth-child(even) .price-label-container::after {
    left: unset;
    right: 0.5rem;
}

.price-label-container::after {
    display: block;
    width: 80px;
    height: 50px;
    background-color: var(--cl-primary);
    border-radius: 50%;
    content: '';
    left: 0rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
