@charset "UTF-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css");
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header h1 {
  flex: 1 1 auto;
  margin-left: -0.25%; /* Corrige le décalage de 0.25% à gauche par rapport au flex du menu  */
}
@media only screen and (min-width: 576px) {
  .header h1 {
    margin-left: initial;
  }
}
.header h1 > a {
  color: #97004f;
}

.footer ul {
  text-align: center;
}
.footer ul a {
  font-size: 1.5em;
}
.footer p {
  text-align: center;
}
.footer .social-footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5%;
}
@media only screen and (min-width: 1024px) {
  .footer .social-footer {
    gap: 2%;
  }
}
.footer .color-link {
  color: #1b1b1b;
}

nav:has(.nav-header) {
  flex: 1;
}

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  height: 110vh;
  width: 100%;
  opacity: 0;
  z-index: -1;
  background-color: #131212;
  padding-bottom: 50%;
  transition: all 0.5s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4%;
}
.nav-header li::after {
  content: "";
  display: block;
}
.nav-header li a {
  display: block;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5em;
}
@media only screen and (min-width: 1024px) {
  .nav-header {
    padding-bottom: initial;
    position: initial;
    height: initial;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
  }
  .nav-header li a {
    font-size: initial;
    display: initial;
    text-transform: inherit;
    letter-spacing: 0;
  }
  .nav-header li::after {
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
    border-bottom: 3px solid #97004f;
  }
  .nav-header li:hover::after {
    transform: scaleX(1);
  }
}

.nav_admin .nav-header {
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .nav_admin .nav-header {
    justify-content: flex-end;
  }
}
.nav_admin .under_menu {
  position: relative;
}
.nav_admin .under_menu .hide_nav {
  padding: 5% 0 5% 0;
  position: absolute;
  top: 100%;
  left: 0;
}
.nav_admin .under_menu .hide_nav li {
  opacity: 0;
  margin-bottom: 5%;
  font-size: 0.9rem;
  transition: all 0.5s ease-out;
}
.nav_admin .under_menu:hover .hide_nav li {
  opacity: 1;
}

.show-menu {
  opacity: 1;
  z-index: 998;
}

.unScroll {
  overflow: hidden;
  /* Comptabilité safari  */
  -webkit-overflow-scrolling: hidden;
}

.header__burger {
  width: 5.5%;
  height: 5.5%;
  position: relative;
  z-index: 999;
  transition: transform 0.5s;
  z-index: 999;
}
@media only screen and (min-width: 576px) {
  .header__burger {
    transform: translateX(0%);
    width: 4.5%;
  }
}
@media only screen and (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger-position {
  position: absolute;
  top: 15.4%;
  right: 0%;
}
@media only screen and (min-width: 576px) {
  .header__burger-position {
    position: initial;
  }
}
.header__burger span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  background-color: #97004f;
  width: 65%;
  height: 0.15em;
  transform: rotate(180deg);
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.5s ease-out;
}
.header__burger span::before, .header__burger span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-6px);
  display: block;
  width: 150%;
  height: 0.15em;
  background-color: #97004f;
  transform-origin: 50% 50%;
  transition: background 0.5s, transform 0.5s;
}
@media only screen and (min-width: 576px) {
  .header__burger span::before, .header__burger span::after {
    transform: translateY(-8px);
  }
}
.header__burger span::after {
  transform: translateY(6px);
}
@media only screen and (min-width: 576px) {
  .header__burger span::after {
    transform: translateY(8px);
  }
}
.header__burger.burger span {
  background-color: transparent;
}
.header__burger.burger span::before, .header__burger.burger span::after {
  background-color: #97004f;
}
.header__burger.burger span::before {
  transform: rotate(-45deg) translateY(0);
}
.header__burger.burger span::after {
  transform: rotate(45deg) translateY(0);
}

