* {
	box-sizing: border-box;
}

body {
	color: #333;
	color: white;
	background-color: black;
	font-family: Arial, sans-serif;
}

.apropos {
	height: 100vh;
}

.apropos2 {
	background-color: #1E1D1D;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}






/*BARRE NAV*/
.align {
	display: flex;
	justify-content: center;
	font-size: 10px;
}

nav ul {
	padding: 0;
}

nav li {
	display: inline-block;
}

nav a {
	font-weight: normal;
	margin: 8px;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	margin-left: 2rem;
	margin-right: 2rem;
}


/* CARROUSEL TITRE  */
.carrousel-container {
	overflow: hidden;
	width: 100%;
	height: 90%;
	position: relative;
	margin-top: 20%;
}

.carrousel {
	white-space: nowrap;
	animation: carrousel-animation 10s linear infinite;
}

.slide {
	display: inline-block;
	padding: 0 3%;
	font-size: 600%;
}

@keyframes carrousel-animation {
	0% {
		transform: translateX(0%);
	}

	100% {
		transform: translateX(-100%);
	}
}

.carrousel-container2 {
	overflow: hidden;
	width: 100%;
	height: 90%;
	position: relative;
	margin-top: 5%;
}

.carrousel2 {
	white-space: nowrap;
	animation: carrousel-animation2 10s linear infinite;
}

@keyframes carrousel-animation2 {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(0%);
	}
}



/* BOUTON DIRECTIONNEL */
.arrow-container {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;
	transition: transform 0.3s;
}

.arrow {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: transparent;
	border: 2px solid rgba(255, 255, 255, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: border-color 0.3s;
}

.arrow::after {
	content: '';
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 15px solid rgba(255, 255, 255, 0.5);
	transition: border-color 0.3s;
}

.arrow-container:hover .arrow {
	border-color: rgba(255, 255, 255, 0.8);
}

.arrow-container:active {
	transform: scale(1.1);
}








/* SCROLLER */
.bande {
	width: 100%;
	height: 40%;
	color: #fff;
}

.swiper {
	width: 80%;
	height: 100%;
	margin-top: 20%;
	border-radius: 8%;
}

.mySwiper {
	height: 600px;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.titleSlide {
	position: absolute;
	bottom: 30px;
	font-size: 100px;
	left: 20px;

}

.titleSlide a {
	color: #ffffff;
	text-decoration: none;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(8px);
}

/* SLIDER RESPONSIVE  */
@media screen and (max-width:1038px) {
	.titleSlide {
		font-size: 80px;
	}
}

@media screen and (max-width:839px) {
	.titleSlide {
		font-size: 60px;
	}
}

@media screen and (max-width:637px) {
	.titleSlide {
		font-size: 35px;
	}
}

@media screen and (max-width:387px) {
	.titleSlide {
		font-size: 30px;
	}
}







/*A PROPOS*/
.barre {
	width: 100%;
	height: 380px;
	background-color: #1E1D1D;
	margin-top: 10%;
	border-radius: 10%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.text {
	margin: auto;
	display: flex;
	padding: 3rem;
}

.blocPhoto {
	width: 50%;
}

.photo {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	overflow: hidden;
	margin-left: auto;
	margin-right: 6rem;
	display: flex;
}

.photo img {
	width: 100%;

}

/* A PROPOS RESPONSIVE  */
@media screen and (max-width:703px) {
	.text {
		font-size: 15px;
		width: 80%;
	}
}

@media screen and (max-width:535px) {
	.text {
		font-size: 12px;
		width: 80%;
	}
}

@media screen and (max-width:415px) {
	.text {
		font-size: 10px;
	}
}

@media screen and (max-width:535px) {
	.photo {
		width: 260px;
		height: 260px;
		margin-left: 5%;
	}
}

@media screen and (max-width:463px) {
	.photo {
		width: 220px;
		height: 220px;
		margin-left: 8%;
	}
}

@media screen and (max-width:395px) {
	.photo {
		width: 200px;
		height: 200px;
		margin-left: 8%;
	}
}

@media screen and (max-width:410px) {
	.barre {
		width: 100%;
		height: 370px;
	}
}









/*PHOTOGRAPHIES*/
/* titre animé */
.containerPhotographs {
	height: 800px;
}

.photographs {
	margin: 20px;
	font-size: 60px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.5s ease, opacity 0.5s ease;
	opacity: 1;
}

.zoom-out {
	transform: translate(-50%, -50%) scale(2);
	opacity: 0;
}


/* titre animé RESPONSIVE  */
@media screen and (max-width:700px) {
	.photographs {
		font-size: 50px;
	}
}

@media screen and (max-width:440px) {
	.photographs {
		font-size: 40px;
	}
}

@media screen and (max-width:365px) {
	.photographs {
		font-size: 30px;
	}
}



/* images  */
.blocImage {
	width: 60%;
}

.blocImage img {
	width: 100%;
	border-radius: 20px;
	margin-bottom: 30px;

}

.blocDesc {
	width: 40%;
}

.blocSectionPhoto {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 4rem;
	margin-bottom: 4rem;
	margin: 40px;
}

h1 {
	text-align: center;
	margin-top: 50px;
}

/* images RESPONSIVE  */
@media screen and (max-width:641px) {
	.blocDesc {
		font-size: 12px;
	}
}

@media screen and (max-width:523px) {
	.blocDesc {
		font-size: 8px;
	}
}

@media screen and (max-width:380px) {
	.blocDesc {
		font-size: 5px;
	}
}





/* PIXEL ART */
/* images */
.pa {
	display: flex;
	justify-content: center;

}

.laLaitiere img,
.johnLennon img {
	width: 80%;
	display: block;
	margin-left: 10%;
	border-radius: 20px;
	margin-bottom: 16%;
}

/* texte */
.light {
	font-weight: bold;
	width: 75%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 16%;
}

.text-size {
	width: 50%;
	margin: auto;
	margin-top: 5%;
	text-align: center;
	margin-bottom: 16%;
}

/* texte RESPONSIVE  */
@media screen and (max-width:830px) {
	.light {
		width: 90%;
		font-size: 15px;
	}
}

@media screen and (max-width:830px) {
	#text-size {
		width: 90%;
		font-size: 15px;
	}
}

@media screen and (max-width:700px) {
	.light {
		width: 90%;
		font-size: 12px;
	}
}

@media screen and (max-width:700px) {
	#text-size {
		width: 90%;
		font-size: 12px;
	}
}

@media screen and (max-width:548) {
	.light {
		width: 90%;
		font-size: 9px;
	}
}

@media screen and (max-width:548px) {
	#text-size {
		width: 90%;
		font-size: 9px;
	}
}

