.faf-cards-row {
    display: flex;
    /* flex-grow: wrap;*/
    flex-wrap: wrap;
    margin-top: 5rem;
    margin-bottom: 5rem;
    justify-content: space-evenly;
    row-gap: 1rem;;
    column-gap: 1rem;;
}

.faf-card {
    flex: 1 0 30%;
   
    overflow: hidden;
    user-select: text!important;
    border-radius: 0.5rem;
}
.faf-card-image {
    background-size: cover; 
    border-radius: 0.5rem;
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
   /* background: linear-gradient(rgba(0, 0 ,0 , 0.5)), rgba(0, 0 ,0 , 0.5); */
    position: relative;
    user-select: text!important;
}

.faf-card-image:hover {
    opacity: 0.7;
}

.faf-header-white {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-left: 16px;
    color: white !important;
    margin-bottom:0px;
    background-color: #243746;
    padding-top: 4px;
    padding-bottom: 4px;
}

@media screen and (max-width: 1023px) {
	.faf-cards-row{
        flex-direction: column
    }
    .faf-card {
        width:100%;
        margin-left: auto;
        margin-right: auto;
    }
}
