.section-cards{
    padding-top: 50px;
}

.section-cards .cards .card h1{
    /*font-family: 'Alright Sans';*/
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    /*font-weight: normal;*/
    color: #000000;
    font-size: 10px; 
    line-height: 20px;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 0px;
}

.section-cards .categories #list-categories li{
    /*font-family: 'Alright Sans'; */
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    /*font-weight: normal;*/
    font-size: 14px;
    line-height: 20px;
    padding: 0px 12px;
    cursor: pointer;
}

.section-cards .categories #list-categories .active{
    color: #D31145;
    text-decoration: underline;
}

.section-cards .cards .card p{
    /*font-family: 'AlrightSans-Regular';*/
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    color: #000000;
    font-size: 14px;
    line-height: 20px;
    max-width: 224px;
    text-align: center;
    margin-top: 8px;
}

.section-cards .cards .card a{
    /*font-family: 'Alright Sans';*/
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    color: #D31145;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    display: none;
}

.section-cards .categories #list-categories{
    list-style: none;
    padding: 0px;
}


.section-cards .categories #list-categories{
    overflow-x: auto;
    min-width: 970px;
}

.section-cards .categories {
    overflow-x: auto;
    max-width: 100%;
    margin-bottom: 44px;

}

.section-cards .custom-select {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    height: 45px;
    border-radius: 14px;
    display: none;
    width: 100%;
    max-width: 350px;
    margin: 0px  20px 44px 20px;
}

.section-cards .custom-select option {
    font-weight: normal;
    color: black;
}

.section-cards .custom-select option:checked {
    font-weight: bold;
    color: #D31145;
}

.section-cards .cards{
    display: grid;
    grid-template-columns: repeat(
        auto-fit,
        minmax(250px, 272px)
    );
    gap: 18px 16px;
    margin-bottom: 194px;
}

.section-cards .cards .card{
    height: auto;
    width: 100%;
    max-width: 272px;
    min-height: 330px;
    border-radius: 16px;
}

.section-cards .cards .card img{
    margin-top: 64px;
}

.section-cards .cards .card:hover a{
    display: block;
}

.section-cards .cards .card:hover{
    /*box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);*/
    box-shadow: 0px 4px 16px #5454541F;
    border: 1px solid #C0C0C0;
}


@media only screen and (max-width: 560px ) {
    .section-cards .cards{
        grid-template-columns: repeat(
        auto-fit,
        minmax(100px, 160px)
        );
    }
}

@media only screen and (max-width: 768px ) {
    .section-cards .custom-select {
        display: inline-block;
    }

    .section-cards .categories {
        display: none;
    }
}


/* ///////////////////////////////////////////////////////////////////////////////////////////// alineation.css ///////////////////////////////////////////////////////////////////////////////////////////// */
/* align-contents */
.ac-center{
    align-content: center;
}

.ac-start{
    align-content: flex-start;
}

.ac-end{
    align-content: flex-end;
}

.ac-space{
    align-content: space-between;
}

.ac-around{
    align-content: space-around;
}

.ac-stretch{
    align-content: stretch;
}

/* align-items */
.ai-center{
    align-items: center;
}

.ai-start{
    align-items: flex-start;
}

.ai-end{
    align-items: flex-end;
}

.ai-baseline{
    align-items: baseline;
}

.ai-stretch{
    align-items: stretch;
}


/* justify-contents */
.jc-center{
    justify-content: center;
}

.jc-start{
    justify-content: flex-start;
}

.jc-end{
    justify-content: flex-end;
}

.jc-space{
    justify-content: space-between;
}

.jc-around{
    justify-content: space-around;
}

.jc-stretch{
    justify-content: stretch;
}

/*aliniation text*/
.t-center{
    text-align: center;
}

.t-left{
    text-align: left;
}

.t-right{
    text-align: right;
}

