.things-container{
    float: left;
    width: 100%;
    background-color: var(--white);
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 10px;
    position: relative;
    padding-left: 25px;
}
.things-container::after{
    content: "";
    position: absolute;
    bottom: -30px !important;
    left:0;
    height: 2px;
    width: 100%;
    background-color: #e3e3e3;
}

.things-container::before{
    content: "";
    position: absolute;
    top: -28px !important;
    left:0;
    height: 2px;
    width: 100%;
    background-color: #e3e3e3;
}

.things-header{
   color: black;
   font-weight: 600;
   margin-bottom: 17px;
   padding-left: 7px;
}
.card-image{
    width: 100%;
}
.scrolling-wrapper {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
}

.scrolling-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #666 #f1f1f1;
}

.scrolling-wrapper::-webkit-scrollbar {
    height: 8px;
}

.scrolling-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scrolling-wrapper::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 10px;
}

.scrolling-wrapper::-webkit-scrollbar-thumb:hover {
    background: #444; 
}

.activity-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 230px;
    margin-right: 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}
.activity-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.activity-info {
    padding: 10px;
    text-align: left;
}

.activity-info p{
    margin: 0;
    color: black;
    padding-bottom: 1px;
}

.activity-info .title{
    width: 100%;
    /* padding-bottom: 8px; */
    /* padding-top: 10px; */
}
.title p{
    font-weight: 600;
    color: black;
    font-size: 16px;
}
.reviews{
    font-size: 18px;
    font-weight: bold;
    color: black;
}
.price {
    text-align: right;
    font-size: 21px;
    font-weight: bold;
    color: oklch(0.279 0.041 260.031) !important;
    padding-top: 30px;
}
@media (max-width: 768px) {
    .scrolling-wrapper {
        flex-wrap: nowrap;
        overflow-x: scroll;
    }
    .activity-card {
        width: 80%;
    }

    .sub-title{
        padding-left: 10px;
    }
}