@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Damion&family=Mr+De+Haviland&family=Sacramento&family=Montserrat:ital,wght@0,300;0,400;1,300;1,500;1,600&family=Spinnaker&display=swap");
/* from... */
/* to... */
/* from... to... */
/* at... */
@import "icon.css";
:root {
  --primary-color: #c9a96b;
  --secondary-color: #1f2c2e;
  --font-color: #424242;
  --bg-color: #fff;
  --obg-color: #f0f0ef;
  --heading-color: #2a41487e;
  --realImg: "../img/realisationsWhite.jpg";
}

[data-theme=dark] {
  --primary-color: #c9a96b;
  --secondary-color: #c4ac7cc0;
  --font-color: #ececff;
  --bg-color: rgb(19, 19, 19);
  --obg-color: #20201f;
  --heading-color: #c4ac7c94;
  --realImg: "../img/realisationsBlack.png";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  color: var(--primary-color);
  text-decoration: none !important;
}

h1 {
  font-family: "Sacramento", cursive;
  font-weight: 500;
  font-size: 4rem;
  text-align: center;
  color: var(--primary-color);
}

.textColor {
  color: var(--primary-color);
  font-style: italic;
}

.fontLight {
  font-size: small !important;
  font-weight: 200 !important;
}

.tarif {
  font-size: 16px;
  font-weight: bolder !important;
  font-size: small !important;
}

.clignote {
  animation: clignote 1.5s linear infinite;
}

@keyframes clignote {
  50% {
    opacity: 0;
  }
}
.btnSubmit {
  display: block;
  width: fit-content;
  padding: 1rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: var(--primary-color);
  background-color: #fafafd;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  margin: 1.5rem auto 1.5rem auto;
}
.btnSubmit:hover, .btnSubmit:focus {
  background-color: var(--primary-color);
  box-shadow: 0px 4px 4px var(--primary-color);
  color: #fafafd;
  transform: translateY(-3px);
}

.trait {
  font-weight: 200;
  padding-left: 10px;
  border-left: var(--primary-color) solid 5px;
  margin-left: 2rem;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  height: 100%;
  background-color: var(--bg-color);
  color: var(--font-color);
}

footer {
  width: 100%;
  padding: 2rem 2rem 0 2rem;
  box-shadow: 0 -1px 1px 0.5px rgba(119, 119, 119, 0.541);
}
footer .footerContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 2rem 3rem 2rem;
}
@media screen and (max-width: 799px) {
  footer .footerContainer {
    flex-direction: column;
  }
}
footer .footerContainer div {
  width: 250px;
}
@media screen and (max-width: 799px) {
  footer .footerContainer div {
    width: auto;
  }
}
footer .footerContainer div h3 {
  text-transform: uppercase;
}
footer .footerContainer div a {
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
}
footer .footerContainer div a:hover {
  font-weight: 600;
}
footer p {
  display: block;
  text-align: center;
  color: var(--font-color);
}
footer p span {
  display: block;
}

input[type=text],
input[type=search],
input[type=password],
input[type=email],
input[type=url],
input[type=date],
input[type=tel],
textarea,
select {
  width: 100%;
  margin-right: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Spinnaker", sans-serif;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 40px;
  padding: 10px 16px;
  outline: none;
  border-radius: 4px;
  -webkit-transition: background-color 200ms ease, outline 200ms ease, color 200ms ease, -webkit-box-shadow 200ms ease;
  transition: background-color 200ms ease, outline 200ms ease, color 200ms ease, -webkit-box-shadow 200ms ease;
  transition: background-color 200ms ease, outline 200ms ease, color 200ms ease, box-shadow 200ms ease;
  transition: background-color 200ms ease, outline 200ms ease, color 200ms ease, box-shadow 200ms ease, -webkit-box-shadow 200ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: var(--primary-color);
  background-color: #f3f3f4c5;
}
input[type=text]:hover, input[type=text]:focus,
input[type=search]:hover,
input[type=search]:focus,
input[type=password]:hover,
input[type=password]:focus,
input[type=email]:hover,
input[type=email]:focus,
input[type=url]:hover,
input[type=url]:focus,
input[type=date]:hover,
input[type=date]:focus,
input[type=tel]:hover,
input[type=tel]:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus {
  background-color: #fafafd;
  box-shadow: 0 0 2px #132123;
  border: 1px solid #132123;
}
input[type=text].is-invalid,
input[type=search].is-invalid,
input[type=password].is-invalid,
input[type=email].is-invalid,
input[type=url].is-invalid,
input[type=date].is-invalid,
input[type=tel].is-invalid,
textarea.is-invalid,
select.is-invalid {
  border: 1px solid #dd2232;
}

