/*--------------------------------------------------------------
# Import des typo via Google Fonts
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');

/*--------------------------------------------------------------
# Media Queries en cas de besoin (pour l'instant non)
--------------------------------------------------------------*/

@media only screen and (max-width: 767px) and (orientation: portrait) {
    
}

@media only screen and (max-width: 767px) {
    /* phones */
}

@media only screen and (max-width: 767px) and (orientation: portrait) {
    /* portrait phones */
}

/*--------------------------------------------------------------
# Général
--------------------------------------------------------------*/

html {
    scroll-padding-top: 3.5rem;
  }
  
body {
    background: #07100c;
    color: #fcfffc;
    font-family: 'Oswald', sans-serif;
  }

  header {
    padding-top: 9.5rem;
    padding-bottom: 6rem;
    animation: fadeIn 2s ease-in-out;
  }
  
  section {
    padding-bottom: 13rem;
  }


  h1,h2,h3 {
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif !important;
    font-weight: 500 !important;
}

h2 {
    margin-bottom: 20px;
  }

p, .accordion-body li {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
}

h4 {
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif !important;

}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
  color: white;
  background: #07100c;
  width: 100%;
  height: 70px;
  position: fixed;
  z-index: 999999;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

#jobAccordion h4:last-of-type, #jobAccordion p:last-of-type {
  display: inline;
}

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 2s all ease;
}
.reveal.active{
  transform: translateY(0);
  opacity: 1;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* NAV BAR */

label.logo {
  text-transform: uppercase;
  box-sizing: border-box;
  font-size: x-large;
  line-height: 80px;
  padding: 0 70px;
  font-weight: 400;
}

label.logo img {
  height: 55px;
  width: 55px;
  margin-right: 10px;
  padding-bottom: 7px;
}

nav .nav-container {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav .nav-container .nav-items {
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
  text-transform: uppercase;
  font-size: 20px;
}

li.nav-items a:hover {
  color: #76EBCF !important;
  transition: 0.5s !important
}


nav a.active {
  background-color:#1a8270;
  padding: 2px 8px;
  transition: 0.5s;
}

.nav-items a {
  font-size: 20px;
  text-decoration: none;
  color: white;
  padding: 0 10px; /* Ajustez le padding comme nécessaire */
  border-radius: 3px;
}

nav .checkBtn {
  font-size: 25px;
  line-height: 80px;
  margin-right: 10px;
  cursor: pointer;
  display: none;
}

.closeBtn {
  display: none;
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}


/*--------------------------------------------------------------
# Barre de Navigation
--------------------------------------------------------------*/

.brand-wrapper {
  display: flex;
  align-items: center;
}
.company-name {
  margin-left: 10px;
  color: #fcfffc;
    font-size: x-large;
}
.nav-link{
    color: #fcfffc;
    font-size: larger;
}

.main-item {
  color:#76EBCF!important; 
  position: relative;
}

.main-item::after {
  content: ""; /* a n'en a pas l'air mais sans ce "content" la ligne n'apparait pas */
  position: absolute;
  bottom: -2px; 
  left: 0;
  width: 100%;
  height: 2px; 
  background-color: #1a8270; 
}

.dropdown-menu-dark {
  background: #07100c!important;
  border-bottom: 1px solid #3B3B3B;
  border-left: 1px solid #3B3B3B;
  border-right: 1px solid #3B3B3B;
  font-size: large;
}
.nav-link:hover {
    color:#76EBCF!important;
}
nav{
    background: #07100c;
    border-bottom: 1px solid #3B3B3B;
    box-shadow: 0 15px 20px -16px rgba(0, 0, 0, 0.25);
}
.btn, .btn-dark {
  background: #1a8270!important;
  font-size: larger;
}
.btn:hover, .btn-dark:hover {
background: #6ee0c6c4!important;
}


.gradient-text {
  background: linear-gradient(to right, #76EBCF, #1a8270);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.icon-lang {
  padding-top: 0;
  padding-left: 0;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.icon-lang img {
  width: 30px;  /* ou la largeur que vous souhaitez */
  height: 30px; /* ou la hauteur que vous souhaitez */
}

.icon-lang:hover {
  transform: scale(1.2);
  filter: brightness(1.5);
}

.navbar-nav a, button {
  text-transform: uppercase;
}


/*--------------------------------------------------------------
# Intro
--------------------------------------------------------------*/

.header-intro{
 padding-bottom: 2rem;
}

/*--------------------------------------------------------------
# Carrière
--------------------------------------------------------------*/



.custom-accordion {
  background-color: #fcfffc;
  color: #07100c;
  font-size: 22px;
}

.custom-accordion:not(.collapsed) {
  background-color: #1a8271a6;
  color: #fcfffc;
}

.custom-accordion:focus {
  box-shadow: 0 0 0 0.25rem #1a8271a6; 
}
.accordion-button:not(.collapsed)::after {
  background-image: none;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Formulaire de contact
--------------------------------------------------------------*/

#contact {
  padding-top: 3rem;
  padding-bottom: 1rem;
    background: rgb(26,130,112);
background: linear-gradient(90deg, rgba(26,130,112,1) 0%, rgba(0,30,32,1) 100%);
position: relative;
font-size: 18px;
}

.fixed-heading {
    position: absolute;
    top: -103px;
    left: 50%;
    transform: translateX(-50%);
   
  }

  .fixed-heading span {
    color: rgb(26,130,112);
  }

.contact-intro {
  font-family: 'Allura', cursive;
  margin-bottom: 40px;
}
  
form span {
color: red;
}
  
.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
  
  
.form-group label {
  margin-bottom: 5px;
}
  
.form-group input,
.form-group select {
  width: 100%;
  border-radius: 0!important;
  box-shadow: 0 15px 30px -16px rgba(0, 0, 0, 0.25)!important;
}
  
.form-group input.invalid,
.form-group select.invalid {
  border-color: red;
}
  
input  {
  font-style: italic;
  background-color: #FCFFFC;
  font-size: 18px;
}
     
input.form-control:focus{
  border-color: #76EBCF; 
    
}

textarea {
  border-radius: 0!important;
  box-shadow: 0 15px 30px -16px rgba(0, 0, 0, 0.25)!important;
  resize: none;
}

textarea:focus{
  border-color: #76EBCF!important;

}

.btn-submit {
  background: #07100c;
  color: #f0f0f0;
  border-radius: 2px;
  border: none;
  font-size: larger;
  padding: 10px 20px;
  }
  
.btn-submit:hover {
  background: #1a8270;
  color: #f0f0f0;
  }

  #selectedFiles p {
    font-family: 'Oswald', sans-serif !important;
    font-weight: 500 !important;
  }

  /*--------------------------------------------------------------
# Reseau sociaux
--------------------------------------------------------------*/
#social {
  padding-top: 9rem;
  background: rgb(26,130,112);
  background: linear-gradient(90deg, rgba(26,130,112,1) 0%, rgba(0,30,32,1) 100%);
  height: 10px;
  padding-bottom: 8em !important;
}

.icon-box {
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-container {
  margin: 0 10px; /* Adjust the margin as you need, this will give a small space between the icons */
  max-width: 50px; /* or any maximum width you prefer for the icons */
  width: 100%;
  text-align: center;
}

.icon-container .social-icon {
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out; /* Appliquez la transition ici */
  color: #FCFFFC; /* Couleur initiale de l'icône */
}

.icon-container:hover .social-icon {
    color: #76EBCF; /* Couleur de survol */
    transform: scale(1.2); /* Agrandissement de l'icône */
  }

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.media {
  padding: 10px 0;
  text-align: center;
  background:white;
  text-transform: uppercase;
  
}

.media h4 {
  color: #1a8270;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: larger;
  border-bottom: 1px solid #3B3B3B;
  padding-bottom: 10px;
}

.media img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.media img:hover {
  filter: none;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .media img {
    max-width: 40%;
  }
}

footer {
  background: #07100c;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer p {
  font-family:'Poppins', sans-serif;
  font-size: 100%;
}

footer a {
  text-decoration: none;
  color: #1a8270;
}

footer a:hover {
  color: #76EBCF;
}

@media only screen and (max-width: 767px) and (orientation: portrait) {
  #pour-qui .li-content-right,
  #pour-qui .li-content-left {
      max-width: 100%;
      text-align: center;
  }

  #accueil .homepageBtn:hover {
      letter-spacing: normal; /* ou 0, selon ce que vous souhaitez */
      box-shadow: none;
  }

  #accueil .homepageBtn {
    margin-bottom: 10px; /* Ajoute un espace en bas de chaque bouton */
    display: block; /* Chaque bouton prend toute la largeur disponible */
    font-size: 1.2em;
    letter-spacing: 0.1em;
    font-weight: 300;
    padding: 10px 30px;
    color: white;
    background: #76EBCF;
  }

  #pour-qui {
    box-sizing: border-box;
    /* margin-top: 500px; */
    display: flex;
  }

  #pour-qui .li-img, #pour-qui .li-img2 {
      display: flex;
      align-items: center;
      justify-content: center;
  }

  #pour-qui .img-fluid {
      width: 80%;
  }

  #accueil .homepageBtn:before {
    background: #07100c;
  }

  #notre-approche .approcheInfo,  #notre-approche .approcheTitle{
    text-align: center;
  }

  #notre-approche .approcheTitle {
      padding-bottom: 15px;
  }

  header {
    height: auto;
  }

  nav .checkBtn {
    display: block; /* Affiché sur les appareils mobiles */
}

