@charset "UTF-8";
/* CSS Document */


  /* Conteneur de la banderole */
        .scrolling-banner {
            width: 100%;
            background-color: rgba(0,0,0,1.00); /* Couleur de fond */
            color: white;
            padding: 10px 0;
            position: fixed;
            top: 0;
            left: 0;
            overflow: hidden; /* Cache tout ce qui dépasse du conteneur */
            z-index: 1000; /* Assure que la banderole reste au-dessus des autres contenus */
        }

        /* Conteneur du texte défilant */
        .scrolling-banner-inner {
            display: flex;
            align-items: center;
            width: 200%; /* Double la largeur pour assurer une transition fluide */
            animation: scroll 20s linear infinite; /* Animation de défilement fluide */
        }

        /* Style du texte défilant */
        .scrolling-banner p {
            margin: 0;
            padding: 0;
            white-space: nowrap; /* Empêche le texte de passer à la ligne suivante */
            font-size: 18px;
            font-weight: bold;
        }

        /* Définition de l'animation de défilement */
        @keyframes scroll {
            from {
                transform: translateX(0); /* Commence à gauche */
            }
            to {
                transform: translateX(-100%); /* Termine à droite */
            }
        }

@keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Appliquer l'animation à l'image */
        .rotating-image {
            animation: rotate 3s linear infinite; /* 3 secondes pour une rotation complète, boucle infinie */
        }

@font-face {
    font-family: 'altehaasgroteskbold';
    src: url("font/altehaasgroteskbold-webfont.woff2") format('woff2'),
         url("font/altehaasgroteskbold-webfont.woff2") format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'altehaasgroteskregular';
    src: url("font/altehaasgroteskregular-webfont.woff2") format('woff2'),
         url("font/altehaasgroteskregular-webfont.woff") format('woff');
    font-weight: normal;
    font-style: normal;
}



body{
	font-family: 'altehaasgroteskregular';
	background-color: rgba(255,255,255,1.00);
	color: rgba(0,0,0,1.00);
	margin: 0;
	padding: 0;
}

footer{
	margin-top: 30px;
	margin-left: 0;
	margin-right: 0;
	padding-left: 20%;
	padding-right: 20%;
	padding-top: 2%;
	padding-bottom: 0%;
	background-color: rgba(0,0,0,1.00);
	color: rgba(255,255,255,1.00);
}

footer a{
	color: rgba(255,255,255,1.00);
	margin-bottom: 2%;
}

footer a:hover{
	color: rgba(255,255,255,1.00);
	text-decoration: underline;
}

a{
	color: rgba(0,0,0,1.00);
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-wrap: nowrap;
	flex-direction: column;
	
}

img{
	margin: auto;
	mix-blend-mode: multiply !important;
	width: 50%;
	height: auto;
}

.article{
	border-bottom: 1px solid black;
    padding-bottom: 11px;
}

.titre{
	margin-left: 20%;
	margin-right: 20%;
	transform: scale(1);
	transition-duration: 1s;
}
.projet{
	margin-left: 20%;
	margin-right: 20%;
	transform: scale(1);
	transition-duration: 1s;
}
.projet:hover{
	transform: scale(1.1);
	transition-duration: 1s;
	text-decoration: underline;
}

h1{
	font-size: 5em;
	font-family: "altehaasgroteskbold";
	text-align: justify;
	text-transform: uppercase;
	margin: 45px 0px -93px 0px;
	padding: 0;
	line-height: 1.05;
}

h1::after {
            content: ""; /* Ajoute un pseudo-élément vide */
            display: inline-block;
            width: 100%; /* Prend toute la largeur restante pour forcer la justification */
        }

h2{
	font-family: "altehaasgroteskbold";
	margin: 0px;
	text-transform: uppercase;
}
p{
	font-family: "altehaasgroteskregular";
	margin: 0px;
}
.copyright{
	margin-top: 10%;
	margin-bottom: 0;
	text-align: justify;
	color: rgba(99,99,99,1.00);
}
.copyright::after{
    content: ""; /* Ajoute un pseudo-élément vide */
    display: inline-block;
    width: 100%; /* Prend toute la largeur restante pour forcer la justification */
}

