html {
  font-size: min(9px + 0.5vw, 30px);
}

/* enlever le mouvement horizontal sur mobile */
/* @media screen and (min-width: 200px) and (max-width: 720px) {
  html, body {
    overflow-x: hidden;
  }
  body{
    position: relative;
  }
}
*/
/* Transition */
.transition {
  left: -101vw;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 99990;
  display: flex;
}
.transition .slider {
  width: 100%;
  height: 100%;
  background-color: black;
}
.transition .logo {
  position: absolute;
  top: 36%;
  left: 38%;
  width: 25%;
}
.transition .logo > img {
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
  overflow-x: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*


----------- PAGE INDEX.PHP----------------------------------------------------------------------


 */
/* SECTION HERO */
#hero {
  position: relative;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(180deg, #454079 0%, rgba(69, 64, 121, 0.82) 31.58%, rgba(69, 64, 121, 0.72) 43.26%, rgba(69, 64, 121, 0.63) 51.7%, rgba(69, 64, 121, 0.57) 57.33%, rgba(69, 64, 121, 0.52) 60.14%, rgba(69, 64, 121, 0) 100%);
}
#hero > .bg {
  z-index: -9999;
  position: absolute;
  height: min(80vh, 540px);
  width: auto;
  bottom: 0;
  opacity: 10%;
}
#hero > .hero-content {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#hero > .hero-content > .hero-title {
  width: 60%;
}
#hero > .hero-content > .hero-title > img {
  width: 100%;
  height: auto;
}
#hero > .hero-content > .hero-text {
  text-align: center;
  white-space: nowrap;
  color: #d0d3db;
  margin-top: 5rem;
  font-family: Poppins, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}
#hero > .hero-content > .hero-text .hero-text-container {
  position: relative;
  width: 100%;
  height: 1.2em;
  overflow: hidden;
}
#hero > .hero-content > .hero-text .hero-text-container .hero-text-items {
  line-height: 1.3em;
  animation: rollingstats 20s infinite;
  transition: transform 0.5s ease-in-out;
}

/* Styling Buttons Hero */
.hero-buttons {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  color: inherit;
  text-decoration: inherit;
  font-family: Poppins, sans-serif;
  white-space: nowrap;
}
.hero-buttons .savoir-plus {
  position: absolute;
  bottom: -10%;
  left: -50%;
}
.hero-buttons .arrow-down {
  position: absolute;
  bottom: -27%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  animation: bouncingArrow 1s infinite;
}
.hero-buttons .arrow-down > a {
  color: inherit;
  text-decoration: inherit;
}
.hero-buttons .devis-btn {
  position: absolute;
  bottom: -10%;
  right: -50%;
}

a.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

a.learn-more {
  width: 12rem;
  height: auto;
}

a.learn-more .circle {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}