textarea {
  overflow: hidden;
  min-height: 7rem;
}

input[type=submit] {
  width: 140px;
  height: 45px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: var(--primary-color);
  background-color: #fafafd;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}
input[type=submit]:hover, input[type=submit]:focus {
  background-color: var(--primary-color);
  box-shadow: 0px 4px 4px var(--primary-color);
  color: #fafafd;
  transform: translateY(-3px);
}

header {
  padding: 0;
  background-size: 100% 200%;
  background-image: linear-gradient(to bottom, transparent 50%, var(--primary-color) 50%);
  -webkit-transition: background-position 1s;
  -moz-transition: background-position 1s;
  transition: background-position 1s;
  background-color: var(--bg-color);
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 6;
  background-color: transparent;
  padding: 1rem 0;
}
@media screen and (max-width: 799px) {
  header {
    width: auto;
  }
}
header .title {
  z-index: 6;
  /* animation magic */
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
}
header .title i {
  padding: 0;
  color: #fafafd;
  font-size: 8em;
}
header .title svg {
  width: 500px;
  height: 500px;
}
header #burger,
header label {
  display: none;
  position: absolute;
  top: -30px;
}
@media screen and (max-width: 799px) {
  header #burger,
header label {
    display: inherit;
  }
}
header nav {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  margin: auto;
}
header nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 799px) {
  header nav ul {
    display: block;
  }
}
header nav ul li {
  align-self: center;
}
@media screen and (max-width: 1023px) {
  header nav ul li a,
header nav ul li i {
    font-size: 1rem;
    padding: 0.5rem;
  }
}
@media screen and (max-width: 899px) {
  header nav ul li a,
header nav ul li i {
    font-size: 1rem;
    padding: 0.4rem;
  }
}
header nav a,
header nav i {
  font-size: 1.1rem;
  padding: 1em;
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  outline: none;
}
header nav a.active {
  color: #fafafd;
}
header nav a.active:after {
  content: "";
  display: block;
  padding-top: 3px;
  border-bottom: 2px solid var(--primary-color);
}
header nav a:hover,
header nav i:hover {
  color: #fff;
}

@media screen and (max-width: 800px) {
  header .title {
    position: fixed;
    top: 11px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
  }
  header .title i {
    font-size: 5rem;
    color: var(--primary-color);
  }
  header input + label {
    position: fixed;
    top: 40px;
    right: 40px;
    height: 20px;
    width: 15px;
    z-index: 5;
  }
  header input + label span {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    margin-top: -1px;
    left: 0;
    display: block;
    background: var(--primary-color);
    transition: 0.5s;
  }
  header input + label span:first-child {
    top: 3px;
  }
  header input + label span:last-child {
    top: 16px;
  }
  header label:hover {
    cursor: pointer;
  }
  header input:checked + label span {
    opacity: 0;
    top: 50%;
  }
  header input:checked + label span:first-child {
    opacity: 1;
    transform: rotate(405deg);
  }
  header input:checked + label span:last-child {
    opacity: 1;
    transform: rotate(-405deg);
  }
  header input ~ nav {
    background: var(--bg-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 3;
    transition: 0.5s;
    transition-delay: 0.5s;
    overflow: hidden;
    box-shadow: 0px 1px 8px -4px var(--primary-color);
  }
  header input ~ nav > ul {
    text-align: center;
    position: absolute;
    padding: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
  }
  header input ~ nav > ul > li {
    opacity: 0;
    transition: 0.5s;
    transition-delay: 0s;
    width: fit-content;
    margin: 2rem auto;
  }
  header input ~ nav > ul > li a.active:after {
    border-color: white;
  }
  header input:checked + label span {
    background: #fff;
  }
  header input:checked ~ nav {
    height: 100%;
    transition-delay: 0s;
    background-color: var(--primary-color);
  }
  header input:checked ~ nav .title i {
    color: #fff;
  }
  header input:checked ~ nav > ul > li {
    opacity: 1;
    transition-delay: 0.5s;
  }
}
.shrinkNav {
  background-position: 0 -100%;
  padding: 0;
}
.shrinkNav .title i {
  font-size: 6rem;
}
.shrinkNav i,
.shrinkNav li a {
  font-size: 1rem;
  padding: 0.5rem 1rem;
}
.shrinkNav nav a.active:after {
  border-bottom: 2px solid #fff;
}

.darkmode i {
  -webkit-transition: 0.7s ease-in-out;
  -moz-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
}
.darkmode i:hover {
  -webkit-transform: rotateZ(360deg);
  -moz-transform: rotateZ(360deg);
  transform: rotateZ(360deg);
}

#social {
  position: fixed;
  top: 60%;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 50;
  text-align: center;
}
#social a {
  color: white;
  background: var(--primary-color);
  padding: 8px;
  text-align: center;
}
#social a:hover {
  background: #1e2f35;
}

