@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --bg-color: #000000;
  --font-color: #ffffff;
  --bg-color: #ffffff;
  --font-color: #000000;
  --swiper-theme-color: #000000;
  --swiper-pagination-bullet-inactive-color: #000;
  --bg-grey: #e9e9e9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-color);
  scroll-behavior: smooth;
}

.lightMode {
  --bg-color: #000000;
  --font-color: #ffffff;
  --swiper-theme-color: #ffffff;
  --swiper-pagination-bullet-inactive-color: #c5c5c5;
  --bg-grey: #121212;
}

li {
  list-style: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
  color: var(--font-color);
}

.container {
  max-width: 1320px;
  margin: auto;
  position: relative;
}

main {
  margin-top: -75px;
  min-height: 100vh;
}

h1,
h2,
h3 {
  color: var(--font-color);
}

section {
  color: var(--font-color);
}
section.section {
  margin: 0px 10px 0 10px;
  padding-top: 10px;
  min-height: 100svh;
}
section.title {
  justify-content: center;
  display: flex;
  padding-top: 150px;
  padding-bottom: 50px;
  opacity: 0;
}
section.title img {
  width: 100%;
  max-width: 220px;
  padding: 0 10px;
}
section.bio {
  display: flex;
  padding: 0 10px;
  flex-direction: column;
}
section.bio.reverse {
  flex-direction: column-reverse;
}
section.bio span {
  font-weight: 600;
  font-size: 15px;
}
section.bio img {
  max-width: 300px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
section.bio p {
  font-size: 13px;
}
section.bio .left {
  justify-content: center;
  display: flex;
  padding: 20px 0;
}
section.bio .left.text {
  flex-direction: column;
  gap: 10px;
}
section.bio .left.img {
  align-items: center;
}
section.bio .right {
  justify-content: center;
  display: flex;
  padding: 20px 0;
}
section.bio .right.text {
  flex-direction: column;
  gap: 10px;
}
section.bio .right.img {
  align-items: center;
}

body.lightMode .title img {
  filter: invert(1);
}

@media screen and (min-width: 768px) {
  section.bio {
    flex-direction: row;
  }
  section.bio .left,
section.bio .right {
    flex: 0 50%;
  }
  section.bio.reverse {
    flex-direction: row;
  }
  section.bio .left {
    transform: translateX(-300px);
    opacity: 0;
  }
  section.bio .right {
    transform: translateY(300px);
    opacity: 0;
  }
}
button {
  background-color: var(--font-color);
  color: var(--bg-color);
  padding: 10px 35px;
  border: none;
  border-radius: 30px;
  font-weight: 300;
  font-family: "Poppins";
  max-width: 150px;
  box-shadow: rgba(100, 100, 111, 0.63) 0px 7px 29px 0px;
  font-size: 15px;
  cursor: pointer;
}

.img {
  max-width: 100%;
}

nav.smartphone {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav.smartphone span {
  font-size: 25px;
  background-color: var(--font-color);
  color: var(--bg-color);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 10px;
}
nav.smartphone ul {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(247deg);
}
nav.smartphone li {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--font-color);
}
nav.smartphone li :first-child {
  z-index: 999999;
}
nav.smartphone li:first-child span {
  transform: rotate(160deg);
  transition: 500ms;
}
nav.smartphone li:not(:first-child) {
  position: absolute;
  transform: rotate(calc(var(--i) * 37.8947368421deg)) translateY(-100px);
  opacity: 1;
  visibility: visible;
  transition: opacity 500ms, transform 300ms, visibility 2000ms;
  transition-delay: 0s, var(--y);
}
nav.smartphone li a {
  transform: rotate(114deg);
  color: var(--font-color);
}
nav.smartphone li a span {
  transform: rotate(calc(var(--i) * -37.8947368421deg));
}

.open.close li:not(:first-child) {
  opacity: 0;
  visibility: hidden;
  transform: rotate(calc(var(--i) * 37.8947368421deg)) translateY(0px);
  transition: opacity 500ms, transform 300ms, visibility 2000ms;
  transition-delay: 0s;
}
.open.close li:first-child span {
  transform: rotate(23deg);
}

nav.desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  nav.smartphone {
    display: none;
  }
  nav.desktop {
    display: flex;
    top: 28px;
    left: 50%;
    transform: translate(-50%, 0%);
    position: fixed;
    z-index: 999999;
    border-radius: 9px;
    padding: 15px 20px;
    background-color: var(--font-color);
    z-index: 999999;
    opacity: 0;
  }
  nav.desktop ul {
    display: flex;
    width: 320px;
    justify-content: space-around;
  }
  nav.desktop ul li {
    z-index: 999;
    opacity: 0;
  }
  nav.desktop ul li a span:first-child {
    position: absolute;
    transform: translateY(-5px);
    opacity: 0;
    transition: 500ms;
  }
  nav.desktop ul li a span:nth-child(2) {
    color: var(--bg-color);
    transition: 500ms;
  }
  nav.desktop ul li.active a span:nth-child(2) {
    transform: translateY(25px);
    color: var(--bg-color);
    transition: 500ms;
  }
  nav.desktop ul li.active a span:first-child {
    transform: translateY(0px);
    opacity: 1;
    color: var(--bg-color);
    transition: 500ms;
  }
  nav.desktop ul .indicator {
    position: absolute;
    bottom: -50%;
    width: 60px;
    height: 60px;
    background-color: var(--font-color);
    border-radius: 50%;
    border: 6px solid var(--font-color);
    transform: translateX(1px);
    left: 0;
    transition: all 500ms;
  }
  nav.desktop ul .indicator::before {
    content: "";
    position: absolute;
    bottom: 13%;
    left: -16px;
    width: 15px;
    height: 15px;
    background: transparent;
    border-top-right-radius: 20px;
    box-shadow: 0px -10px 0 0 var(--font-color);
  }
  nav.desktop ul .indicator::after {
    content: "";
    position: absolute;
    bottom: 13%;
    right: -16px;
    width: 15px;
    height: 15px;
    background: transparent;
    border-top-left-radius: 20px;
    box-shadow: 0px -10px 0 0 var(--font-color);
  }
  nav.desktop a {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 10px;
    flex-direction: column;
  }
  nav.desktop ul li:nth-child(1).active ~ .indicator {
    transform: translateX(21px);
  }
  nav.desktop ul li:nth-child(2).active ~ .indicator {
    transform: translateX(85px);
  }
  nav.desktop ul li:nth-child(3).active ~ .indicator {
    transform: translateX(149px);
  }
  nav.desktop ul li:nth-child(4).active ~ .indicator {
    transform: translateX(214px);
  }
  nav.desktop ul li:nth-child(5).active ~ .indicator {
    transform: translateX(276px);
  }
}
header.container {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 25px;
  z-index: 999;
}