a.learn-more .circle .icon {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

a.learn-more .circle .icon.arrow {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

a.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

a.learn-more .button-text {
  -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 2.75rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

a:hover .circle {
  width: 100%;
}

a:hover .circle .icon.arrow {
  background: #fff;
  -webkit-transform: translate(1rem, 0);
  -ms-transform: translate(1rem, 0);
  transform: translate(1rem, 0);
}

a:hover .button-text {
  color: #fff;
}

/* DEVIS BUTTON */
.devis-btn {
  --color: #ef7d00;
  position: relative;
  z-index: 1;
  width: 13.8rem;
}

.devis-btn::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  background: transparent;
  top: -20px;
  left: -9px;
  z-index: -5;
  border-top: 1px solid var(--color);
  border-left: 1px solid var(--color);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.devis-btn::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  background: transparent;
  bottom: -20px;
  right: -9px;
  z-index: -5;
  border-right: 1px solid var(--color);
  border-bottom: 1px solid var(--color);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.devis-btn:hover > a {
  background-color: #fff;
  color: #222222;
}
.devis-btn:hover::before {
  width: calc(100% + 17px);
  height: calc(100% + 38px);
}

.devis-btn:hover::after {
  width: calc(100% + 17px);
  height: calc(100% + 38px);
}

.devis-btn a {
  padding: 0.7em 2em;
  font-size: 1rem;
  background-color: #222222;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.5s ease-in-out;
  text-decoration: none;
}

@media screen and (min-width: 200px) and (max-width: 720px) {
  #hero .hero-content {
    width: 70% !important;
  }
  #hero .hero-content .hero-title {
    width: 70% !important;
  }
  #hero .hero-content .hero-text {
    font-size: 2rem !important;
  }
  #hero .hero-content .hero-buttons .savoir-plus {
    display: none !important;
  }
  #hero .hero-content .hero-buttons .devis-btn {
    position: absolute !important;
    width: 20.6rem !important;
    left: 50%;
    transform: translateX(-50%);
  }
  #hero .hero-content .hero-buttons .devis-btn > a {
    font-size: 1.5rem !important;
  }
}
/* SECTION INTRO */
.intro {
  padding-top: 7%;
  position: relative;
  width: 100vw;
  height: 40vh;
}
.intro .container {
  display: grid;
  grid-template-columns: 2fr 3fr;
}
.intro .container .left {
  position: relative;
  margin: auto;
  width: 100%;
  height: 100%;
}
.intro .container .left .title {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
}
.intro .container .left .title strong {
  color: #ef7d00;
}
.intro .container .right {
  position: relative;
  width: 100%;
  height: 100%;
}
.intro .container .right p {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 5%;
}

@media screen and (min-width: 200px) and (max-width: 720px) {
  .intro {
    height: auto !important;
    font-size: 1.5em;
  }
  .intro .container {
    grid-template-columns: 1fr;
  }
  .intro .container .left .title {
    font-size: 1.3rem;
  }
  .intro .container .left .title > h2 {
    font-size: 1.3rem;
  }
  .intro .container .right p {
    margin-top: 0.5rem;
    font-size: 2em;
  }

  .qualites {
    height: auto !important;
  }
  .qualites::before {
    top: -3% !important;
  }
  .qualites .container {
    display: flex !important;
    flex-direction: column;
    font-size: 1.5em;
  }
  .qualites .container i {
    font-size: 12em !important;
  }
  .qualites .container h4 {
    font-size: 4em;
  }
  .qualites .container > * {
    margin-bottom: 2rem;
  }
  .qualites .container > * > p {
    margin-left: 10%;
    margin-right: 10%;
    font-size: 2em !important;
    font-weight: 300;
  }
}
/* SECTION QUALITES */
.qualites {
  position: relative;
  margin-top: 5rem;
  width: 100vw;
  height: auto;
}
.qualites::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 3px;
  background-color: black;
  left: 50%;
  transform: translateX(-50%);
  top: -10%;
}
.qualites .container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 2fr 1fr 2fr 1fr;
}
.qualites .container i {
  font-size: 5rem;
  margin-bottom: 1rem;
}
.qualites .container h4 {
  margin-bottom: 1rem;
}
.qualites .container p {
  text-align: center;
  font-size: 0.85em;
}
.qualites .container .left, .qualites .container .middle, .qualites .container .right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: content;
}
.qualites .container .left {
  grid-column: 2;
  width: 100%;
  height: 100%;
}
.qualites .container .middle {
  grid-column: 4;
  width: 100%;
  height: 100%;
}
.qualites .container .right {
  grid-column: 6;
  width: 100%;
  height: 100%;
}

