#showme {
  transition: all var(--transition-ease);
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../../img/paysage_004.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: relative;
}

#showme > * {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

#showme .details {
  display: grid;
  align-content: flex-end;
}

#showme .details .diton {
  font-size: var(--font-size-400);
  font-family: "bold";
  max-width: max-content;
  transition: all .8s ease;
  transform: translateX(-10%);
  opacity: 0;
}

#showme.on .details .diton {
  opacity: 1;
  transform: translate(0);
}

#showme .details .name {
  margin: 10px 0 0;
  font-size: var(--font-size-300);
  transition: all 1.3s ease;
  transform: translateY(20%);
  opacity: 0;
}

#showme.on .details .name {
  opacity: 1;
  transform: translate(0);
}

@media screen and (max-width: 600px) {
  #showme {
    height: 300pt;
  }

  #showme .details {
    padding: var(--espace);
  }

  #showme .details .diton {
    font-size: var(--font-size-400);
  }
}

@media screen and (min-width: 601px) {
  #showme {
    height: 400pt;
  }

  #showme .details {
    padding: var(--espace) var(--espace) var(--espace) calc(var(--espace) * 3);
  }

  #showme .details .diton {
    font-size: calc(var(--font-size-400) * 2);
  }
}

#littleabout {
  padding: calc(var(--espace) * 3);
  background: var(--color-925);
  transition: all var(--transition-ease);
}

#littleabout .details .title {
  font-family: "bold";
  font-size: var(--font-size-300);
  margin: 0 0 10px;
  opacity: 0;
  transform: translateX(-10%);
  transition: all .5s ease;
}

#littleabout.on .details .title {
  opacity: 1;
  transform: translate(0);
}

#littleabout .details .text {
  transition: all 1s ease;
  opacity: 0;
  transform: translateX(-10%);
}

#littleabout.on .details .text {
  opacity: 1;
  transform: translate(0);
}

#littleabout .imge {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../../img/palais_justice_004.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-050);
  margin: var(--espace) 0 0;
  height: 200pt;
  opacity: 0;
  transition: all 1.5s ease;
}

#littleabout.on .imge {
  opacity: 1;
}

@media screen and (max-width: 600px) {
  #littleabout {
    padding: calc(var(--espace) * 3) var(--espace);
  }
}

@media screen and (min-width: 601px) {
  #littleabout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--espace);
    padding: calc(var(--espace) * 3) calc(var(--espace) * 3);
  }
}

#interviews .headinterviews .title {
  font-family: "bold";
  font-size: var(--font-size-300);
  transition: all 1s ease;
  opacity: 0;
  transform: translateY(-20%);
}

#interviews .headinterviews .title.on {
  opacity: 1;
  transform: translate(0);
}

#interviews .container .item {
  transition: all 1.8s ease;
  opacity: 0;
  transform: translateY(-2%);
  color: var(--color-100);
}

#interviews .container .item.on {
  opacity: 1;
  transform: translate(0);
}

#interviews .container .item .video {
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-050);
}

#interviews .container .item:nth-child(1) .video {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../../img/interw_000.jpg");
}

#interviews .container .item:nth-child(2)  .video {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../../img/interw_001.jpg");
}

#interviews .container .item:nth-child(3)  .video {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../../img/interw_002.jpg");
}

#interviews .container .item .details {
  padding: var(--espace) var(--espace) 0;
}

@media screen and (max-width: 600px) {
  #interviews .headinterviews {
    padding: 0 var(--espace) var(--espace);
  }

  #interviews .container {
    display: grid;
    gap: var(--espace);
  }

  #interviews .container .item {
    display: grid;
    gap: var(--espace);
  }

  #interviews .container .item .video {
    width: 100%;
    height: 200pt;
  }
}

@media screen and (min-width: 601px) {
  #interviews {
    padding: 0 calc(var(--espace) * 3);
  }

  #interviews .headinterviews {
    margin-bottom: calc(var(--espace) * 2);
  }

  #interviews .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--espace);
  }

  #interviews .container .item .video {
    width: 100%;
    height: 150pt;
    border-radius: var(--radius-050);
  }
}