
.grid_home_selection{
    padding: 0 5%;
}

.grid_home_selection ul{
	display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-gap: 0;
    margin-bottom: 50px;
    align-items: flex-start;
    list-style: none;
}

.title_ring {
    color: var(--color-trait);
    font-family: var(--title-font);
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
	text-transform : uppercase;
    margin-top: 17px;
}

.one_product .lien_product div {
	display: block;
    width: 100%;
    background-blend-mode: hard-light, normal;
    background-size: 100% 100%, 80% auto;
    background-position: center, center;
    background-repeat: no-repeat;
    padding-top: 130%;
    background-color: white;
}


@media (max-width: 960px){

	.grid_home_selection ul {
		grid-template-columns: calc(50% - 20px) calc(50% - 20px);
		grid-gap: 20px 40px;
		margin-bottom: 20px;
	}
	
	.one_product .lien_product div {
		padding-top: 110%;
	}
	
}