.btnForm {
  display: block;
  width: 80%;
  margin: 5% auto;
}
@media only screen and (min-width: 576px) {
  .btnForm {
    width: 30%;
  }
}
@media only screen and (min-width: 1024px) {
  .btnForm {
    margin: 2% auto;
    width: 15%;
  }
}
.btnForm {
  border: 1px solid transparent;
  background-color: #1b1b1b;
  color: #97004f;
  font-weight: bold;
  border-radius: 5px;
  padding: 0.7em 0.4em 0.7em 0.4em;
  cursor: pointer;
  transition: all 0.5s ease-out;
}
.btnForm:hover {
  border: 1px solid #97004f;
  color: #b6b6b6;
}

.btn-realisation, .btn-close {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  width: 2em;
  margin: 0 auto;
  height: 2em;
  line-height: 2em;
  padding: 1em;
  border: 2px solid #97004f;
  background-color: transparent;
  transition: 0.5s;
}
.btn-realisation:hover, .btn-close:hover {
  border: 2px solid #b6b6b6;
  color: #97004f;
}

.presentation {
  margin: 3% 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .presentation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 8% 0;
  }
}
.presentation span + a {
  margin-top: 3%;
  padding: 0.7em 0.5em 0.7em;
  font-size: 1rem;
  border: 1px solid #97004f;
  transition: all 0.5s ease-out;
  text-align: center;
}
.presentation span + a:hover {
  border: 1px solid #b6b6b6;
  color: #97004f;
}
.presentation p + a {
  width: 90%;
  text-align: center;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  padding: 0.7em 0.5em 0.7em;
  border: 1px solid #97004f;
  color: #b6b6b6;
  margin-bottom: 7%;
}
@media only screen and (min-width: 576px) {
  .presentation p + a {
    width: 80%;
  }
}
@media only screen and (min-width: 1024px) {
  .presentation p + a {
    display: none;
  }
}

