.price_services{
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 20px;
    margin-bottom: 30px;
}

@media(max-width: 590px){
    .price_services{
        gap: 10px;
        grid-template-columns: repeat(1, auto);
    }
}

.offer-wrapper{
    display: flex;
    justify-content: flex-start;
    position: relative;
    height: max-content;
    background: #dceedc63;
}

.offer-title {
    font-size: 17px;
    color: white;
    white-space: nowrap;
    display: inline-block;
    overflow: visible;
    writing-mode: vertical-rl;
    background: #5e6f5e;
    padding: 14px 7px;
}
.offer-wrapper .site-pricelist-title {
    display: flex;
    flex: 0 0 65%;
    max-width: 65%;
    line-height: 1.5;
    justify-content: center;
}
.offer-description {
    padding: 0;
    border: unset;
    width: 100%;
    margin-left: 20px;
    display: flex;
    justify-content: center;
}

.df-column {
    flex-direction: column;
}


.oferta {
    text-decoration: line-through;
    text-decoration-color: black;
}

.offer-wrapper p{
    color: #424e41;
    font-size: 18px;
}

@media(max-width: 630px){
    .offer-wrapper p{
        font-size: 16px;
    }
}