@media screen and (max-width:430px) {
	#text-size {
		width: 90%;
		font-size: 6px;
	}
}





/* PHOTOSHOP */
/* images */
.chihiro {
	width: 10%;
	display: block;
	margin: center;
	text-align: center;
}

.chihiro img {
	width: 100%;
	border-radius: 20px;
}

.lyres {
	display: flex;
	justify-content: center;
	margin-top: 10%;
	text-align: center;
}

.lyres img {
	width: 100%;
	margin-right: 9%;
	border-radius: 20px;
}

.affiches {
	margin-left: 8%;
	margin-right: 5%;
}


/* texte */
.text-chihiro {
	width: 50%;
	margin: auto;
	margin-top: 5%;
}

.text-lyres {
	width: 100%;
	text-align: center;
}

.lyres-size {
	width: 30%;
}

/* images RESPONSIVE  */
@media screen and (max-width:1990px) {
	.chihiro {
		width: 100%;
		margin: auto;
	}
}

@media screen and (max-width:1115px) {
	.chihiro {
		width: 70%;
		margin: auto;
	}
}

/* texte RESPONSIVE  */
@media screen and (max-width:456px) {
	.text-chihiro {
		font-size: 9px;
		margin: auto;
		margin-top: 5%;
	}
}

@media screen and (max-width:456px) {
	.text-lyres {
		font-size: 8px;
		margin: auto;
		margin-top: 5%;
	}
}

@media screen and (max-width:574px) {
	.text-lyres {
		font-size: 10px;
		margin: auto;
		margin-top: 5%;
	}
}




/* ILLUSTRATIONS */
/* Images */
.illustrator {
	display: flex;
	justify-content: center;
}

.gumball img,
.flinn img {
	width: 80%;
	display: block;
	margin-left: 10%;
	border-radius: 20px;
}

/* texte */
.light {
	font-weight: bold;
	width: 75%;
	margin-left: auto;
	margin-right: auto;

}

#text-size {
	width: 50%;
	margin: auto;
	margin-top: 5%;
	text-align: center;
}








/* FOOTER */
.footer {
	display: flex;
	justify-content: space-between;
	margin: 5%;
	margin-top: 16%;
	font-size: 67%;

}

.footer .footer_centre {
	display: flex;
	text-align: center;
}

.footer_centre p {
	margin-left: 1rem;
	margin-right: 1rem;
}

.mentions {
	text-decoration: none;
	color: #fff;
}

.linkedin {
	color: #fff;
}

/* FOOTER RESPONSIVE  */
@media screen and (max-width:1100px) {
	.footer {
		font-size: 45%;
	}
}

@media screen and (max-width:500px) {
	.footer {
		font-size: 40%;
	}
}

@media screen and (max-width:406px) {
	.footer {
		font-size: 25%;
	}
}

@media screen and (max-width:385px) {
	.footer {
		font-size: 5px;
	}
}






/* MENTIONS LEGALES */
.text-mention {
	font-size: 80%;
	width: 50%;
	text-align: center;
	margin: auto;
	margin-top: 8%;
}

@media screen and (max-width:440px) {
	.text-mention {
		font-size: 12px;
	}
}

@media screen and (max-width:385px) {
	.text-mention {
		font-size: 10px;
	}
}