nav .nav-container {
    display: none; /* Caché par défaut sur les appareils mobiles */
    flex-direction: column;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #07100c;
    height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 0;/* Transition ajoutée pour transform *//* Transition pour un affichage en douceur */
}

nav .nav-container.active {
  display: flex;
  visibility: visible;
  animation: slideIn 1s ease-in-out forwards;
}

.closeBtn {
  color: #1a8270;
  display: none;
  animation: fadeIn 0.3s ease-in-out forwards;
}

nav .nav-container .nav-items {
line-height: 60px;
  padding: 0;
  margin: 0; /* Ajoute une marge verticale entre les éléments de la liste */
}

label.logo {
  padding-top: 10px;
  padding-bottom: 3px;
  font-size: 25px;
  padding-left: 10px;
}

.question h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 300 !important;
}

.answer p {
  font-family: 'Poppins', sans-serif;
  padding-top: 0.8rem;
  line-height: 1.6;
}
}

/* Téléphones en mode paysage */
@media only screen and (max-width: 930px) and (orientation: landscape) {
  #accueil .homepageBtn {
    margin-bottom: 10px; /* Ajoute un espace en bas de chaque bouton */
    display: block; /* Chaque bouton prend toute la largeur disponible */
  }

  #pour-qui {
    margin-top: 200px;
  }
  #pour-qui .li-img, #pour-qui .li-img2 {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #pour-qui .img-fluid {
      width: 50%;
  }

  #pour-qui .li-content-right,
    #pour-qui .li-content-left {
        max-width: 100%;
        text-align: center;
    }

    nav .checkBtn {
      display: block; /* Affiché sur les appareils mobiles */
  }
  
  nav .nav-container {
      display: none; /* Caché par défaut sur les appareils mobiles */
      flex-direction: column;
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      background-color: #07100c;
      height: 100vh;
      justify-content: center;
      align-items: center;
      padding: 0;/* Transition ajoutée pour transform *//* Transition pour un affichage en douceur */
  }
  
  nav .nav-container.active {
    display: flex;
    visibility: visible;
    animation: slideIn 1s ease-in-out forwards;
  }
  
  .closeBtn {
    color: #1a8270;
    display: none;
    animation: fadeIn 0.3s ease-in-out forwards;
  }
  
  nav .nav-container .nav-items {
  line-height: 35px;
    padding: 0;
    margin: 0; /* Ajoute une marge verticale entre les éléments de la liste */
  }

  label.logo {
    padding-top: 10px;
    font-size: 15px;
    padding-left: 10px;
  }

  #accueil .homepageBtn:hover {
    letter-spacing: normal; /* ou 0, selon ce que vous souhaitez */
    box-shadow: none;
}

  #accueil .homepageBtn {
  margin-bottom: 10px; /* Ajoute un espace en bas de chaque bouton */
  display: block; /* Chaque bouton prend toute la largeur disponible */
  font-size: 1.2em;
  letter-spacing: 0.1em;
  font-weight: 300;
  padding: 10px 30px;
  color: white;
  background: #76EBCF;
}
}


