@charset "UTF-8";
/*
Theme Name: NMota
Theme URI: https://NMota.io
Author: Pic Maurine
Description: Thème personnalisé pour le site de Nathalie Mota Photograph Event
Version: 1.0
*/
/* général*/
body {
  font-family: "space-mono-regular", sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* déclaration police google font en local*/
@font-face {
  font-family: "space-mono-regular";
  src: url("fonts/Space_Mono/SpaceMono-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "poppins";
  src: url("fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-display: swap;
}
/* mise en forme du header */
.header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 4px 14px 10px rgba(0, 0, 0, 0.03);
}
.header .logo {
  margin-left: 216px;
}
.header ul {
  list-style: none;
  display: flex;
  margin-left: 1100px;
}
.header ul li {
  font-weight: 400;
  margin-right: 50px;
}
.header ul li a {
  text-decoration: none;
  color: black;
}
.header ul li:hover {
  font-weight: 700;
}

/*Responsive pour les tablettes*/
@media screen (max-width: 1140px) {
  .header ul li a {
    color: white;
    font-size: 54px;
  }
  .header ul li {
    margin-bottom: 40px;
  }
  .logo {
    margin-left: 0px !important;
  }
  .logo img {
    margin-left: 185px;
  }
  .burgerBtn {
    cursor: pointer;
  }
  .burgerBtn span {
    width: 35px;
    height: 2px;
    background-color: #000;
    display: block;
    position: absolute;
    left: 540px;
    transform: translateY(-50%);
    transition: background-color 0.5s ease-in-out;
  }
  .burgerBtn span::before, .burgerBtn span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: transform 0.5s ease-in-out;
  }
  .burgerBtn span::before {
    transform: translateY(-10px);
  }
  .burgerBtn span::after {
    transform: translateY(10px);
  }
  .burgerBtn.active span {
    background-color: transparent !important;
  }
  .burgerBtn.active span::before {
    transform: translateY(0px) rotateZ(45deg);
  }
  .burgerBtn.active span::after {
    transform: translateY(0px) rotateZ(-45deg);
  }
  nav.navigation {
    position: sticky;
    top: 111px;
    background-color: white;
    color: black;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in;
  }
  nav.navigation.open {
    opacity: 1;
    visibility: visible;
    animation: menuFadein 1s ease-in-out;
    width: 100%;
    height: 900px;
    margin-top: 975px;
    margin-left: -401px;
    z-index: 1;
    background-color: #E00000;
  }
  @keyframes menuFadein {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  nav.navigation.open #menu-header {
    margin-top: 150px;
  }
  nav.navigation ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 50px;
    width: 100%;
    font-size: 20px;
    margin-left: 0px;
  }
}
/*Responsive pour les mobiles*/
@media screen and (max-width: 465px) {
  .header ul li a {
    color: white;
    font-size: 44px;
  }
  .header ul li {
    margin-bottom: 30px;
  }
  .logo img {
    width: 138px;
    height: 9px;
    margin-left: 40px !important;
  }
  nav.navigation {
    top: 125px !important;
  }
  nav.navigation.open {
    margin-top: 670px !important;
    margin-right: -224px !important;
    background-color: #E00000 !important;
    z-index: 2;
    height: 600px;
    width: 600px;
  }
  nav.navigation ul {
    margin-top: 150px;
  }
}
.footer {
  height: 40px;
  border-top: solid black 1px;
}
.footer .menu-footer {
  display: flex;
  justify-content: center;
}
.footer .menu-footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
.footer .menu-footer li {
  font-weight: 400;
  margin-right: 100px;
}
.footer .menu-footer li a {
  text-decoration: none;
  color: black;
}
.footer .menu-footer li:hover {
  font-weight: 700;
}