@media only screen and (max-width: 1457px){
h1{
	font-size: 4em;
	font-family: "altehaasgroteskbold";
	text-align: justify;
	text-transform: uppercase;
	margin: 40px 0px -93px 0px;
	padding: 0;
	line-height: 1.25;
}
img{
	margin: auto;
	mix-blend-mode: multiply !important;
	width: 70%;
	height: auto;
}
}

@media only screen and (max-width: 1167px){
h1{
	font-size: 3em;
	font-family: "altehaasgroteskbold";
	text-align: justify;
	text-transform: uppercase;
	margin: 40px 0px -93px 0px;
	padding: 0;
	line-height: 1.6;
}
img{
	margin: auto;
	mix-blend-mode: multiply !important;
	width: 70%;
	height: auto;
}
}
@media only screen and (max-width: 877px){
h1{
	font-size: 3em;
	font-family: "altehaasgroteskbold";
	text-align: justify;
	text-transform: uppercase;
	margin: 40px 0px -93px 0px;
	padding: 0;
	line-height: 1.6;
}
img{
	margin: auto;
	mix-blend-mode: multiply !important;
	width: 70%;
	height: auto;
}
footer{
	margin-top: 30px;
	margin-left: 0;
	margin-right: 0;
	padding-left: 10%;
	padding-right: 10%;
	padding-top: 2%;
	padding-bottom: 0%;
	background-color: rgba(0,0,0,1.00);
	color: rgba(255,255,255,1.00);
}
.titre{
	margin-left: 10%;
	margin-right: 10%;
	transform: scale(1);
	transition-duration: 1s;
}
.projet{
	margin-left: 10%;
	margin-right: 10%;
	transform: scale(1);
	transition-duration: 1s;
}
}
@media only screen and (max-width: 657px){
body{
	margin-top: 40px;	
}
h1{
	font-size: 2.5em;
	font-family: "altehaasgroteskbold";
	text-align: justify;
	text-transform: uppercase;
	margin: 40px 0px -93px 0px;
	padding: 0;
	line-height: 1.86;
}
h2{
	font-size: 1.1em;	
}
img{
	margin: auto;
	mix-blend-mode: multiply !important;
	width: 70%;
	height: auto;
}
.titre{
	margin-left: 10%;
	margin-right: 10%;
	transform: scale(1);
	transition-duration: 1s;
}
.projet{
	margin-left: 10%;
	margin-right: 10%;
	transform: scale(1);
	transition-duration: 1s;
}
}
@media only screen and (max-width: 547px){
body{
	margin-top: 40px;	
}
h1{
	font-size: 2em;
	font-family: "altehaasgroteskbold";
	text-align: justify;
	text-transform: uppercase;
	margin: 40px 0px -93px 0px;
	padding: 0;
	line-height: 2.3;
}
h2{
	font-size: 1.1em;	
}
img{
	margin: auto;
	mix-blend-mode: multiply !important;
	width: 70%;
	height: auto;
}
.titre{
	margin-left: 10%;
	margin-right: 10%;
	transform: scale(1);
	transition-duration: 1s;
}
.projet{
	margin-left: 10%;
	margin-right: 10%;
	transform: scale(1);
	transition-duration: 1s;
}
}
@media only screen and (max-width: 437px){
body{
	margin-top: 40px;	
}
h1{
	font-size: 1.7em;
	font-family: "altehaasgroteskbold";
	text-align: justify;
	text-transform: uppercase;
	margin: 40px 0px -93px 0px;
	padding: 0;
	line-height: 2.6;
}
h2{
	font-size: 1.1em;	
}
img{
	margin: auto;
	mix-blend-mode: multiply !important;
	width: 70%;
	height: auto;
}
.titre{
	margin-left: 10%;
	margin-right: 10%;
	transform: scale(1);
	transition-duration: 1s;
}
.projet{
	margin-left: 10%;
	margin-right: 10%;
	transform: scale(1);
	transition-duration: 1s;
}
}

