@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&display=swap');
*{
    margin:0;
    padding:0;
}


.menu-large {
    display: none; 
}
.menu-mobile {
    display: block; 
}

@media (min-width: 1024px) {
	.menu-large {
	    display: block; 
	}
	.menu-mobile {
	    display: none; 
	}
}


body{
    font-family: "Big Shoulders", sans-serif;   
}

.slider{
    width: 100%;
    height: 80vh;
    background:#000;
    position: relative;

}

.slider-background{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}

.slider-content{ 
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

h1{
    color: #fff;
    font-size: 4rem;
}

h2{
    font-size: 1.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.flex{
    display: flex;
    }

.gap20 {
    gap: 20px;
}

p{
    font-size: 1em;
    line-height: 1em;
    margin-bottom: 10%;
}
.slider-content p{
    color: #fff;
    font-size: 2rem;
    font-weight: 200;
}

.section{
    padding: 100px 0;
}

.boxed{
    max-width: 1280px;
    margin-inline: auto;
}

.dark{
    background: #000;
    color: #fff;
}
.w40{
    width: 40%;
}

.w60{
    width: 60%;
}

.text-center{
    text-align: center;
}
.w25{
    width: 25%;
}

.w32{
    width: 32%;

}

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

.wrap{
    flex-wrap: wrap;
}


.skill img{
    width: 100px;
}

.skill h3{
    margin-top: 15px;
}

.réalisation{
    height: 300px;
    width: 300px;
    aspect-ratio: 1/1;
    position: relative;
}

.réalisation h3{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    width: max-content;
    color: #fff;
}

.réalisation h4{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    width: max-content;
    color: #000000;
}

.réalisation a{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
}

.réalisation img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
    transition: 0.5s ease;
}

.réalisation:hover img{
    filter: brightness(100%);
}

.réalisation:hover h3{
    filter:opacity(0%)
}

.réalisation:hover h4{
    filter:opacity(0%)
}

.icon{
    display: block;
   
}

.label{
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    margin: 10px 0;
}

.value{
    display: block;
}