/* SECTION ETUDE */
.pres-etude {
  width: 100vw;
  height: auto;
  padding-top: 60px;
  padding-bottom: 350px;
  background-image: url("../img/layered-waves-haikei (2).svg");
  background-size: cover;
  background-position: bottom;
}
.pres-etude .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pres-etude .title {
  width: max-content;
}
.pres-etude .title::before {
  content: "";
  position: absolute;
  background-color: #ef7d00;
  height: 3px;
  width: 120%;
  bottom: 0;
  left: -10%;
}
.pres-etude .frise::after {
    content: url(../img/arrow.svg);
    position: absolute;
    bottom: -75.8vh;
    left: 50%;
    transform: translateX(-50%) scale(0.05);
    opacity: 0.9;
}
.pres-etude .frise {
  position: relative;
  margin-top: 15vh;
  left: 3%;
  display: flex;
}
.pres-etude .frise img {
  width: 100%;
}
.pres-etude .frise .part-1 {
  position: relative;
}
.pres-etude .frise .part-2 {
  position: relative;
  left: -1.9%;
  overflow-x: hidden;
}
.pres-etude .frise .part-2 > img {
  position: relative;
}
.pres-etude .frise .part-3 {
  position: relative;
  left: -3.9%;
  overflow-x: hidden;
}
.pres-etude .frise .part-3 > img {
  position: relative;
}
.pres-etude .frise .part-4 {
  position: relative;
  left: -5.9%;
  overflow-x: hidden;
}
.pres-etude .frise .part-4 > img {
  position: relative;
}
.pres-etude .frise .part-5 {
  position: relative;
  left: -7.9%;
  overflow-x: hidden;
}
.pres-etude .frise .part-5 > img {
  position: relative;
}

/* SECTION PRESTATIONS */
.prestations {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url("../img/wave-haikei (4).svg");
  background-size: cover;
  background-position: top;
}
.prestations .grid-container {
  z-index: 100;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 18% 1fr 1fr 4fr 10%;
  grid-template-columns: 5% 1fr 2% 1fr 2% 1fr 2% 1fr 5%;
}
.prestations .grid-container .title {
  margin: auto;
  width: max-content;
  color: white;
  grid-row: 2;
  grid-column: 1/10;
  margin-bottom: 2rem;
}
.prestations .grid-container .title ::before {
  content: none;
}
.prestations .grid-container .title ::after {
  content: "";
  position: absolute;
  background-color: #ef7d00;
  height: 3px;
  width: 120%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.prestations .grid-container .gi, .prestations .grid-container .env, .prestations .grid-container .proto, .prestations .grid-container .trad {
  background-color: black;
  color: white;
  width: 100%;
  height: 100%;
  grid-row: 4;
  border-radius: 10px;
  transition: 0.3s ease-in;
}
.prestations .grid-container .gi {
  grid-column: 2;
}
.prestations .grid-container .env {
  grid-column: 4;
}
.prestations .grid-container .proto {
  grid-column: 6;
}
.prestations .grid-container .trad {
  grid-column: 8;
}
.prestations .grid-container .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-basis: content;
  align-items: center;
  justify-content: center;
}
.prestations .grid-container .card .card-title {
  position: relative;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  margin-bottom: 8%;
  overflow-x: hidden;
  padding: 5% 10% 0% 10%;
}
.prestations .grid-container .card .card-title::after {
  content: "";
  position: absolute;
  background-color: #ef7d00;
  width: 120%;
  height: 2px;
  bottom: 0;
  left: -10%;
  transform: translateX(-100%);
  transition: transform 0.5s ease-out;
}
.prestations .grid-container .card .card-icon {
  height: min(15%, 100px);
}
.prestations .grid-container .card .card-icon > img {
  display: block;
  height: 100%;
  margin: auto;
}
.prestations .grid-container .card .card-body {
  font-size: 0.88rem;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 10%;
  text-align: center;
}
.prestations .grid-container .card .card-body > p {
  font-family: "Josefin Sans", sans-serif;
}
.prestations .grid-container .card .card-btn {
  position: relative;
  margin-top: 13%;
  margin-bottom: 5%;
}
.prestations .grid-container .card .card-btn > a {
  background-color: white;
  color: #222222;
  padding: 8px;
  border-radius: 10px;
  text-decoration: inherit;
}
.prestations .grid-container .card p {
  height: 65%;
}
.prestations .grid-container .gi:hover, .prestations .grid-container .env:hover, .prestations .grid-container .proto:hover, .prestations .grid-container .trad:hover {
  transform: translateX(25px) scale(1.1);
}
.prestations .grid-container .gi:hover ~ div, .prestations .grid-container .env:hover ~ div, .prestations .grid-container .proto:hover ~ div, .prestations .grid-container .trad:hover ~ div {
  transform: translateX(50px);
}
.prestations .grid-container .gi:hover .card-title::after, .prestations .grid-container .env:hover .card-title::after, .prestations .grid-container .proto:hover .card-title::after, .prestations .grid-container .trad:hover .card-title::after {
  transform: translateX(0);
}