.panelImg {
  position: relative;
  padding-top: 1rem;
}
.panelImg.real img {
  filter: none !important;
}
.panelImg img {
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  background-attachment: fixed;
  filter: brightness(50%);
  height: calc(80vh - 2rem);
  padding: 0 1rem 0 1rem;
}
@media screen and (max-width: 799px) {
  .panelImg img {
    height: calc(80vh - 7rem);
  }
}
.panelImg .Accontainer {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.panelImg .Accontainer svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
}
.panelImg .Accontainer p {
  font-size: 40px;
  color: #fafafd;
  width: auto;
  font-family: "Sacramento", Helvetica, Arial, Lucida, sans-serif;
  margin: 0;
}
@media screen and (max-width: 799px) {
  .panelImg .Accontainer p {
    font-size: 25px;
    text-align: center;
  }
}
.panelImg .Accontainer span {
  display: block;
  text-align: right;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 3rem;
}
@media screen and (max-width: 799px) {
  .panelImg .Accontainer span {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

#contact {
  height: auto;
  width: 100%;
  margin: 0 auto 3.825rem auto;
}
#contact h1 {
  margin-bottom: 0;
}
#contact h3 {
  text-transform: uppercase;
  font-size: 2rem;
  color: var(--primary-color);
  margin: 0 auto 4rem auto;
  font-weight: normal;
  text-align: center;
}
#contact ul {
  width: 36%;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  #contact ul {
    width: 65%;
  }
}
@media screen and (max-width: 499px) {
  #contact ul {
    width: 72%;
  }
}
#contact > p {
  font-family: "Sacramento", cursive;
  text-align: center !important;
  font-size: 2rem;
  margin-bottom: 0;
}
#contact p {
  line-height: 2.2em;
  color: var(--font-color);
  text-align: justify;
}
#contact p a {
  display: inline-block;
  text-align: center;
  margin: auto;
  font-weight: bold;
}
#contact .form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: space-evenly;
  margin-top: 8rem;
}
@media screen and (max-width: 799px) {
  #contact .form {
    flex-direction: column;
  }
}
#contact .form div {
  background-color: var(--obg-color);
  position: relative;
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
  width: 20%;
  word-wrap: break-word;
}
@media screen and (max-width: 799px) {
  #contact .form div {
    width: 80%;
    margin-top: 6rem;
  }
}
@media screen and (max-width: 1023px) {
  #contact .form div {
    padding: 2rem 1rem;
  }
}
#contact .form div h2 {
  white-space: nowrap;
}
#contact .form div i {
  position: absolute;
  top: -22%;
  left: 50%;
  transform: translate(-50%, 22%);
  font-size: 5rem;
  color: var(--primary-color);
}