/* Tablettes en mode portrait */
@media only screen and (min-width: 768px) and (max-width: 1030px) and (orientation: portrait) {
  #accueil .homepageBtn {
    margin-bottom: 10px; /* Ajoute un espace en bas de chaque bouton */
    display: block; /* Chaque bouton prend toute la largeur disponible */
  }

  #accueil .homepageBtn:hover {
    letter-spacing: normal; /* ou 0, selon ce que vous souhaitez */
    box-shadow: none;
}

#accueil .homepageBtn {
  margin-bottom: 10px; /* Ajoute un espace en bas de chaque bouton */
  display: block; /* Chaque bouton prend toute la largeur disponible */
  font-size: 1.2em;
  letter-spacing: 0.1em;
  font-weight: 300;
  padding: 10px 30px;
  color: white;
  background: #76EBCF;
}
  
  nav .checkBtn {
    display: block; /* Affiché sur les appareils mobiles */
}

nav .nav-container {
    display: none; /* Caché par défaut sur les appareils mobiles */
    flex-direction: column;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #07100c;
    height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 0;/* Transition ajoutée pour transform *//* Transition pour un affichage en douceur */
}

nav .nav-container.active {
  display: flex;
  visibility: visible;
  animation: slideIn 1s ease-in-out forwards;
}