.name-style {
  font-size: 2em;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
@media only screen and (min-width: 576px) {
  .name-style {
    font-size: 4em;
  }
}
@media only screen and (min-width: 1024px) {
  .name-style {
    flex: 1 0 50%;
  }
}
.name-style .name {
  text-transform: uppercase;
  font-size: 1.75rem;
}
@media only screen and (min-width: 576px) {
  .name-style .name {
    font-size: 3.5rem;
  }
}
.name-style .work {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.5em;
}
.name-style .work span {
  color: #97004f;
}
@media only screen and (min-width: 576px) {
  .name-style .work {
    font-size: 1.72rem;
  }
}

.text-style {
  width: 95%;
  margin: 10% auto;
  line-height: 1.75em;
}
.text-style span {
  display: block;
  height: 0.75em; /* Evite le décalage du texte "salut" lors de l'intégration en js*/
  text-align: center;
  font-size: 1.5em;
  color: #97004f;
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 1024px) {
  .text-style span {
    height: 0.5em;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 576px) {
  .text-style {
    width: 80%;
    margin: 10% auto;
  }
}
@media only screen and (min-width: 1024px) {
  .text-style {
    margin: 0;
  }
}
.text-style .hideLetter {
  opacity: 0;
}

.realisation-container {
  width: 100%;
  margin: 5% auto;
}
.realisation-container h1 {
  margin-bottom: 5%;
}
@media only screen and (min-width: 576px) {
  .realisation-container {
    width: 80%;
  }
  .realisation-container h1 {
    margin-bottom: 3%;
  }
}

.project-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10% auto 0;
}
@media only screen and (min-width: 576px) {
  .project-container {
    width: 100%;
    margin: 8% auto 0;
    position: inherit;
  }
}
@media only screen and (min-width: 1024px) {
  .project-container {
    margin: 0;
  }
}

.bgImg {
  background-color: rgb(24, 24, 24);
  border: 1px solid rgb(39, 39, 39);
}

.img-project {
  max-width: 80%;
  border-radius: 5px;
  padding: 1% 5% 1%;
  position: relative;
}
.img-project h4 {
  text-align: center;
  margin: 1% 0 2%;
  color: #97004f;
}
@media only screen and (min-width: 576px) {
  .img-project {
    max-width: 30%;
    padding: 0.5% 2%;
  }
}
@media only screen and (min-width: 1024px) {
  .img-project {
    max-width: 20%;
  }
}
.img-project .content-container {
  width: 100%;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #131212;
}
.img-project .content-container h3 {
  width: 60%;
  margin: 10% auto;
  padding: 0.3em 0.5em 0.3em 0.5em;
  border-radius: 50px;
  border: 1px solid #97004f;
  font-weight: normal;
}
@media only screen and (min-width: 576px) {
  .img-project .content-container h3 {
    width: 45%;
  }
}
@media only screen and (min-width: 1024px) {
  .img-project .content-container h3 {
    margin: 5% auto 10%;
    width: 37%;
  }
}
.img-project .content-container .content-realisation {
  margin-bottom: 5%;
}
.img-project .content-container .content-realisation .template {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 2%;
  position: relative;
}
.img-project .content-container .content-realisation .template div:has(img) {
  position: relative;
  transition: 0.2s;
}
@media only screen and (min-width: 1024px) {
  .img-project .content-container .content-realisation .template div:has(img) {
    width: 100%;
    transition: 0.2s;
  }
}
.img-project .content-container .content-realisation .template div:has(img):hover > i {
  display: none;
}
.img-project .content-container .content-realisation .template div:has(img):hover {
  position: absolute;
  width: 100%;
  z-index: 999;
}
@media only screen and (min-width: 1024px) {
  .img-project .content-container .content-realisation .template div:has(img):hover {
    position: initial;
    transform: scale(2);
  }
  .img-project .content-container .content-realisation .template div:has(img):hover img {
    border-radius: 2px;
    padding: 0.25em;
    border: none;
  }
}
.img-project .content-container .content-realisation .template i {
  position: absolute;
  top: 1%;
  right: 1%;
  color: #97004f;
  font-size: 0.8em;
  cursor: pointer;
}
@media only screen and (min-width: 1024px) {
  .img-project .content-container .content-realisation .template i {
    font-size: initial;
  }
}
.img-project .content-container .content-realisation .template img {
  padding: 0.75em;
}
@media only screen and (min-width: 1024px) {
  .img-project .content-container .content-realisation .template {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5%;
    width: 100%;
  }
  .img-project .content-container .content-realisation .template img {
    padding: initial;
    padding: 1rem;
  }
}
.img-project .content-container .content-realisation {
  padding: 0 5%;
}
@media only screen and (min-width: 576px) {
  .img-project .content-container .content-realisation {
    padding: 0 20%;
  }
}
@media only screen and (min-width: 1024px) {
  .img-project .content-container .content-realisation {
    height: 90%; /* annule le margin du h2 afin d'eviter le scroll */
    margin-bottom: 0;
    padding: 0 30%;
  }
}
.img-project .content-container .content-realisation .template + p {
  font-size: 0.9em;
  line-height: 1.5em;
  color: #b6b6b6;
  padding: 10% 0 2%;
}
@media only screen and (min-width: 1024px) {
  .img-project .content-container .content-realisation .template + p {
    padding: 5% 5% 0 5%;
  }
}
.img-project .content-container .content-realisation .technos {
  margin: 5% 0 10%;
}
@media only screen and (min-width: 1024px) {
  .img-project .content-container .content-realisation .technos {
    margin-top: 5%;
  }
}
.img-project .content-container .content-realisation a {
  display: block;
  width: 80%;
  margin: 8% auto;
  padding: 0.5em;
  border: 1px solid #97004f;
  color: #b6b6b6;
  transition: all 0.5s ease-out;
}
.img-project .content-container .content-realisation a:hover {
  border: 1px solid #b6b6b6;
  color: #97004f;
}
@media only screen and (min-width: 576px) {
  .img-project .content-container .content-realisation a {
    width: 40%;
  }
}
@media only screen and (min-width: 1024px) {
  .img-project .content-container .content-realisation a {
    width: 30%;
    margin: 5% auto;
  }
}
.img-project .content-container .content-realisation ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2%;
}
.img-project .content-container .content-realisation ul i {
  font-size: 1.5rem;
}
.img-project .center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(24, 24, 24);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-out;
}
@media only screen and (min-width: 1024px) {
  .img-project .center:hover, .img-project .center:active {
    opacity: 1;
    background-color: #1b1b1b;
  }
}
.img-project img {
  border-radius: 5px;
}
.img-project .hoverMobile {
  opacity: 1;
  background-color: #1b1b1b;
}