.panelPortrait {
  max-width: 60%;
  margin: auto;
}
@media screen and (max-width: 799px) {
  .panelPortrait {
    max-width: 100%;
  }
}
.panelPortrait #portrait {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
@media screen and (max-width: 799px) {
  .panelPortrait #portrait {
    flex-direction: column;
    align-items: center;
  }
}
.panelPortrait #portrait .imgPortrait {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
}
@media screen and (max-width: 799px) {
  .panelPortrait #portrait .imgPortrait {
    margin-bottom: 2rem;
  }
}
.panelPortrait #portrait .imgPortrait img {
  max-width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 3px;
  box-shadow: inset 0 0 0 150vw rgba(0, 0, 0, 0.7);
}
.panelPortrait #portrait .imgPortrait .name {
  font-weight: 600;
  display: block;
}
.panelPortrait #portrait .bio {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 799px) {
  .panelPortrait #portrait .bio {
    padding: 0;
  }
}
.panelPortrait #portrait .bio p {
  color: var(--primary-color);
  width: 100%;
  text-align: justify;
  margin: 0;
  line-height: 1.75em;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1rem;
}

#prestations,
#services {
  width: 70%;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  #prestations,
#services {
    width: 80%;
  }
}
@media screen and (max-width: 499px) {
  #prestations,
#services {
    width: 90%;
  }
}
#prestations > p,
#services > p {
  text-align: center;
}
#prestations .row,
#services .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  margin: 4rem 2rem;
}
@media screen and (min-width: 800px) {
  #prestations .row:nth-child(even) .colText,
#services .row:nth-child(even) .colText {
    order: 2;
  }
  #prestations .row:nth-child(even) .colImg,
#services .row:nth-child(even) .colImg {
    order: 1;
  }
}
@media screen and (max-width: 799px) {
  #prestations .row,
#services .row {
    flex-direction: column;
  }
}
#prestations .row:last-child,
#services .row:last-child {
  margin-bottom: 1rem;
}
#prestations .row:not(:last-child),
#services .row:not(:last-child) {
  padding-bottom: 4rem;
}
#prestations .row .colImg,
#services .row .colImg {
  flex-basis: 45%;
  align-self: center;
  text-align: center;
}
@media screen and (max-width: 799px) {
  #prestations .row .colImg,
#services .row .colImg {
    padding: 0;
  }
}
#prestations .row .colImg img,
#services .row .colImg img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1280px) {
  #prestations .row .colImg img,
#services .row .colImg img {
    width: 75%;
    text-align: center;
  }
}
#prestations .row .colText,
#services .row .colText {
  flex-basis: 50%;
  align-self: center;
}
@media screen and (max-width: 799px) {
  #prestations .row .colText,
#services .row .colText {
    padding: 0;
  }
}
#prestations .row .colText h3,
#services .row .colText h3 {
  letter-spacing: 4px;
  text-transform: uppercase;
}
#prestations .row .colText h3,
#prestations .row .colText .color,
#services .row .colText h3,
#services .row .colText .color {
  color: var(--primary-color);
  font-weight: bold;
}
#prestations .row .colText ul span,
#services .row .colText ul span {
  font-weight: bolder;
}
#prestations h3,
#services h3 {
  color: var(--primary-color);
}
#prestations .approuved,
#services .approuved {
  text-align: center;
}

#services p:last-child {
  text-align: justify;
  margin: 1rem auto;
}

