.nos-realisations {
	margin-top: var(--nos-rea-mt-mobile, 0);
	margin-bottom: var(--nos-rea-mb-mobile, 0);
	display: flex;
	width: 100%;
}

@media (min-width: 851px) {
	.nos-realisations {
		margin-top: var(--nos-rea-mt-desktop, 0);
		margin-bottom: var(--nos-rea-mb-desktop, 0);
	}
}

.nos-rea-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 var(--gutters);
}
.nos-rea-head{
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 3rem;
}
.nos-rea-text, .nos-rea-btn-wrapper{
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 1rem;
}
.nos-rea-text h2, .nos-rea-text p{
    margin: 0;
}
.nos-rea-btn-wrapper{
    align-items: flex-end;
    justify-content: flex-end;
}
.nos-rea-list{
    display: flex;
    width: 100%;
    gap: 1rem;
}
.nos-rea-list li{
    display: flex;
    width: 25%;
}
.nos-rea-list li a{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}
.nos-rea-list li a img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease-in-out;
}
.nos-rea-list li a:hover img{
    transform: translate(-50%, -50%) scale(1.05);
}
.nos-rea-item-text{
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    padding: 1rem;
    gap: 0.5rem;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
.nos-rea-item-modele{
    color: var(--wp--preset--color--beige);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.nos-rea-item-title{
    color: var(--wp--preset--color--beige);
    font-size: 18px;
    font-weight: 600;
    line-height: 18px; 
}
.nos-rea-item-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 60px;
    height: 60px;
    transition: opacity 0.3s ease-in-out;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nos-rea-item-icon span{
    width: 40px;
    height: 40px;
    background-image: url(../../../assets/svg/inpool-arrow-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.nos-rea-list li a:hover .nos-rea-item-icon{
    opacity: 1;
    z-index: 1;
}
.nos-rea-list li a:hover .nos-rea-item-text{
    opacity: 0;
}
.nos-rea-mobile-scrollbar{
    display: none;
}
@media (max-width: 576px){
    .nos-rea-head{
        flex-direction: column;
        gap: 2rem;
    }
    .nos-rea-inner{
        padding: 0 0 0 var(--gutters);
    }
    .nos-rea-text{
        width: 100%;
        text-align: center;
    }
    .nos-rea-btn-wrapper{
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .nos-rea-list{
        overflow: auto;
    }
    .nos-rea-list::-webkit-scrollbar{
        display: none;
    }
    .nos-rea-list li{
        min-width: 75%
    }
    .nos-rea-mobile-scrollbar{
        display: flex;
        width: calc(100% - var(--gutters));
        height: 3px;
        background-color: #B1CBDB;
        margin-top: 1rem;
    }
    .nos-rea-mobile-scrollbar span{
        width: 0%;
        height: 100%;
        background-color: var(--wp--preset--color--bleu-fonce);
    }
}