@media screen and (min-width: 720px) and (max-width: 1000px) {
  .prestations .grid-container {
    grid-template-rows: 18% 1fr 1fr 4fr 10%;
    grid-template-columns: 5% 1fr 2% 1fr 2% 1fr 2% 1fr 5%;
  }
}
@media screen and (min-width: 200px) and (max-width: 720px) {
  .gi:hover, .env:hover, .proto:hover, .trad:hover {
    transform: none !important;
  }

  .gi:hover ~ div, .env:hover ~ div, .proto:hover ~ div, .trad:hover ~ div {
    transform: none !important;
  }

  .prestations {
    height: auto;
  }
  .prestations .grid-container {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .prestations .grid-container .title {
    font-size: 4rem !important;
    margin-top: 6rem;
  }
  .prestations .grid-container .gi, .prestations .grid-container .env, .prestations .grid-container .proto, .prestations .grid-container .trad {
    width: 70%;
    margin-top: 3rem;
  }
  .prestations .grid-container .gi h3, .prestations .grid-container .env h3, .prestations .grid-container .proto h3, .prestations .grid-container .trad h3 {
    font-size: 1.5rem;
  }
  .prestations .grid-container .gi .card-title::after, .prestations .grid-container .env .card-title::after, .prestations .grid-container .proto .card-title::after, .prestations .grid-container .trad .card-title::after {
    transform: translateX(0);
  }
  .prestations .grid-container .gi p, .prestations .grid-container .env p, .prestations .grid-container .proto p, .prestations .grid-container .trad p {
    font-size: 1.5em !important;
  }
  .prestations .grid-container .gi .card-btn, .prestations .grid-container .env .card-btn, .prestations .grid-container .proto .card-btn, .prestations .grid-container .trad .card-btn {
    margin-bottom: 3rem;
  }
  .prestations .grid-container .gi .card-btn a, .prestations .grid-container .env .card-btn a, .prestations .grid-container .proto .card-btn a, .prestations .grid-container .trad .card-btn a {
    font-size: 5em !important;
  }
}
/*  SECTION PARTENAIRES */
.partenaires {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url("../img/wave-haikei (5).svg");
  background-size: cover;
  background-position: top;
}
.partenaires .title {
  position: relative;
  width: max-content;
  padding-top: 10%;
  color: black;
  margin: auto;
}
.partenaires .title::after {
  content: "";
  background-color: #ef7d00;
  position: absolute;
  width: 120%;
  bottom: 0;
  height: 3px;
  left: 50%;
  transform: translateX(-50%);
}
.partenaires .partenaires-logo {
  margin-left: 10%;
  margin-right: 10%;
  display: grid;
  grid-template-columns: repeat(3, 2fr);
}
.partenaires .partenaires-logo img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.partenaires .partenaires-logo .logo {
  height: 100%;
}

@media screen and (min-width: 200px) and (max-width: 720px) {
  .partenaires {
    height: auto;
  }
  .partenaires .container .title {
    font-size: 4rem !important;
  }
  .partenaires .partenaires-logo {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .partenaires .partenaires-logo .logo {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
  }
  .partenaires .partenaires-logo img {
    width: 50%;
  }
}
/*

------------------------------------------------PAGE DEVIS.PHP----------------------------------

 */
.page {
  width: 100vw;
  height: 110vh;
  background-image: url("../img/France_Houses_Rivers_Bridges_Evening_Albi_546862_1280x847.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.page .gradient {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(2, 0, 36, 0.7609244381) 0%, rgba(0, 0, 0, 0.7133053905) 3%, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0.7609244381) 97%, rgba(0, 0, 0, 0.8365546902) 100%);
  background-attachment: fixed;
  background-size: cover;
  background-position: top;
}
.page .container {
  display: grid;
  grid-template-rows: 15% 1fr 15%;
  grid-template-columns: 1fr 2fr 4fr 1fr;
}
.page .container .left-contact {
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-column: 2;
  grid-row: 2;
}
.page .container .left-contact ul {
  margin: auto;
  width: 60%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  font-size: xxx-large;
}
.page .container .left-contact ul a {
  color: inherit;
  text-decoration: none;
}
.page .container .right-form {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background-color: #222222;
  grid-column: 3;
  grid-row: 2;
}
.page .container .right-form h1 {
  font-size: xxx-large;
  margin-left: 2rem;
  position: relative;
  margin-bottom: 5%;
}
.page .container .right-form form {
  margin-left: 5%;
  margin-right: 5%;
}
.page .container .right-form form div {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  font-family: Heebo, sans-serif;
  font-weight: 300;
}
.page .container .right-form form div:not(textarea) input {
  line-height: 2rem;
  padding-left: 0.5rem;
}
.page .container .right-form form div:not(.civilite) > label {
  position: absolute;
  color: black;
  font-family: Heebo, sans-serif;
  font-size: 1.2em;
  font-weight: 200;
  opacity: 0.4;
  top: 0.3rem;
  left: 0.5rem;
  margin: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.page .container .right-form form div input:focus + label, .page .container .right-form form div input:valid + label, .page .container .right-form form div textarea:valid + label, .page .container .right-form form div textarea:focus + label {
  opacity: 1;
  color: #ef7d00;
  transform: translate(-0.5rem, -1.9rem);
}
.page .container .right-form form div select:valid + label, .page .container .right-form form div select:focus + label {
  color: #ef7d00;
  opacity: 1 !important;
}
.page .container .right-form form .submit {
  font-family: Poppins, sans-serif;
}
.page .container .right-form form .submit button {
  width: max-content;
  color: black;
  border: none;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
}

@media screen and (min-width: 200px) and (max-width: 720px) {
  .page {
    padding-top: 10vh;
    height: auto;
  }
  .page .gradient {
    background: none;
  }
  .page .container {
    display: flex;
    flex-direction: column-reverse;
  }
  .page .container h1 {
    font-size: 2.5rem !important;
    margin-left: 1rem !important;
    margin-bottom: 2rem !important;
    margin-top: 2rem !important;
  }
  .page .container .left-contact {
    padding-bottom: 2rem;
    margin-bottom: 4.5rem;
    border-radius: 0 0 10px 10px;
  }
  .page .container .left-contact > * {
    margin-top: 1rem !important;
  }
  .page .container .left-contact p {
    font-size: 1.2rem !important;
  }
  .page .container .right-form {
    padding-bottom: 2rem;
    border-radius: 10px 10px 0 0;
  }
  .page .container .right-form button {
    margin-left: 1rem;
  }
  .page .container .right-form form {
    margin-left: 2%;
    margin-right: 2%;
    font-size: 1.5rem;
  }
  .page .container .right-form form div {
    margin-top: 2.5rem;
  }
  .page .container .right-form form div:not(.civilite) > label {
    top: 0.05rem;
  }
  .page .container .right-form form div:not(textarea) input {
    line-height: 2rem !important;
  }
  .page .container .right-form form div label {
    font-size: 1.7rem !important;
  }
  .page .container .right-form form input:focus + label, .page .container .right-form form input:valid + label, .page .container .right-form form textarea:valid + label, .page .container .right-form form textarea:focus + label {
    transform: translate(-0.5rem, -2.2rem) !important;
  }
  .page .container .right-form form .civilite > label {
    top: -2rem !important;
  }
}
textarea {
  resize: none;
  height: 4rem;
}

/*

------------------------------------------------PAGE NOTREJUNIOR.PHP----------------------------------

*/
#JE {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: left;
  padding-top: 10vh;
  padding-bottom: 10vh;
  background-image: linear-gradient(180deg, #222222 0%, rgb(34 34 34) 90%, rgb(34 34 34) 92%, rgb(34 34 34) 97%, rgb(34 34 34) 100%)
}
#JE .banniere-img {
  width: 100vw;
  height: 25vh;
  overflow: hidden;
  position: relative;
}
#JE .banniere-img > img {
  position: absolute;
  width: 100%;
  bottom: 0;
}
#JE .banniere-content {
  color: white;
  width: 70%;
}
#JE .banniere-content h4 {
  font-size: 1.5em;
  margin-bottom: 2rem;
}
#JE .banniere-content p {
  margin-bottom: 5rem;
}