/*Responsive pour les tablettes*/
@media (max-width: 1024px) {
  .menu-footer {
    width: 100%;
    height: 208px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -30px;
  }
  .menu-footer ul {
    margin: 0;
    padding: 0;
  }
  .menu-footer ul li {
    margin-bottom: 20px;
    margin-left: 95px;
    font-size: 20px;
  }
  .menu-footer ul li a {
    margin: auto;
  }
  .menu-footer p {
    margin-top: -55px;
    font-size: 20px;
  }
}
/*Responsive spécifique pour les mobiles*/
@media (max-width: 600px) {
  li {
    font-size: 16px !important;
  }
  p {
    margin-top: -65px !important;
    font-size: 16px !important;
  }
}
/* Styles pour la modale */
.modaleOverlay {
  position: fixed;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modaleOverlay.open {
  display: flex;
}
.modaleOverlay .modaleContact {
  position: fixed;
  width: 597px;
  height: 780px;
  margin: auto;
  top: 50%;
  left: 50%;
  overflow: hidden;
  border: solid black 7px;
  background-color: white;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
@media screen and (max-width: 465px) {
  .modaleOverlay .modaleContact {
    width: 286px !important;
    height: 595px !important;
  }
}
.modaleOverlay .headerContact {
  margin-top: 10px;
  width: 100%;
}
@media screen and (max-width: 465px) {
  .modaleOverlay .headerContact {
    margin-top: 10px;
    width: 100%;
    height: 10%;
    margin-bottom: -50px;
  }
}
@media screen and (max-width: 465px) {
  .modaleOverlay .headerContact img {
    margin-left: 0px !important;
  }
}

/* Styles pour le formulaire */
.formulaireContact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 465px) {
  .formulaireContact {
    margin-top: 45px;
  }
}
.formulaireContact label {
  font-family: "poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media screen and (max-width: 465px) {
  .formulaireContact label {
    font-size: 12px;
  }
}
@media screen and (max-width: 465px) {
  .formulaireContact .wpcf7-form-control-wrap {
    position: static;
  }
}
@media screen and (max-width: 465px) {
  .formulaireContact p {
    margin-top: 5px !important;
  }
}
.formulaireContact input {
  height: 40px;
  width: 263px;
  border-radius: 8px;
  border: solid #B8BBC2 1px;
  margin-top: 0px;
  padding-left: 10px;
}
@media screen and (max-width: 465px) {
  .formulaireContact input {
    height: 40px;
    width: 190px;
    margin-bottom: -5px;
  }
}
.formulaireContact input[type=submit] {
  height: 50px;
  width: 270px;
  border-radius: 2px;
  background-color: #D8D8D8;
  border: solid #D8D8D8 2px;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-top: -10px;
  margin-bottom: 0px;
  font-size: 14px;
}
@media screen and (max-width: 465px) {
  .formulaireContact input[type=submit] {
    height: 50px;
    width: 190px;
    margin-top: -29px;
  }
}
.formulaireContact input[type=submit]:hover {
  background-color: #cacaca;
}
.formulaireContact textarea {
  height: 142px;
  width: 263px;
  border-radius: 8px;
  border: solid #B8BBC2 1px;
}
@media screen and (max-width: 465px) {
  .formulaireContact textarea {
    height: 130px;
    width: 190px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 465px) {
  .formulaireContact textarea.wpcf7-not-valid + .wpcf7-not-valid-tip {
    margin-top: -26px;
    margin-bottom: 8px;
  }
}

/* message validation et erreur formulaire */
.wpcf7 form .wpcf7-response-output {
  margin: -1em 0.5em 1em;
  border: 2px solid red;
  font-size: 12px;
  font-family: "poppins";
  margin-top: -25px;
  text-align: center;
}
@media screen and (max-width: 465px) {
  .wpcf7 form .wpcf7-response-output {
    margin-top: -42px;
    font-size: 10px;
    line-height: 12px;
  }
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-family: "poppins";
  font-weight: normal;
  display: block;
  margin-bottom: -20px;
}
@media screen and (max-width: 465px) {
  .wpcf7-not-valid-tip {
    margin-top: 5px;
    margin-bottom: -23px;
  }
}

.containerPrincipalSingle {
  display: flex;
  flex-direction: column;
  margin-left: 216px;
  margin-right: 216px;
  /* Détails des photos */
}
@media screen and (max-width: 465px) {
  .containerPrincipalSingle {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .containerPrincipalSingle {
    margin-left: 115px;
    margin-right: 115px;
  }
}
.containerPrincipalSingle .containerSingle {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 50px;
}
@media screen and (max-width: 465px) {
  .containerPrincipalSingle .containerSingle {
    align-items: center;
    margin-top: 75px;
  }
}
.containerPrincipalSingle .containerSingle img {
  width: 45%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: auto;
}
.containerPrincipalSingle .containerSingle .detailsPhoto {
  width: 50%;
  border-bottom: solid black 1px;
  padding-bottom: 40px;
}
@media screen and (max-width: 465px) {
  .containerPrincipalSingle .containerSingle .detailsPhoto {
    margin-left: 60px;
    border-bottom: none;
    margin-top: 425px;
  }
}
.containerPrincipalSingle .containerSingle .detailsPhoto h2 {
  font-family: "space-mono-regular", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 66px;
  line-height: 58px;
  text-transform: uppercase;
  width: 420px;
}
@media screen and (max-width: 465px) {
  .containerPrincipalSingle .containerSingle .detailsPhoto h2 {
    font-size: 40px;
    line-height: 48px;
    width: 262px;
    margin-top: -60px;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .containerPrincipalSingle .containerSingle .detailsPhoto h2 {
    font-size: 50px;
    width: 290px;
  }
}
@media screen and (max-width: 465px) {
  .containerPrincipalSingle .containerSingle .detailsPhoto .infosPhoto {
    margin-top: 205px;
    margin-left: 5px;
  }
}
.containerPrincipalSingle .containerSingle .detailsPhoto .infosPhoto p {
  font-size: 14px;
  text-transform: uppercase;
}
@media screen and (max-width: 465px) {
  .containerPrincipalSingle .containerSingle .detailsPhoto .infosPhoto p {
    margin-bottom: 10px;
    width: 400px;
  }
}
.containerPrincipalSingle .containerSingle .bloc-photo-detail {
  width: 49%;
  height: 100%;
  position: relative;
  margin-bottom: -2px;
}
@media screen and (max-width: 465px) {
  .containerPrincipalSingle .containerSingle .bloc-photo-detail {
    position: absolute;
    left: 65px;
    width: 70%;
    top: 145px;
    height: 400px;
  }
}
.containerPrincipalSingle .containerSingle .bloc-photo-detail .blocPhoto {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  top: 4px;
}
.containerPrincipalSingle .containerSingle .bloc-photo-detail .hoverImg {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin-top: 3px;
}
.containerPrincipalSingle .containerSingle .bloc-photo-detail .hoverImg:hover {
  opacity: 1;
}
.containerPrincipalSingle .containerSingle .bloc-photo-detail .hoverImg:hover .iconFullscreen {
  font-size: 24px;
  color: white;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 465px) {
  .containerPrincipalSingle .containerSingle .bloc-photo-detail .hoverImg:hover .iconFullscreen {
    font-size: 12px;
  }
}

/* Partie navigation et contact */
.contactBtn {
  border-bottom: solid black 1px;
  margin-bottom: 100px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 465px) {
  .contactBtn {
    border-top: solid black 1px;
    margin-top: 20px;
  }
}
.contactBtn .containerContact {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 465px) {
  .contactBtn .containerContact {
    margin-top: 90px;
    flex-direction: column;
  }
}
.contactBtn .containerContact p {
  margin-right: 100px;
}
@media screen and (max-width: 465px) {
  .contactBtn .containerContact p {
    margin-right: -32px;
    font-size: 13px !important;
    word-spacing: -2px;
  }
}
.contactBtn .containerContact button {
  width: 272px;
  height: 50px;
  border: none;
  background-color: #d8d8d8;
}
@media screen and (max-width: 465px) {
  .contactBtn .containerContact button {
    width: 245px;
    margin-left: 60px;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .contactBtn .containerContact button {
    width: 130px;
    margin-left: -75px;
  }
}
.contactBtn .containerContact button:hover {
  background-color: #c9c9c9;
}
.contactBtn .navigationArrows {
  margin-left: auto;
}
@media screen and (max-width: 465px) {
  .contactBtn .navigationArrows {
    display: none;
  }
}
.contactBtn .navigationArrows .containerImgArrows {
  display: none;
  width: 81px;
  height: 71px;
  background-color: #d8d8d8;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: -80px;
}
.contactBtn .navigationArrows .containerImgArrows .img-arrows {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.contactBtn .navigationArrows .arrowsContainer {
  display: flex;
  justify-content: space-between;
  width: 80px;
  margin-top: 83px;
  margin-right: 2px;
}
.contactBtn .navigationArrows .arrowsContainer .arrow-left:hover ~ .containerImgArrows .img-arrows,
.contactBtn .navigationArrows .arrowsContainer .arrow-right:hover ~ .containerImgArrows .img-arrows {
  display: block;
}

/* Partie photos apparentées */
.containerPrincipalImg {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 465px) {
  .containerPrincipalImg {
    flex-direction: column;
    margin: auto;
    margin-bottom: 200px;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .containerPrincipalImg {
    flex-direction: column;
    margin: auto;
  }
}
.containerPrincipalImg .containerImg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 720px;
  height: 655px;
  overflow: hidden;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 465px) {
  .containerPrincipalImg .containerImg {
    height: 334px;
    width: 330px;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .containerPrincipalImg .containerImg {
    height: 300px;
    width: 300px;
  }
}

.imgAppTitle {
  margin: -20px 0px 60px;
  text-transform: uppercase;
}
@media screen and (max-width: 465px) {
  .imgAppTitle {
    margin-left: 95px;
    margin-bottom: 30px;
    word-spacing: 5px;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .imgAppTitle {
    margin: -65px 0px 35px;
  }
}

.buttonAllPhoto {
  width: 272px;
  height: 50px;
  border: none;
  background-color: #d8d8d8;
  margin: 0 auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 465px) {
  .buttonAllPhoto {
    margin-top: -320px;
  }
}
.buttonAllPhoto:hover {
  background-color: #c9c9c9;
}

button a {
  text-decoration: none;
  color: black;
}

/* Hero Header */
.containerHero {
  width: 100%;
  height: 962px;
  margin: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 465px) {
  .containerHero {
    height: 253px;
    margin-bottom: -60px;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .containerHero {
    height: 450px;
    margin-bottom: -60px;
  }
}
.containerHero .imgHero {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  z-index: -1;
  position: relative;
}
.containerHero .titreHero {
  z-index: 2;
  position: absolute;
  font-weight: 700;
  font-family: "spaceMono-Bold", sans-serif;
  font-style: italic;
  font-size: 96px;
  text-transform: uppercase;
  -webkit-text-stroke: 2px white;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 465px) {
  .containerHero .titreHero {
    font-size: 28px;
    -webkit-text-stroke: 1px white;
    z-index: 1;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .containerHero .titreHero {
    font-size: 48px;
  }
}

/* Filtres */
.filter {
  display: flex;
  margin-top: 100px;
  margin-bottom: -100px;
}
@media screen and (max-width: 465px) {
  .filter {
    margin-bottom: -110px;
    margin-left: -190px;
    overflow-x: auto;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .filter {
    margin-bottom: -110px;
    margin-left: -190px;
    overflow-x: auto;
  }
}
.filter .filterLeft {
  display: flex;
  width: 720px;
  margin-left: 217px;
  gap: 160px;
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .filter .filterLeft {
    gap: 122px;
    margin-right: -19px;
    margin-left: 225px;
  }
}
.filter .filterLeft .categoryFilter {
  width: 260px;
  height: 43px;
}
.filter .filterLeft .formatFilter {
  width: 260px;
  height: 43px;
}
@media screen and (max-width: 465px) {
  .filter .filterLeft .formatFilter {
    margin-left: -140px;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .filter .filterLeft .formatFilter {
    margin-left: -140px;
  }
}
.filter .selectFilter {
  width: 300px;
  height: 43px;
  border-radius: 8px;
  border: black solid 1px;
  padding: 11px 18px 11px 18px;
  background: url("assets/images/flecheFiltres.png") no-repeat;
  background-position: right 18px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
@media screen and (max-width: 465px) {
  .filter .selectFilter {
    width: 270px;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .filter .selectFilter {
    width: 215px;
  }
}
.filter .selectCategory,
.filter .selectFormat,
.filter .selectDate {
  font-family: "poppins";
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}
@media screen and (max-width: 465px) {
  .filter .selectCategory,
  .filter .selectFormat,
  .filter .selectDate {
    font-size: 12px;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .filter .selectCategory,
  .filter .selectFormat,
  .filter .selectDate {
    font-size: 12px;
  }
}
.filter .dateFilter {
  width: 300px;
  height: 43px;
  margin-left: auto;
  margin-right: 217px;
}

/* liste photo */
.photoList {
  margin-top: 150px;
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.photoList .containerPhotoList {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 720px;
  height: 655px;
  margin-right: 15px;
  margin-left: 15px;
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width: 465px) {
  .photoList .containerPhotoList {
    width: 335px;
    height: 300px;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .photoList .containerPhotoList {
    width: 335px;
    height: 300px;
  }
}

#loadMoreContainer {
  display: flex;
  margin-top: -80px;
  margin-bottom: 40px;
}
#loadMoreContainer #loadMoreButton {
  width: 272px;
  height: 50px;
  border: none;
  background-color: #d8d8d8;
  margin: auto;
}
@media screen and (max-width: 465px) {
  #loadMoreContainer #loadMoreButton {
    margin-top: -30px;
    margin-bottom: -30px;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  #loadMoreContainer #loadMoreButton {
    margin-top: -30px;
    margin-bottom: -30px;
  }
}

.bloc-photo {
  width: 720px;
  height: 655px;
  position: relative;
}
@media screen and (max-width: 465px) {
  .bloc-photo {
    width: 334px;
    height: 300px;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .bloc-photo {
    width: 334px;
    height: 300px;
  }
}
.bloc-photo .blocPhoto {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.bloc-photo .hoverImg {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.bloc-photo .hoverImg:hover {
  opacity: 1;
}
.bloc-photo .hoverImg:hover .iconFullscreen {
  font-size: 24px;
  color: white;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 465px) {
  .bloc-photo .hoverImg:hover .iconFullscreen {
    font-size: 12px;
  }
}
.bloc-photo .hoverImg:hover .hoverEye {
  font-size: 32px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 465px) {
  .bloc-photo .hoverImg:hover .hoverEye {
    font-size: 20px;
  }
}
.bloc-photo .hoverImg:hover h2 {
  position: absolute;
  left: 10px;
  top: 612px;
  color: white;
  font-family: "poppins";
  font-size: 14px;
}
@media screen and (max-width: 465px) {
  .bloc-photo .hoverImg:hover h2 {
    top: 265px;
    font-size: 12px;
  }
}
.bloc-photo .hoverImg:hover h3 {
  position: absolute;
  left: 640px;
  top: 612px;
  color: white;
  font-family: "poppins";
  font-size: 14px;
}
@media screen and (max-width: 465px) {
  .bloc-photo .hoverImg:hover h3 {
    left: 265px;
    top: 265px;
    font-size: 12px;
  }
}

.containerLightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.containerLightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.containerLightbox .fullscreenPhoto {
  width: 80%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
}
.containerLightbox .fullscreenPhoto img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
@media screen and (max-width: 465px) {
  .containerLightbox .fullscreenPhoto img {
    width: 100%;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .containerLightbox .fullscreenPhoto img {
    width: 100%;
  }
}
.containerLightbox .fullscreenPhoto .reference {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  position: absolute;
  bottom: -20px;
  left: 230px;
}
@media screen and (max-width: 465px) {
  .containerLightbox .fullscreenPhoto .reference {
    margin-bottom: 165px;
    margin-left: -57px;
  }
}
@media screen and (min-width: 466px) and (max-width: 1280px) {
  .containerLightbox .fullscreenPhoto .reference {
    left: 2px;
    top: 600px;
  }
}
.containerLightbox .fullscreenPhoto .categorie {
  font-family: "Space Mono", monospace;
  font-weight: 400;
  position: absolute;
  bottom: -20px;
  right: 230px;
}
@media screen and (max-width: 465px) {
  .containerLightbox .fullscreenPhoto .categorie {
    margin-left: -317px;
    margin-bottom: 165px;
  }
}
@media screen and (min-width: 465px) and (max-width: 1280px) {
  .containerLightbox .fullscreenPhoto .categorie {
    right: 6px;
    top: 600px;
  }
}
.containerLightbox .close,
.containerLightbox .previous,
.containerLightbox .next {
  position: absolute;
  color: #fff;
  cursor: pointer;
  display: none;
  text-transform: none;
}
.containerLightbox .close.close,
.containerLightbox .previous.close,
.containerLightbox .next.close {
  top: 0;
  right: 1em;
}
.containerLightbox .close.previous,
.containerLightbox .previous.previous,
.containerLightbox .next.previous {
  left: 0;
  font-size: 12px;
  font-family: "Space Mono", monospace;
}
@media screen and (min-width: 465px) and (max-width: 1280px) {
  .containerLightbox .close.previous,
  .containerLightbox .previous.previous,
  .containerLightbox .next.previous {
    left: -50px;
  }
}
.containerLightbox .close.next,
.containerLightbox .previous.next,
.containerLightbox .next.next {
  right: 0;
  font-size: 12px;
  font-family: "Space Mono", monospace;
}
@media screen and (min-width: 465px) and (max-width: 1280px) {
  .containerLightbox .close.next,
  .containerLightbox .previous.next,
  .containerLightbox .next.next {
    right: -50px;
  }
}
@media screen and (min-width: 465px) and (max-width: 1280px) {
  .containerLightbox .close.next span, .containerLightbox .close.previous span,
  .containerLightbox .previous.next span,
  .containerLightbox .previous.previous span,
  .containerLightbox .next.next span,
  .containerLightbox .next.previous span {
    display: none;
  }
}
@media screen and (max-width: 465px) {
  .containerLightbox .close.next, .containerLightbox .close.previous,
  .containerLightbox .previous.next,
  .containerLightbox .previous.previous,
  .containerLightbox .next.next,
  .containerLightbox .next.previous {
    bottom: 0;
  }
}
.containerLightbox.open .previous,
.containerLightbox.open .next,
.containerLightbox.open .close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}/*# sourceMappingURL=style.css.map */