.ImgPrincipal {
  width: 100%;
  min-height: 800px;
  background: url(..//img/Accueil.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-repeat: no-repeat;
}

#carousel {
  padding: 1rem 0;
}
@media screen and (max-width: 799px) {
  #carousel {
    padding-top: 100px;
  }
}
#carousel .carousel {
  position: relative;
  overflow: hidden;
  border: none;
  outline: none;
}
#carousel .carousel .carouselContainer {
  transition: transform 0.3s;
  transform: translate3d(0, 0, 0);
}
#carousel .carousel .carouselContainer::after {
  content: "";
  clear: both;
  display: table;
}
#carousel .carousel .carouselItem {
  float: left;
}
#carousel .carousel .carouselItem .item {
  position: relative;
}
#carousel .carousel .carouselNext,
#carousel .carousel .carouselPrev {
  position: absolute;
  top: 50%;
  left: 30px;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
}
#carousel .carousel .carouselNext:hover,
#carousel .carousel .carouselPrev:hover {
  transform: scale(1.2);
}
#carousel .carousel .carouselNext:active,
#carousel .carousel .carouselPrev:active {
  transform: scale(1);
}
#carousel .carousel .carouselNext .carouselPrevHidden,
#carousel .carousel .carouselNext .carouselNextHidden,
#carousel .carousel .carouselPrev .carouselPrevHidden,
#carousel .carousel .carouselPrev .carouselNextHidden {
  opacity: 0;
}
#carousel .carousel .carouselNext i,
#carousel .carousel .carouselPrev i {
  color: var(--primary-color);
  padding: 10px;
  background-color: var(--bg-color);
  border-radius: 50%;
  background-size: 20px 20px;
  box-shadow: 0 15px 35px #3232321a, 0 5px 15px #0000001a;
}
@media screen and (max-width: 799px) {
  #carousel .carousel .carouselNext i,
#carousel .carousel .carouselPrev i {
    padding: 5px;
  }
}
#carousel .carousel .carouselNext {
  left: auto;
  right: 30px;
}
#carousel .carousel .carouselPagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  display: none;
}
@media screen and (min-width: 800px) {
  #carousel .carousel .carouselPagination {
    display: block;
  }
}
#carousel .carousel .carouselPagination .carouselPaginationButton {
  background: #fafafda2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 3px;
  box-shadow: 0 2px 5px #3232321a;
  transition: transform 0.3s;
  cursor: pointer;
}
#carousel .carousel .carouselPagination .carouselPaginationButton:hover, #carousel .carousel .carouselPagination .carouselPaginationButton.carouselPaginationButtonActive {
  transform: scale(1.4);
}
#carousel .carousel .carouselPagination .carouselPaginationButton.carouselPaginationButtonActive {
  background: var(--primary-color);
}

#galleri {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  padding: 0 30px;
}
#galleri .thumbex {
  margin: 10px 20px 30px;
  width: 100%;
  min-width: 250px;
  max-width: 435px;
  height: 300px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  outline: 2px solid white;
  outline-offset: -15px;
  background-color: var(--primary-color);
  box-shadow: 1px 2px 7px 2px rgba(0, 0, 0, 0.5);
}
#galleri .thumbex .thumbnail {
  overflow: hidden;
  min-width: 250px;
  height: 300px;
  position: relative;
  opacity: 0.88;
  backface-visibility: hidden;
  transition: all 0.4s ease-out;
}
#galleri .thumbex .thumbnail img {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  height: 115%;
  width: auto;
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
}
#galleri .thumbex .thumbnail span {
  position: absolute;
  z-index: 2;
  top: calc(150px - 20px);
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.315);
  padding: 10px 50px;
  margin: 0 45px;
  text-align: center;
  font-size: 24px;
  color: white;
  font-weight: 300;
  letter-spacing: 0.2px;
  transition: all 0.3s ease-out;
  opacity: 0;
}
#galleri .thumbex .thumbnail:hover {
  backface-visibility: hidden;
  transform: scale(1.15, 1.15);
  opacity: 1;
}
#galleri .thumbex .thumbnail:hover span {
  opacity: 1;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  max-width: 90%;
  margin: 0 auto 3.825rem auto;
}
@media screen and (min-width: 500px) and (max-width: 799px) {
  .gallery {
    justify-content: center;
  }
}
.gallery .thumbnail {
  overflow: hidden;
  backface-visibility: hidden;
  transition: all 0.4s ease-out;
  position: relative;
  margin-top: 2vh;
}
@media screen and (max-width: 499px) {
  .gallery .thumbnail {
    width: 100%;
  }
}
@media screen and (min-width: 500px) {
  .gallery .thumbnail {
    width: 70vw;
    height: 50vw;
  }
}
@media screen and (min-width: 800px) {
  .gallery .thumbnail {
    width: 29vw;
    height: 25vw;
  }
}
.gallery .thumbnail img {
  z-index: 1;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
  transition: all 0.4s ease-out;
}
.gallery .thumbnail span {
  position: absolute;
  z-index: 2;
  text-align: center;
  color: white;
  font-weight: 300;
  letter-spacing: 0.2px;
  transition: all 0.3s ease-out;
  opacity: 0;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  color: #fff;
  text-shadow: 2px 2px 2px #000;
  font-size: 1.5em;
}
.gallery .thumbnail:hover {
  backface-visibility: hidden;
  opacity: 1;
}
.gallery .thumbnail:hover span {
  opacity: 1;
}
.gallery .thumbnail:hover img {
  filter: brightness(50%);
}

