main img{
    height: 300px !important;
}

#peopole{
  margin: 60px 0px 0px 0px;
}

h2{
  color: white;
}

h1 {
  padding: 10px;
  border-radius: 5px;
  background-color: white;
  color: #439592;
  filter:blur(0);
}

#text-intro > * {
  margin: 0px 0px 0px 50px;
}

#text-intro{
  display: flex;
  justify-content: baseline;
  align-items: center;
  width: 100%;
  height: 300px;
  background-image: url(../img/Moi/philosophie.jpg);
  filter: blur(2px);
}

#once-upon-a-time{
  background-image: url(../img/Moi/philosophie.jpg);
  border: 2px solid red;
  width: 150px !important;
  height: 200px !important;
  background-size: cover;
  background-position: center;
}

#text-intro:hover{
    filter: blur(0);
}

.container .glass {
  position: relative;
  width: 380px;
  height: 400px;
  background: linear-gradient(#fff2, transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  border-radius: 10px;
  margin: 0 -45px;
  backdrop-filter: blur(10px);
  transform: rotate(calc(var(--r) * 1deg));
}

.container:hover .glass {
  transform: rotate(10deg);
  margin: 0 10px;
}

/* écran > N px */
@media  screen and (min-width: 1500px) {

  .container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  }

  .container .glass {
  position: relative;
  width: 380px;
  height: 400px;
  background: linear-gradient(#fff2, transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  border-radius: 10px;
  margin: 0 -45px;
  backdrop-filter: blur(10px);
  transform: rotate(calc(var(--r) * 1deg));
  }

  .container:hover .glass {
  transform: rotate(0deg);
  margin: 0 10px;
  }

}

/* écran < N px */
@media  screen and (max-width: 1500px) {

    .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .container .glass {
  position: relative;
  width: 380px;
  height: 400px;
  background: linear-gradient(#fff2, transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  border-radius: 10px;
  margin: 0 -45px;
  backdrop-filter: blur(10px);
  transform: rotate(calc(var(--r) * 1deg));
  }

  .container:hover .glass {
    transform: rotate(0deg);
    margin: 0 10px;
  }

}

.container .glass::before {
  content: attr(data-text);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.text{
  padding: 20px;
  color: white;
}

.text-titre{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#cinema{
  width: 100%;
  height: 1000px;
}

.text-titre h1{
  color: white;
}

body{
  background-color: black;
}

/* PARTIE FILM CRIME */

.wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.inner {
  --w: 100px;
  --h: 150px;
  --translateZ: calc((var(--w) + var(--h)) + 0px);
  --rotateX: -15deg;
  --perspective: 1000px;
  position: absolute;
  width: var(--w);
  height: var(--h);
  top: 25%;
  left: calc(50% - (var(--w) / 2) - 2.5px);
  z-index: 2;
  transform-style: preserve-3d;
  transform: perspective(var(--perspective));
  animation: rotating 20s linear infinite; /* */
}
@keyframes rotating {
  from {
    transform: perspective(var(--perspective)) rotateX(var(--rotateX))
      rotateY(0);
  }
  to {
    transform: perspective(var(--perspective)) rotateX(var(--rotateX))
      rotateY(1turn);
  }
}

.card {
  position: absolute;
  border: 2px solid rgba(var(--color-card));
  border-radius: 12px;
  overflow: hidden;
  inset: 0;
  color: aqua;
  transform: rotateY(calc((360deg / var(--quantity)) * var(--index)))
    translateZ(var(--translateZ));
}

.img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0000
    radial-gradient(
      circle,
      rgba(var(--color-card), 0.2) 0%,
      rgba(var(--color-card), 0.6) 80%,
      rgba(var(--color-card), 0.9) 100%
    );
}

/* FIN PARTIE FILM CRIME */

/* PARTIE CONTACT */
#contact{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px;
}

/* FIN DE LA PARTIE CONTACT */

.cta {
  position: relative;
  margin: auto;
  padding: 11.5px 18px;
  transition: all 0.2s ease;
  border: 3px solid #439592;
  border-radius: 50px;
  background: #439592;
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  border-radius: 50px;
  background: white;
  width: 45px;
  height: 45px;
  transition: all 0.8s ease;
}

.cta span {
  position: relative;
  font-family: Montserrat;
  font-size: 18px;
  color: white;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: white;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.5s ease;
}

.cta:hover:before {
  width: 100%;
  background: #1c1c1c;
}

.cta:hover svg {
  transform: translateX(0);
  transition: all 2s ease;
}

.cta:active {
  transform: scale(0.95);
  transition: all 2s ease;
}

/* PARTIE CAROUSEL */
label {
	color: #fff;
	transition: transform 400ms ease-out;
	display: inline-block;
  min-height: 100%;
	width: 100vw;
	height: 100vh;
	position: relative;
	z-index: 1;
	text-align: center;
	line-height: 100vh;
}

#cine-jap{
  margin-top: 100px;
}

form {
	position: absolute;
	white-space: nowrap;
}

input {
	position: absolute;
  opacity: 0;
}

input:nth-of-type(1):checked ~ label:nth-of-type(1), 
input:nth-of-type(2):checked ~ label:nth-of-type(2),
input:nth-of-type(3):checked ~ label:nth-of-type(3),
input:nth-of-type(4):checked ~ label:nth-of-type(4){
   z-index: 0;
}

body {
  overflow-x: hidden;
}

input:nth-of-type(1):checked ~ label {
	transform: translate3d(0, 0, 0);
}

input:nth-of-type(2):checked ~ label {
	transform: translate3d(-100%, 0, 0);
}

input:nth-of-type(3):checked ~ label {
	transform: translate3d(-200%, 0, 0);
}

input:nth-of-type(4):checked ~ label {
	transform: translate3d(-300%, 0, 0);
}

label {
	background: #444;
	background-size: cover;
	font-size: 3rem;
}

label[for="clubs"]{
  background-image: url(../img/Moi/cine-jap/Hana_Bi_052.jpg);
}

label[for="hearts"]{
  background-image: url(../img/Moi/cine-jap/printemps-tardif.jpg);
}

label[for="spades"]{
  background-image: url(../img/Moi/cine-jap/RAN.jpg);
}

label[for="diamonds"]{
  background-image: url(../img/Moi/cine-jap/Kiyoshi-Kurosawa-The-Cure.jpg);
}

label:before,
label:after {
	color: white;
	display: block;
	background: rgba(255,255,255,0.2);
	position: absolute;
	padding: 2rem;
	font-size: 3rem;
	height: 10rem;
	line-height: 10rem;
	top: 50%;
	transform: translate3d(0, -50%, 0);
	cursor: pointer;
}

label:before {
	content: "\276D";
	right: 100%;
	border-top-left-radius: 50%;
	border-bottom-left-radius: 50%;
}

label:after {
	content: "\276C";
  left: 100%;
	border-top-right-radius: 50%;
	border-bottom-right-radius: 50%;
}