.banniere-title {
  margin-top: 4%;
  margin-bottom: 5%;
  width: 100vw;
  height: 10%;
  background-color: #222222;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banniere-title > h1 {
  position: relative;
  font-family: Heebo, sans-serif;
  font-weight: 400;
}
.banniere-title > h1::before, .banniere-title > h1::after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: #ef7d00;
  width: 21vw;
  height: 2px;
}
.banniere-title > h1::after {
  right: -80%;
  transform: translateX(100%);
}
.banniere-title > h1::before {
  left: -80%;
  transform: translateX(-100%);
}

#notreJ {
  height: 80vh;
  position: relative;
}
#notreJ .banniere-title {
  background-color: transparent;
  color: black;
}
#notreJ .banniere-content {
  padding-left: 7%;
  padding-right: 7%;
}
#notreJ .frise-hist {
  width: 90%;
  margin: auto;
  padding-top: 5%;
}
#notreJ .frise-hist > img {
  width: 100%;
}

#notreequipe {
  padding: 20px;
}

#notreequipe .banniere-title {
  text-align: center;
  margin-bottom: 20px;
}

#notreequipe .pres-equipe {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
}

#notreequipe .pres-equipe .right {
  flex: 1;
  min-width: 300px; /* Ajustez selon vos besoins */
  margin: 10px;
}