#project {
  text-align: center;
  margin: 3rem auto;
  max-width: 100%;
  padding-left: 2em;
  padding-right: 2em;
  position: relative;
}
#project a {
  top: -1.5%;
  position: absolute;
  left: 4%;
}
#project p {
  text-align: center;
  line-height: 2;
}
#project .projectDescription {
  margin-bottom: 2rem;
}
#project .projectImg {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: repeat(6, auto);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  list-style: none;
  padding: 0;
  max-width: 100%;
  margin: auto;
  width: 80%;
}
@media screen and (max-width: 799px) {
  #project .projectImg {
    grid-template-rows: repeat(7, auto);
  }
}
#project .projectImg li:nth-child(1) {
  grid-area: 1/2/2/4;
}
@media screen and (max-width: 799px) {
  #project .projectImg li:nth-child(1) {
    grid-area: 1/1/1/5;
  }
}
#project .projectImg li:nth-child(2) {
  grid-area: 2/1/3/3;
}
@media screen and (max-width: 799px) {
  #project .projectImg li:nth-child(2) {
    grid-area: 2/1/2/5;
  }
}
#project .projectImg li:nth-child(3) {
  grid-area: 2/3/3/5;
}
@media screen and (max-width: 799px) {
  #project .projectImg li:nth-child(3) {
    grid-area: 3/1/3/5;
  }
}
#project .projectImg li:nth-child(4) {
  grid-area: 3/2/4/4;
}
@media screen and (max-width: 799px) {
  #project .projectImg li:nth-child(4) {
    grid-area: 4/1/4/5;
  }
}
#project .projectImg li:nth-child(5) {
  grid-area: 4/1/5/3;
}
@media screen and (max-width: 799px) {
  #project .projectImg li:nth-child(5) {
    grid-area: 5/1/5/5;
  }
}
#project .projectImg li:nth-child(6) {
  grid-area: 4/3/5/5;
}
@media screen and (max-width: 799px) {
  #project .projectImg li:nth-child(6) {
    grid-area: 6/1/6/5;
  }
}
#project .projectImg li:nth-child(7) {
  grid-area: 5/1/6/5;
}
@media screen and (max-width: 799px) {
  #project .projectImg li:nth-child(7) {
    grid-area: 7/1/7/5;
  }
}
#project .projectImg li {
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
}
#project .projectImg li img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  cursor: pointer;
  outline: 0;
}