aside.quote {
  text-align: center;
  width: 80%;
  margin: 20% auto 10%;
  position: relative;
}
@media only screen and (min-width: 576px) {
  aside.quote {
    width: 80%;
    margin: 5% auto;
  }
}
@media only screen and (min-width: 1024px) {
  aside.quote {
    width: 50%;
  }
}
aside.quote > a {
  position: absolute;
  top: 40%;
  transform: translateY(-85%);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  width: 1em;
  height: 1em;
  font-size: 2.5em;
  border-radius: 50%;
  color: #97004f;
  padding-bottom: 2%;
  transition: all 0.5s ease-out;
}
aside.quote > a:hover {
  border: 1px solid #97004f;
  color: #b6b6b6;
}
@media only screen and (min-width: 576px) {
  aside.quote > a {
    width: 1.5em;
    height: 1.5em;
    padding-bottom: 1%;
    transform: translateY(-65%);
    top: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  aside.quote > a {
    width: 2em;
    height: 2em;
    top: 50%;
  }
}
aside.quote .quote__next {
  right: -15%;
}
@media only screen and (min-width: 576px) {
  aside.quote .quote__next {
    right: -10%;
  }
}
@media only screen and (min-width: 1024px) {
  aside.quote .quote__next {
    right: -15%;
  }
}
aside.quote .quote__prev {
  left: -15%;
}
@media only screen and (min-width: 576px) {
  aside.quote .quote__prev {
    left: -10%;
  }
}
@media only screen and (min-width: 1024px) {
  aside.quote .quote__prev {
    left: -15%;
  }
}
aside.quote .content-quote {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20%;
}
@media only screen and (min-width: 576px) {
  aside.quote .content-quote {
    margin-bottom: initial;
  }
}
aside.quote p {
  line-height: 1.5em;
  font-style: italic;
  width: 100%;
}
aside.quote p::before, aside.quote p::after {
  content: ' "';
  font-size: 2rem;
  color: #97004f;
  vertical-align: -20%;
}

.slide__dot {
  text-align: center;
  margin-top: 5%;
}
@media only screen and (min-width: 576px) {
  .slide__dot {
    margin-top: initial;
  }
}
.slide__dot #container-dot {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide__dot #container-dot .dots {
  position: absolute;
  top: 40%;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .slide__dot #container-dot .dots {
    top: 0%;
  }
}
.slide__dot__item {
  cursor: pointer;
  padding: 0.1em;
  margin-bottom: 0.1em;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  margin: 0 2px;
  background-color: #b6b6b6;
  display: inline-block;
  transition: 0.6s ease;
}

.active {
  background-color: #97004f;
  width: 1.5em;
  border-radius: 50px 50px;
}

.show-content {
  opacity: 1;
  z-index: 999;
  transition: all 0.5s ease-out;
}

.show-quote {
  max-height: 100%;
  opacity: 1;
  z-index: 400;
  transition: 1s;
  position: absolute;
}

.hide-content {
  opacity: 0;
  z-index: -1;
  transition: all 0.5s ease-out;
}

.title-realisation {
  text-align: center;
  font-size: 1em;
  color: #97004f;
}

.form-contact {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .form-contact {
    width: 80%;
  }
}
.form-contact {
  margin: 5% auto;
}
.form-contact h1 {
  margin-bottom: 3%;
}

.inputForm {
  position: relative;
  display: inline-block;
  padding: 2%;
  width: 100%;
  background-color: #1b1b1b;
  margin-bottom: 4%;
  border-radius: 5px;
  border: 1px solid transparent;
}

input.validate {
  border: 1px solid #094709;
}

input.error {
  border: 1px solid #6d0f0f;
}

