.cards-section{
    padding: 0;

}
.cards-container::-webkit-scrollbar {
    height: 20px;
}

.cards-section::-webkit-scrollbar-thumb{
    border: 0.5rem solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    border-radius: 9999px;
    background-color: #D9D9D9;
}

.cards-section h6{
    margin: 32px 0px 15px;
    width: 100%;
    color: #1B1B1B;
    text-align: center;
    display: flex;
    flex-direction: column;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 37px;
}
.cards-container{
    overflow-x: auto;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.custom-card{
    border-radius: 16px;
    background:#FFF;
    box-shadow: 0px 2px 12px 0px rgba(27, 27, 27, 0.15);
    margin: 15px 14px 15px 16px; 
    padding: 0px;
    display: flex;
    min-width: 380px;
    max-width: 395px;

    height: auto;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}
.custom-card:first-child{
    margin-left: 0px;
}
.custom-card:last-child{
    margin-right: 0px;
}
.title-card{
    margin: 23px 0px 0px;
    color: #1B1B1B;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.description-card{
    margin: 8px 0px 24px;
    padding: 0px 24px 0px;
    align-self: stretch;
    color:#1B1B1B;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.2px;
}

.description-card p{
    margin: 0;
}
.card-image{
    border-radius: 16px 16px 0px 0px;
    width: 100%;
    height: 176.55px;
}

@media screen and (max-width: 420px) {
    .cards-section h6{
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 29.11px; 
    }
}


@media (min-width: 768px){
    .cards-section h6{
    font-size: 28px;

    }
}

@media (max-width: 767px){
    .custom-card{
        margin: 0px 16px 16px 0px; 
    }
}