.closeBtn {
  color: #1a8270;
  display: none;
  animation: fadeIn 0.3s ease-in-out forwards;
}

nav .nav-container .nav-items {
line-height: 60px;
  padding: 0;
  margin: 0; /* Ajoute une marge verticale entre les éléments de la liste */
}

label.logo {
  padding-top: 10px;
  font-size: 15px;
  padding-left: 10px;
}

.question h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 300 !important;
}

.answer p {
  font-family: 'Poppins', sans-serif;
  padding-top: 0.8rem;
  line-height: 1.6;
}

.homepageBtn:hover {
  color: initial;
  background: initial;
  letter-spacing: normal;
  box-shadow: none;
}

}

/* Tablettes en mode paysage */
@media only screen and (min-width: 768px) and (max-width: 1190px) and (orientation: landscape) {
  #accueil .homepageBtn:hover {
    letter-spacing: normal; /* ou 0, selon ce que vous souhaitez */
    box-shadow: none;
  }

  #accueil .homepageBtn {
  margin-bottom: 10px; /* Ajoute un espace en bas de chaque bouton */
  display: block; /* Chaque bouton prend toute la largeur disponible */
  font-size: 1.2em;
  letter-spacing: 0.1em;
  font-weight: 300;
  padding: 10px 30px;
  color: white;
  background: #76EBCF;
  }

  nav .checkBtn {
    display: block; /* Affiché sur les appareils mobiles */
  }

  nav .nav-container {
    display: none; /* Caché par défaut sur les appareils mobiles */
    flex-direction: column;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #07100c;
    height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 0;/* Transition ajoutée pour transform *//* Transition pour un affichage en douceur */
  }

  nav .nav-container.active {
  display: flex;
  visibility: visible;
  animation: slideIn 1s ease-in-out forwards;
  }

  .closeBtn {
  color: #1a8270;
  display: none;
  animation: fadeIn 0.3s ease-in-out forwards;
  }

  nav .nav-container .nav-items {
  line-height: 35px;
  padding: 0;
  margin: 0; /* Ajoute une marge verticale entre les éléments de la liste */
  }

  label.logo {
  padding-top: 10px;
  font-size: 15px;
  padding-left: 10px;
  }


}

/* Petits écrans d'ordinateur et tablettes en mode paysage */
@media only screen and (min-width: 993px) and (max-width: 1199px) {
    #accueil .homepageBtn:hover {
        letter-spacing: 0.15em;
        box-shadow: 0 0 15px #1a8270;
    }

    label.logo {
      font-size: 10px;
      padding-left: 30px;
    }
    
    .nav-items a {
      font-size: 14px;
    }
}

/* Écrans d'ordinateur de taille moyenne à grande */
@media only screen and (max-width: 1200px) {
  
}

@media (min-height : 365px), (min-height : 365px) and (orientation: landscape) {
  label.logo {
    font-size: 25px;
    padding-left: 0px;
  }
}

@media (max-width : 355px) and (orientation : portrait) {
  label.logo {
    font-size: 0;
    padding-left: 0px;
  }

  .homepageBtn {
    position: relative;
    background: white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.1em;
    letter-spacing: 0.1em;
    font-weight: 400;
    margin: 90px;
    padding: 10px 30px;
    transition: 0.5s;
  }

}