#notreequipe .pres-equipe .left {
  display: flex;
  justify-content: center;
  align-items: center;
}

#notreequipe .pres-equipe .left > img {
  height:100%;
  width: auto;
}

#notreequipe .pres-equipe .right {
  display: flex;
  align-items: center;
  padding: 0px 5%;
}

.pres-organigramme {
  padding-top: 7vh;
  width: 90vw;
  margin: auto;
}
.pres-organigramme > p {
  width: 70%;
  text-align: center;
  margin: auto;
}
.pres-organigramme .collapsing-list {
  height: auto;
}
.pres-organigramme .collapsing-list li {
  list-style: none;
  width: 80%;
}
.pres-organigramme .collapsing-list .item {
  cursor: pointer;
  padding: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  border: solid 1px black;
  border-radius: 7px;
}
.pres-organigramme .collapsing-list i {
  transition: transform ease 0.5s;
}
.pres-organigramme .collapsing-list i.showed {
  transform: rotate(180deg);
}
.pres-organigramme .collapsing-item {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-height: 0;
  text-align: center;
  transition: opacity 0.5s ease-out, max-height 0.5s ease-in-out;
}
.pres-organigramme .collapsing-item * {
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
}
.pres-organigramme .collapsing-item > .people {
  margin-right: 2rem;
}
.pres-organigramme .collapsing-item b {
  display: none;
}
.pres-organigramme .collapsing-item img {
  width: 10vw;
}
.pres-organigramme .collapsing-item.showed {
  opacity: 1;
  max-height: 500px;
}
.pres-organigramme .collapsing-item.showed * {
  max-height: 500px;
}
.pres-organigramme .collapsing-item.showed b {
  display: block;
}