.logo {
  transform: translateY(-100px);
}

.logo span {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--font-color);
}

.button_scrollDown {
  visibility: hidden;
}

@media screen and (min-width: 768px) {
  .button_scrollDown {
    visibility: visible;
    width: 25px;
    height: 45px;
    border: 2px solid var(--font-color);
    border-radius: 30px;
    position: absolute;
    top: 95svh;
    left: 50%;
    transform: translate(-50%, -20px);
    z-index: 999;
    opacity: 0;
  }
}
.button_scrollDown::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--font-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translate(-50%, 0);
  animation: scrollDown 1500ms infinite;
}

@keyframes scrollDown {
  from {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  to {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
}
.darkMode {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60px;
  padding: 5px 5px;
  background-color: var(--bg-color);
  box-shadow: inset rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 30px;
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 999;
  color: #898989;
  transition: all 500ms;
  opacity: 0;
  cursor: pointer;
}

.darkMode span {
  font-size: 18px;
}

.darkMode::before {
  content: "";
  width: 20px;
  height: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: var(--bg-color);
  position: absolute;
  border-radius: 50%;
  left: 3px;
  z-index: 999;
  transition: all 500ms;
}

.darkMode.active {
  background-color: #373737;
  color: #adadad;
}

.darkMode.active::before {
  transform: translateX(33px);
  background-color: #656565;
  box-shadow: rgba(0, 0, 0, 0.77) 0px 3px 8px;
}

#backgroundImage {
  margin-top: -75px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#backgroundImage #darkVideo {
  display: none;
  visibility: hidden;
}
#backgroundImage.active #lightVideo {
  display: none;
  visibility: hidden;
}
#backgroundImage.active #darkVideo {
  display: block;
  visibility: visible;
}
#backgroundImage h1 {
  text-transform: uppercase;
}