.prestaFooter {
  background-color: var(--obg-color);
  padding: 1rem;
}
.prestaFooter span:nth-child(1) {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--primary-color);
  font-weight: lighter;
}
.prestaFooter .gallery {
  margin: 1rem;
  max-width: 100%;
  flex-wrap: nowrap;
  justify-content: center;
}
.prestaFooter .gallery .thumbnail {
  width: inherit;
  height: inherit;
  width: 13rem;
  max-height: 13rem;
  margin: 0.5rem;
  box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.5);
}
.prestaFooter .gallery .thumbnail span {
  font-size: 1rem;
}
.prestaFooter span {
  display: block;
  font-size: 1.5rem;
  text-align: center;
  width: 100%;
}
.prestaFooter .otherPrest {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.loader {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader > img {
  width: 100px;
}

.loader.hidden {
  animation: fadeOut 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--primary-color);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.transition, .accordion li .hide, .accordion li i:before, .accordion li i:after {
  transition: all 0.1s ease-in-out;
}

.flipIn, .accordion li .hide p, .accordion li {
  animation: flipdown 0.5s ease both;
}

.no-select, .accordion li h2 {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}
.accordion p {
  font-size: 17px;
  line-height: 1.3em;
}
.accordion li {
  position: relative;
  padding: 0;
  margin: 0;
  padding: 10px 0;
}
.accordion li:nth-of-type(1) {
  animation-delay: 0.5s;
}
.accordion li:nth-of-type(2) {
  animation-delay: 0.75s;
}
.accordion li:nth-of-type(3) {
  animation-delay: 1s;
}
.accordion li:last-of-type {
  animation-delay: 1.25s;
  padding-bottom: 0;
}
.accordion li h2 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6em;
  display: block;
  margin: 0;
  cursor: pointer;
}
.accordion li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 0;
  top: 0;
}
.accordion li i:before, .accordion li i:after {
  content: "";
  position: absolute;
  background-color: var(--primary-color);
  width: 3px;
  height: 9px;
}
.accordion li i:before {
  transform: translate(2px, 0) rotate(90deg);
}
.accordion li i:after {
  transform: translate(2px, 0) rotate(90deg);
}
.accordion li .hide {
  font-size: 14px;
  font-weight: 500;
  line-height: 23.8px;
  padding-bottom: 1em;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translate(0, 0);
  z-index: 2;
}
.accordion li .hide p:nth-of-type(1) {
  animation-delay: 0.2s;
}
.accordion li .hide p:nth-of-type(2) {
  animation-delay: 0.4s;
}
.accordion li .hide p:nth-of-type(3) {
  animation-delay: 0.6s;
}
.accordion li .hide p:nth-of-type(4) {
  animation-delay: 0.8s;
  padding-bottom: 0;
}
.accordion li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
.accordion li input[type=checkbox]:checked ~ .hide {
  margin-top: 0;
  max-height: 0;
  display: none;
  transform: translate(0, 50%);
}
.accordion li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(180deg);
}
.accordion li input[type=checkbox]:checked ~ i:after {
  transform: translate(2px, 0) rotate(90deg);
}

@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}
.listChoix {
  margin: 3.5rem auto 3.5rem auto !important;
  width: 80% !important;
}
.listChoix a:hover {
  font-weight: bold;
}

.panneau {
  height: auto;
  width: 100%;
  background-color: var(--obg-color);
  padding: 3.825rem 0;
  margin-top: 0;
}
.panneau h3 {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--primary-color);
  font-weight: lighter;
  text-align: center;
}
.panneau p {
  line-height: 2rem;
  color: var(--font-color);
  width: 36%;
  margin: auto;
  text-align: center;
}
.panneau p:nth-child(1) {
  margin: 1.5rem auto 1.5rem auto;
}
@media screen and (max-width: 1023px) {
  .panneau p {
    width: 60%;
    text-align: justify;
  }
}
@media screen and (max-width: 499px) {
  .panneau p {
    width: 72%;
  }
}
.panneau ul {
  list-style: circle;
  margin: auto;
  width: 30%;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1023px) {
  .panneau ul {
    width: 60%;
  }
}
@media screen and (max-width: 499px) {
  .panneau ul {
    width: 72%;
  }
}
.panneau .panIcon {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: stretch;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .panneau .panIcon {
    flex-direction: column;
  }
}
.panneau .panIcon div {
  flex: 1;
  margin: 3rem;
}
.panneau .panIcon i {
  text-align: center;
  font-size: 43px;
  padding: 25px;
  border-radius: 50%;
  background-color: white;
  color: var(--primary-color);
}
.panneau .panIcon h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 3rem;
}
.panneau .panIcon p {
  font-size: 16px;
  font-weight: 300;
  height: auto;
  line-height: 28.8px;
  width: 90%;
  text-align: justify;
}
.panneau a {
  display: inline;
  margin-left: 5px;
}