@media screen and (min-width: 200px) and (max-width: 720px) {
  #JE {
    font-size: 2.5em;
  }
  #JE .banniere-img {
    height: 10vh;
  }

  #notreJ {
    font-size: 2.5em;
    height: 68vh;
  }
  #notreJ .banniere-content img {
    transform: translateY(35%) !important;
  }

  .banniere-title > h1 {
    font-size: 1.5rem !important;
  }
  .banniere-title > h1::after {
    right: -10%;
  }
  .banniere-title > h1::before {
    left: -10%;
  }
  .banniere-title > h1 > strong {
    font-size: 1em !important;
  }

  #notreequipe .collapsing-list li:nth-child(5) .collapsing-item {
    display: grid !important;
    grid-template-rows: 1fr 1fr;
  }
  #notreequipe .collapsing-list li:nth-child(5) .collapsing-item .people:nth-child(2n+1) {
    grid-row: 1;
  }
  #notreequipe .collapsing-list li:nth-child(5) .collapsing-item .people:nth-child(2n) {
    grid-row: 2;
  }
  #notreequipe .collapsing-item img {
    width: 20vw;
  }
  #notreequipe .pres-equipe {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    height: auto;
  }
  #notreequipe .pres-equipe .left {
    margin: 0;
    width: 100%;
    height: 13vh;
    padding-left: 5%;

  }
  #notreequipe .pres-equipe .right {
    margin-top: 3rem;
    width: auto;
  }
  #notreequipe .pres-organigramme {
    padding-top: 2rem;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  #notreequipe .pres-organigramme p {
    width: 100%;
  }
  #notreequipe .pres-organigramme .collapsing-list li {
    width: 100%;
    font-size: 1rem;
  }
}
/* PAGE GI.PHP, ENVIRONNEMENT.PHP? STRATEGIE.PHP, PROTOTYPAGE.PHP */
section.hero {
  height: 100vh;
  background-size: cover;
}
section.hero > .hero-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section.hero > .hero-body .hero-title > h1 {
  font-family: Heebo, sans-serif;
  font-weight: 400;
  font-size: 5rem;
  margin-bottom: 2rem;
}
section.hero > .hero-body .hero-title > h2 {
  font-family: Heebo, sans-serif;
  font-weight: 100;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  margin-right: 1.5rem;
  text-align: right;
}
section.hero > .hero-body .arrow-down {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  color: white;
  animation: bouncingArrow 1s infinite;
}
section.hero > .hero-body .arrow-down > a {
  color: inherit;
  text-decoration: inherit;
}

section.pres {
  padding-top: 6rem;
  display: flex;
  flex-direction: column;
  color: white;
}
section.pres .pres-title > h2 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
section.pres .pres-wrapper {
  display: flex;
  width: 75vw;
  height: 20rem;
  margin: 0 auto 0 auto;
  border: solid 1px orange;
  border-radius: 5px;
  overflow: hidden;
  grid-gap: 1rem;
}
section.pres .pres-wrapper > .inner {
  display: flex;
  transition: all 0.3s ease-in-out;
}
section.pres .pres-wrapper > .inner > div {
  width: 75vw;
  display: flex;
  padding-top: 2.5vh;
  padding-bottom: 2.5vh;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
}
section.pres .pres-wrapper > .inner > div > p {
  width: 60%;
  margin: auto;
}
section.pres .pres-wrapper > .inner > div > p .highlight {
  color: orange;
}
section.pres .pres-wrapper > .inner > div > .resume {
  overflow: hidden;
  width: 40%;
}
section.pres .pres-wrapper > .inner > div > .resume > img {
  height: 100%;
}
section.pres .buttons-wrapper {
  margin-top: 4rem;
  margin-bottom: 2rem;
  align-self: center;
  width: 60%;
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.pres .buttons-wrapper > .button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 30%;
  height: 100%;
  font-weight: 100;
  text-align: center;
  transition: color 0.3s ease-in-out, font-weight 0.5s ease-in-out;
  cursor: pointer;
}
section.pres .buttons-wrapper > .button > i {
  font-size: 3rem;
  margin-bottom: 1rem;
  pointer-events: none;
  transition: color 0.3s ease-in-out, font-weight 0.5s ease-in-out, font-size 0.4s ease-in-out;
}
section.pres .buttons-wrapper > .button.active {
  font-weight: bold;
  color: #ef7d00;
}
section.pres .buttons-wrapper > .button.active > i {
  font-size: 4rem;
}