#backgroundImage {
  margin: -75px 10px 0px 10px;
  position: relative;
}

.lightMode #backgroundImage .logoblack {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.lightMode #backgroundImage .logowhite {
  display: block;
  visibility: visible;
  opacity: 1;
}

#backgroundImage .logowhite {
  display: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(200px);
}

#backgroundImage .logoblack {
  display: block;
  visibility: visible;
  opacity: 0;
  transform: translateY(200px);
}

#backgroundImage img {
  max-width: 600px;
  width: 85%;
}

#biographie,
#gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
#biographie .left,
#biographie .right,
#gallery .left,
#gallery .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  max-width: 100%;
}

#gallery {
  flex-direction: column-reverse;
}

@media screen and (min-width: 768px) {
  #biographie,
#gallery {
    flex-direction: row;
    padding: 0 70px 0 70px;
  }
  #biographie .left .oeuvre img,
#gallery .left .oeuvre img {
    width: 90%;
  }
  #biographie .left,
#biographie .right,
#gallery .left,
#gallery .right {
    flex: 0 50%;
    max-width: 50%;
  }
  #biographie .oeuvre,
#gallery .oeuvre {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #biographie .right h2,
#biographie .right p,
#gallery .right h2,
#gallery .right p {
    opacity: 0;
  }
  #biographie .right a button,
#gallery .right a button {
    transform: translateX(100px);
    opacity: 0;
  }
  #biographie .left h2,
#biographie .left p,
#gallery .left h2,
#gallery .left p {
    opacity: 0;
  }
  #biographie .left a button,
#gallery .left a button {
    transform: translateX(100px);
    opacity: 0;
  }
}
#title_rencontre {
  transform: translateX(-1000px);
}

.neon {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.neon img {
  filter: drop-shadow(0px 1px 47px #ffffff);
}

.swiper {
  width: 100%;
  max-width: 450px;
}
.swiper img {
  width: 100%;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -45px;
}

#image-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: start;
  margin: auto;
  max-width: 280px;
  flex-direction: row-reverse;
}
#image-container .post {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 260px;
  max-width: 135px;
  height: 135px;
  position: relative;
  cursor: pointer;
}
#image-container .post span {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: black;
  color: white;
  padding: 5px;
  z-index: 9;
  width: 100%;
  font-weight: 300;
  font-size: 15px;
  transform: translateY(35px);
  transition: all 250ms;
}
#image-container .post:hover span {
  transform: translateY(0px);
}
#image-container .post:hover .cross {
  opacity: 1;
}
#image-container .post .cross {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0;
  transition: all 250ms;
}
#image-container .post .cross::after {
  content: "";
  width: 3px;
  height: 20px;
  background-color: white;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#image-container .post .cross::before {
  content: "";
  width: 20px;
  height: 3px;
  background-color: white;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#image-container img {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
    height: 100%;
}

@media screen and (min-width: 550px) {
  #image-container {
    max-width: 530px;
  }
  #image-container .post {
    max-width: 251px;
    height: 251px;
  }
}
@media screen and (min-width: 820px) {
  #image-container {
    max-width: 800px;
  }
  #image-container .post {
    max-width: 260px;
    height: 260px;
  }
}
@media screen and (min-width: 1090px) {
  #image-container {
    max-width: 1070px;
  }
}
.filter {
  width: 100%;
  height: 140%;
  background-color: rgba(43, 43, 43, 0.6509803922);
  position: absolute;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  display: none;
  backdrop-filter: blur(2px);
  top: 0;
}
.filter.open {
  opacity: 1;
  visibility: visible;
  display: block;
}