.realisation-admin {
  width: 80%;
  margin: 5% auto;
}
.realisation-admin h1 {
  margin-bottom: 3%;
}
.realisation-admin > a {
  text-align: center;
  display: block;
  padding: 0.5em;
  border: 1px solid #97004f;
  width: 100%;
  margin: 8% auto;
  transition: all 0.5s ease-out;
}
.realisation-admin > a:hover {
  border: 1px solid #b6b6b6;
  color: #97004f;
}
@media only screen and (min-width: 576px) {
  .realisation-admin > a {
    width: 40%;
  }
}
@media only screen and (min-width: 1024px) {
  .realisation-admin > a {
    width: 25%;
    margin: 5% auto;
  }
}
.realisation-admin table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}
.realisation-admin th {
  color: #97004f;
}
.realisation-admin tr:nth-child(even) {
  background-color: #1b1b1b;
}
.realisation-admin tr:hover:not(thead tr:first-child) {
  background-color: #252424;
}
.realisation-admin th, .realisation-admin td {
  border: 1px solid #252424;
  padding: 0.5em;
}
.realisation-admin td img {
  width: 50px;
}
.realisation-admin .color-delete {
  color: #97004f;
}

@media screen and (max-width: 1024px) {
  .table-responsive .table, .table-responsive thead,
  .table-responsive tbody,
  .table-responsive th,
  .table-responsive tr,
  .table-responsive td:not(.flexTd) {
    display: block;
  }
  .main__content_table .table {
    border: none;
  }
  .table-responsive tr {
    padding: 0;
    margin-bottom: 1.5rem;
    border: 1px solid #252424;
  }
  .table-responsive thead {
    display: none;
  }
  .table-responsive td:not(td.flexTd) {
    padding-left: 150px;
    position: relative;
    margin-top: -1;
    border: 2px solid #252424;
    background: #131212;
  }
  .table-responsive td:not(td.flexTd):nth-child(odd) {
    background-color: #131212;
  }
  .table-responsive td:not(td.flexTd):not(td.flexTd)::before {
    border-right: 4px solid #252424;
    padding: 10px;
    content: attr(data-label);
    background-color: #131212;
    color: #97004f;
    font-weight: bold;
    font-size: 1em;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
  }
  .flexTd {
    display: flex;
    justify-content: center;
    gap: 10%;
  }
  .flexTd a {
    font-size: 1.5em;
  }
  .table-responsive td.flexTd::before, .table-responsive tbody td:last-child {
    border: 2px solid #252424;
    background-color: #131212;
    width: 100%;
  }
}
.form-admin {
  width: 100%;
}
@media only screen and (min-width: 576px) {
  .form-admin {
    width: 80%;
  }
}
@media only screen and (min-width: 1024px) {
  .form-admin {
    width: 80%;
  }
}
.form-admin {
  margin: 5% auto;
}
.form-admin h1 {
  margin-bottom: 8%;
}
@media only screen and (min-width: 1024px) {
  .form-admin h1 {
    margin-bottom: 3%;
  }
}
.form-admin .inputForm {
  padding: 2%;
}
@media only screen and (min-width: 1024px) {
  .form-admin .inputForm {
    padding: 1.25%;
  }
}
.form-admin .langages {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: start;
}
@media only screen and (min-width: 576px) {
  .form-admin .langages {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
}
.form-admin .langages {
  margin-bottom: 5%;
}
.form-admin .btnForm {
  margin-top: 10%;
}
@media only screen and (min-width: 576px) {
  .form-admin .btnForm {
    margin-top: initial;
  }
}

.update-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5%;
}
.update-img img {
  width: 30%;
  margin-bottom: 8%;
  align-self: center;
  justify-content: center;
}
@media only screen and (min-width: 576px) {
  .update-img img {
    align-self: initial;
    width: 25%;
  }
}
@media only screen and (min-width: 1024px) {
  .update-img img {
    margin-bottom: 2%;
    width: 10%;
  }
}