.accueil {
  margin: 2rem 3rem;
  max-width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .accueil {
    flex-direction: column;
    margin: 7rem;
  }
}
@media screen and (max-width: 499px) {
  .accueil {
    margin: 3rem;
  }
}
.accueil img {
  flex-basis: 30%;
  max-height: 70vh;
  width: auto;
}
@media screen and (max-width: 1023px) {
  .accueil img {
    width: 100%;
  }
}
.accueil div {
  align-self: center;
  flex-basis: 40%;
}
@media screen and (max-width: 1023px) {
  .accueil div {
    padding-top: 2rem;
  }
}
.accueil div h1 {
  text-align: left;
}
.accueil div h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin: 0.5rem;
  text-align: center;
}
.accueil div h4 {
  font-family: "Sacramento", cursive;
  margin-top: 0.75rem;
  font-weight: 100;
  font-size: 2rem;
  margin-bottom: 3rem;
}
.accueil div i {
  font-size: 13rem;
  margin-top: 1rem;
  color: var(--primary-color);
}
.accueil div p {
  font-size: 16px;
  font-weight: 500;
  line-height: 28.8px;
  text-align: justify;
}
.accueil div p:nth-of-type(3) {
  margin-bottom: 2rem;
}
.accueil div p:nth-of-type(4) {
  width: 80%;
  margin: auto;
}
.accueil div p:nth-of-type(5) {
  font-weight: bold;
  text-align: center;
}

.redirect {
  text-transform: uppercase;
  white-space: nowrap;
}
.redirect:before {
  content: "";
  font-family: "icomoon" !important;
  font-size: 9px;
  margin-right: 0.2rem;
}
.redirect:hover {
  font-weight: bold;
}

.containerPortrait {
  max-width: 80%;
  margin: auto;
}
@media screen and (min-width: 1024px) and (max-width: 1439px) {
  .containerPortrait {
    max-width: 90%;
  }
}
@media screen and (max-width: 799px) {
  .containerPortrait {
    max-width: 100%;
  }
}
.containerPortrait .portrait {
  display: flex;
  flex: row;
  position: relative;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .containerPortrait .portrait {
    flex-direction: column;
  }
}
.containerPortrait .portrait svg {
  width: 35%;
  height: 35%;
  align-self: center;
  fill: var(--primary-color);
}
@media screen and (max-width: 1279px) {
  .containerPortrait .portrait svg {
    width: 50%;
  }
}
@media screen and (max-width: 799px) {
  .containerPortrait .portrait svg {
    width: 75%;
  }
}
.containerPortrait .portrait div {
  text-align: justify;
  padding: 3rem;
  width: 50%;
}
@media screen and (max-width: 1279px) {
  .containerPortrait .portrait div {
    width: 100%;
  }
}
.containerPortrait .portrait div h2 {
  margin-bottom: 2rem !important;
  color: var(--primary-color);
  margin: 0;
}
.containerPortrait .portrait div a {
  margin: 2rem 0 0 0;
}
.containerPortrait .portrait div p:first-child {
  margin-top: 3rem;
}

#mentions {
  height: auto;
  width: 100%;
}
#mentions .form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: space-evenly;
}
#mentions .form div {
  background-color: var(--obg-color);
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
  width: max-content;
  word-wrap: break-word;
  text-align: justify;
}
#mentions .form div ul {
  list-style: none;
  line-height: 2rem;
}
#mentions .form div ul li:first-child {
  margin-bottom: 1rem;
}
#mentions .form div ul li:last-child {
  margin-top: 1rem;
}

.circle {
  stroke: var(--primary-color);
  cx: 250px;
  cy: 250px;
  r: 159px;
  stroke-width: 3;
  fill-opacity: 0;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: stroke 3s ease-out forwards;
}

@keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.85);
}
.modal .thumbnail {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 10px;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 50%;
}
@media screen and (max-width: 799px) {
  .modal .thumbnail {
    width: 80%;
  }
}
.modal .thumbnail #image {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  border: 4px solid #fff;
  width: 100%;
}
.modal .thumbnail .caption {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.modal .thumbnail .caption p {
  color: #ccc;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1em;
}
.modal .thumbnail .caption .close {
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  outline: 0;
}
.modal .thumbnail .caption .close:hover, .modal .thumbnail .caption .close:focus {
  color: var(--primary-color);
  cursor: pointer;
}

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