@media screen and (min-width: 200px) and (max-width: 720px) {
  section.pres .pres-wrapper {
    width: 90vw !important;
    height: 60vh;
  }
  section.pres .pres-wrapper > .inner > div {
    flex-direction: column;
    position: relative;
    width: 90vw !important;
  }
  section.pres .pres-wrapper > .inner > div .resume {
    position: relative;
    width: 90%;
    height: 40%;
    align-self: center;
  }
  section.pres .pres-wrapper > .inner > div p {
    width: auto;
    height: auto;
    font-size: 4.5em;
    line-height: 1.2rem;
  }
  section.pres .pres-wrapper > .inner > div p > .highlight {
    font-size: 1em;
  }
  section.pres .pres-wrapper > .inner > div img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100% !important;
    height: auto !important;
  }
  section.pres .buttons-wrapper {
    width: 90vw;
  }
  section.pres .buttons-wrapper > .button {
    font-size: 2em;
  }
}
main[data-barba-namespace=gi] section.hero {
  background-image: url("../img/gi/hero.jpg");
}
main[data-barba-namespace=gi] section.hero .hero-title {
  position: absolute;
  top: 30%;
  left: 15%;
  color: white;
  font-size: 5rem;
  margin-bottom: 2rem;
}
main[data-barba-namespace=gi] section.pres {
  background-color: #171515;
}

main[data-barba-namespace=environnement] section.hero {
  background-image: url("../img/environnement/hero.jpg");
}
main[data-barba-namespace=environnement] section.hero .hero-title {
  position: absolute;
  top: 30%;
  left: 30%;
  color: white;
  font-size: 5rem;
  margin-bottom: 2rem;
}
main[data-barba-namespace=environnement] section.pres {
  background-color: #171515;
}

@media screen and (min-width: 200px) and (max-width: 720px) {
  main[data-barba-namespace=environnement] section.hero .hero-title {
    left: 10%;
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  main[data-barba-namespace=environnement] section.hero .hero-title > h1 {
    font-size: 4rem;
  }
}
main[data-barba-namespace=strategie] section.hero {
  background-image: url("../img/bdd/hero.jpg");
}
main[data-barba-namespace=strategie] section.hero .hero-title {
  position: absolute;
  top: 30%;
  left: 60%;
  color: white;
  font-size: 5rem;
  margin-bottom: 2rem;
}
main[data-barba-namespace=strategie] section.pres {
  background-color: #171515;
}

@media screen and (min-width: 200px) and (max-width: 720px) {
  main[data-barba-namespace=strategie] section.hero .hero-title {
    left: 30%;
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  main[data-barba-namespace=strategie] section.hero .hero-title > h1 {
    font-size: 4rem;
  }
}
main[data-barba-namespace=prototypage] section.hero {
  background-image: url("../img/prototypage/hero.jpg");
}
main[data-barba-namespace=prototypage] section.hero .hero-title {
  position: absolute;
  top: 30%;
  left: 40%;
  color: white;
  font-size: 5rem;
  margin-bottom: 2rem;
}
main[data-barba-namespace=prototypage] section.pres {
  background-color: #171515;
}

@media screen and (min-width: 200px) and (max-width: 720px) {
  main[data-barba-namespace=prototypage] section.hero .hero-title {
    left: 20%;
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  main[data-barba-namespace=prototypage] section.hero .hero-title > h1 {
    font-size: 4rem;
  }
}
/* Generic Styling */
.btn-transition {
  background-image: linear-gradient(99deg, #ef7d00 0%, #ef7d00 50%, white 50%, white 51%, white 100%);
  background-size: 205%;
  background-position: 100%;
  transition: all 0.3s ease-in-out;
}
.btn-transition:hover {
  background-position: 0;
  color: white;
}

.container {
  width: 90%;
  height: 100%;
  margin-left: 5%;
  margin-right: auto;
}
@media screen and (max-width: 780px) {
  .container {
    width: 95%;
    margin-left: 2.5%;
    margin-right: auto;
  }
}

.title {
  position: relative;
  font-family: Heebo, sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin: auto;
  text-align: center;
}
.title strong {
  position: relative;
}
.title strong {
  font-weight: bolder;
}

.space {
  height: 800px;
}

/* keyframes */
@keyframes rollingstats {
  0%, 25% {
    transform: translateY(0);
  }
  33%, 58% {
    transform: translateY(-25%);
  }
  66%, 91% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(-75%);
  }
}
@keyframes bouncingArrow {
  50% {
    transform: translate(-50%, -10px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

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