.confirm-container {
  width: 100%;
  margin: 8% auto;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .confirm-container {
    width: 30%;
  }
}
.confirm-container h1 {
  margin-bottom: 5%;
}
.confirm-container form {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 5%;
}
.confirm-container form input {
  border: 1px solid #97004f;
  color: #b6b6b6;
  border-radius: initial;
  transition: all 0.5s ease-out;
}
.confirm-container form input:hover {
  border: 1px solid #b6b6b6;
  color: #97004f;
}

.form-connect {
  width: 100%;
  margin: 8% auto;
}
@media only screen and (min-width: 576px) {
  .form-connect {
    width: 50%;
  }
}
@media only screen and (min-width: 576px) {
  .form-connect {
    width: 30%;
  }
}
.form-connect h1 {
  margin-bottom: 5%;
  text-align: center;
}
.form-connect .btnForm {
  width: 50%;
}

.mentions {
  width: 95%;
  margin: 3% auto 0;
  padding: 0.5em 0.5em;
  background-color: #1b1b1b;
  border-radius: 10px;
}
@media only screen and (min-width: 1024px) {
  .mentions {
    width: 80%;
    padding: 0.5em 2em;
  }
}
.mentions h1 {
  text-align: center;
}
.mentions h2 {
  color: #97004f;
  text-align: center;
}

* {
  box-sizing: border-box;
  color: #b6b6b6;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
}

::-webkit-scrollbar {
  width: 10px;
  height: 14px;
  background-color: transparent;
}

::-webkit-scrollbar-track-piece { /* Fond */
  background: transparent none;
  border: solid 1px #131212;
  border-right-width: 8px;
  margin: 4px;
  -webkit-box-shadow: inset 1px 1px 0 0 rgb(30, 30, 30), inset -1px -1px 0 0 rgb(30, 30, 30);
}

::-webkit-scrollbar-thumb { /* Barre */
  border: solid 0 transparent;
  border-right-width: 4px;
  -webkit-border-radius: 5px;
  -webkit-border-top-right-radius: 9px 5px;
  -webkit-border-bottom-right-radius: 9px 5px;
  -webkit-box-shadow: inset 0 0 0 1px rgb(40, 40, 40), inset 0 0 0 6px rgb(40, 40, 40);
}

::-webkit-scrollbar-thumb:hover { /* Barre */
  -webkit-box-shadow: inset 0 0 0 1px rgb(30, 30, 30), inset 0 0 0 6px rgb(30, 30, 30);
}

html, body {
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-color: #131212;
  padding: 0 15px;
  opacity: 0;
  transition: all 0.5s ease-out;
  scroll-behavior: smooth;
  min-height: calc(var(100vh, 1vh) * 100);
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

/****  permet de maintenir le footer en pied de page*/
.content {
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
}

/************************/
img {
  max-width: 100%;
  height: auto;
}

ul {
  padding-left: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

textarea {
  resize: none;
}

.flex-form {
  margin-top: 1%;
  gap: 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}
.flex-form :last-child {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .flex-form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
  .flex-form :first-child, .flex-form :last-child {
    flex: 0 1 50%;
  }
}

.delayBody {
  opacity: 1;
  transition: 0.25s;
}

.section-title {
  font-size: 1rem;
}
@media only screen and (min-width: 576px) {
  .section-title {
    font-size: 1.2rem;
    margin-left: initial;
  }
}
.section-title {
  text-transform: uppercase;
  letter-spacing: 0.5em;
}

.errorForm {
  text-align: center;
  color: #6d0f0f;
}

.sentMailMessage {
  color: #094709;
  text-align: center;
}

.msgError {
  display: block;
  text-align: center;
  color: #6d0f0f;
}

.inputForm.validate {
  border: 1px solid #094709;
}

.inputForm.error {
  border: 1px solid #6d0f0f;
}

.errorCheck {
  color: #6d0f0f;
}

.hide {
  display: none;
}

.overflowOff {
  overflow: hidden;
  /* Comptabilité safari  */
  -webkit-overflow-scrolling: hidden;
}

.overflowRun {
  overflow: auto;
  /* Comptabilité safari  */
  -webkit-overflow-scrolling: auto;
}/*# sourceMappingURL=style.css.map */