.modal {
  position: fixed;
  overflow-y: auto;
  top: 0;
  left: 0;
  background-color: var(--bg-color);
  padding: 40px 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: 100%;
  align-items: center;
  display: none;
  visibility: hidden;
  opacity: 0;
  z-index: 999999;
}
.modal #closeModal {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.modal .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal .right h2 {
  font-weight: 500;
}
.modal .right p {
  font-size: 14px;
  color: #434343;
}
.modal img {
  max-width: 200px;
  width: 100%;
}
.modal.open {
  display: flex;
  visibility: visible;
  opacity: 1;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .modal {
    flex-direction: row;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    max-width: 900px;
    border-radius: 15px;
  }
  .modal .right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 0 60%;
  }
  .modal .right h2 {
    font-weight: 500;
  }
  .modal .left {
    flex: 0 40%;
  }
  .modal img {
    max-width: 400px;
  }
}
.descriptionVisible {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.contact .formulaire form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  gap: 20px;
  padding: 60px 10px 90px 10px;
}
.contact .formulaire form .left {
  display: flex;
  flex-direction: column;
}
.contact .formulaire form .right {
  display: flex;
  flex-direction: column;
}
.contact input,
.contact textarea {
  border: none;
  background-color: #efefef;
  padding: 10px;
  border-radius: 5px;
  min-width: 300px;
  font-family: "Poppins", sans-serif;
}
.contact textarea {
  width: 100%;
  height: 100%;
  max-height: 205px;
}
.contact input[type=submit] {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .contact .formulaire form {
    display: flex;
    flex-direction: row;
    min-width: 760px;
    max-width: 800px;
    margin: auto;
  }
  .contact .formulaire form textarea {
    width: 100%;
    height: 100%;
    max-width: 300px;
    max-height: 205px;
  }
}
footer {
  background-color: var(--bg-color);
}
footer .container {
  padding: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 80px;
}
footer .container .left {
  padding: 20px;
}
footer .container .right ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
  justify-content: center;
}
footer .container .right ul li a {
  color: var(--font-color);
}

section.newsletter {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
  margin: 50px 0;
}
section.newsletter .left,
section.newsletter .right {
  display: flex;
  flex-direction: column;
  flex: 0 50%;
  justify-content: center;
}
section.newsletter form {
  margin: 10px 0;
}
section.newsletter form input {
  border: none;
  background-color: #efefef;
  padding: 10px;
  border-radius: 5px;
  min-width: 100%;
  font-family: "Poppins", sans-serif;
  margin: 5px 0;
}

@media screen and (min-width: 768px) {
  section.newsletter {
    display: flex;
    flex-direction: row;
    padding: 0 70px 0 70px;
  }
  section.newsletter .left {
    padding: 15px;
  }
  footer {
    background-color: var(--bg-color);
  }
  footer .container {
    justify-content: space-between;
    padding-bottom: 15px;
  }
  footer .container .right ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    justify-content: center;
  }
  footer .container .right ul li a {
    color: var(--font-color);
  }
}
.collapseContainer {
  display: flex;
  flex-direction: column-reverse;
}
.collapseContainer .collapse {
  margin: 10px 0;
}
.collapseContainer .collapse .icon img {
  width: 100%;
  max-width: 40px;
  border-radius: 15px;
}
.collapseContainer .collapse img {
  width: 100%;
  max-width: 300px;
  border-radius: 15px;
}
.collapseContainer .collapse.active .collapseContent {
  opacity: 1;
  height: auto;
  padding: 15px;
}
.collapseContainer .collapse.active .collapseHeader {
  border-radius: 15px 15px 0px 0px;
}
.collapseContainer .collapse .collapseHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-grey);
  padding: 15px;
  border-radius: 15px 15px 15px 15px;
  border-bottom: 1px solid #dbdbdb;
  cursor: pointer;
  transition: all 500ms;
}
.collapseContainer .collapse .collapseHeader .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.collapseContainer .collapse .collapseContent {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-grey);
  border-radius: 0 0 15px 15px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: all 500ms;
}
.collapseContainer .collapse .left {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .collapseContainer .collapse .collapseContent {
    display: flex;
    flex-direction: row;
    background-color: var(--bg-grey);
    border-radius: 0 0 15px 15px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: all 500ms;
  }
  .collapseContainer .collapse .collapseContent .left,
.collapseContainer .collapse .collapseContent .right {
    flex: 0 50%;
  }
}

/*# sourceMappingURL=defaut.css.map */
