html {
  scroll-behavior: smooth;
}


* {
  margin: 0;
  padding: 0;
}

body {
  background-color: rgb(255, 255, 255);
}

/*Nav barre*/
nav ul {
  list-style-type: none;
  transition: .5s;

}

nav li {
  float: right;
  width: 12%;
  text-align: center;
  list-style: none;

}

nav ul::after {
  content: "";
  display: table;
  clear: both;
}

nav {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  /* Aligner les éléments à droite */
  align-items: center;
  flex-direction: column;
  position: fixed;
  transition: .5s;
  z-index: 100;
}


.nav_text {
  color : white;
  display: block;
  text-decoration: none;
  font-size: 30px;
  font: 30px "Fira Sans", sans-serif;
  font-weight: bold;
  text-align: center;
  padding-top: 30px;
  margin-bottom: 30px;
  transition: .5s;
  /* temps de transition lors du hover : une demi s */

}

.nav_text.scrollActive {
  color: black; 
  display: block;
  text-decoration: none;
  font-size: 30px;
  font: 30px "Fira Sans", sans-serif;
  font-weight: bold;
  text-align: center;
  padding-top: 30px;
  margin-bottom: 30px;
  transition: .5s;
  /* temps de transition lors du hover : une demi s */

}


.nav_text:hover {
  color: rgb(89, 27, 114);
}

.nav_co {
  height: 20px;
  display: block;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  padding-top: 30px;
  margin-bottom: 30px;
  transition: .5s;

}
.rectangle_nav-barre {
  width: 100%;


}

.img {
  width: 200px;
  list-style: none;
  padding-top: 23px;
  margin-left: 20px;

}

  #img_mobile{
      display : none;
  }


  #img_pc{
      float : left;
      display : block;
  }

.text_nav_img {
  Font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, sans-serif;
  text-align: center;
  color: white;
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.2;
  /* Augmentez cette valeur pour créer plus d'espace entre les lignes */
  display: inline-block;
  /* Afficher les paragraphes en tant que blocs en ligne */
}

.apropos_text{
    font-size : 2vw;
}
.apropos{
    width : 90%;
}



.colonne {
  margin-bottom: 80px;
  margin-top: 80px;
  width: 25%;
  height: 800px;
  border: 1px solid black;
  display: inline-block;
  vertical-align: top; /* Alignement vertical en haut */
  transition: all 0.4s ease-out;
  border-radius: 5px;
}
.colonne:hover{
  margin-top: 70px;
  margin-bottom: 90px;
}


.portfolio {
  width: 350px;
  height: 350px;
  border: 1px solid rgb(89, 27, 114);
  display: inline-block;
  margin-bottom: 80px;
  position: relative;
  color: rgb(89, 27, 114);
  transition: all 0.4s ease-out;
  border-radius: 5px;
}

.portfolio:hover {
  background-color: rgb(89, 27, 114);
  color: white;
}

.portfolio_text {
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, sans-serif;
  font-size: 4vw;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 700;

}

@media only screen and (min-width: 100px) and (max-width: 1150px) {


.portfolio {
  width: 250px;
  height: 250px;

}

.portfolio_text {
  font-size: 5vw;
}



.colonne {
  margin-bottom: 80px;
  margin-top: 80px;
  width: 60%;
  height: 800px;
  border: 1px solid black;
  display: block;
  vertical-align: top; /* Alignement vertical en haut */
  transition: all 0.4s ease-out;
  border-radius: 5px;
}
.colonne:hover{
  margin-top: 70px;
  margin-bottom: 90px;
}

  .apropos_text{
    font-size : 3vw;
  }

  nav {
    width: 100%;
    margin: 0 auto;
    display: block;
    transition: .5s;
    z-index: 100;
    
  }

  nav ul {
    display: none;

  }

  nav li {
    width: 100%;
    float: none;
    list-style: none;
  }

  .menu-toggle {
    width: 30px;
    height: 24px;
    cursor: pointer;
    position: relative;
    float: right;
    /* Aligner le bouton à droite */
    margin-top: 30px;
    margin-right: 30px;



  }

  .menu-toggle span {
    width: 100%;
    height: 4px;
    background-color: #000000;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.3s ease-in-out;
    display: block;


  }

  .menu-toggle span::before,
  .menu-toggle span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: rgb(0, 0, 0);
    transition: transform 0.3s ease-in-out;
  }


  .menu-toggle span::before {
    transform: translateY(10px);
  }

  .menu-toggle span::after {
    transform: translateY(-10px);
  }

  .menu-toggle.active span {
    background-color: transparent;
  }

  .menu-toggle.active span::before {
    transform: translateY(0px) rotateZ(45deg);
  }

  .menu-toggle.active span::after {
    transform: translateY(0px) rotateZ(-45deg);
  }

  nav ul.show {
    display: block;
    margin-top: 75px;
  }

  li img {
    float: left;
    margin-right: 10px;
    width: 1px;
    list-style: none;
    padding-left: 20px;
  }

  .img {
    width: 150px;
    list-style: none;
    padding-top: 20px;
    padding-bottom: 19px;

  }

  .nav_text {
    --color-default: white;
    --color-hover: rgb(89, 27, 114);
    color: var(--color-default);
    display: block;
    text-decoration: none;
    font: 20px "Fira Sans", sans-serif;
    font-weight: bold;
    text-align: center;
    padding-top: 15px;
    margin-bottom: 15px;
    transition: .5s;
    /* temps de transition lors du hover : une demi s */

  }
  
  
   #img_mobile{
      display : block;

  }


    #img_pc{
        float : none;
      display : none;
  }
    
    .text_nav_img{
        font-size : 10vw;
    }

}


.img_fond {
  background-image: linear-gradient(to right, #4372fe, #b01fff);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

}



.text_colonne{
  Font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: rgb(89, 27, 114);
  text-align: center;
  margin-top: 20px;
}

.text_colonne2{
  font-size: 20px;
  Font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, sans-serif;
  color: #1a1a1a;
  line-height: 3;
  text-align: center;


}

.espace{
  margin-top: 60px;
}

.croix{
  width: 30px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.button_tabl{
  margin-top: 20px;
  width: 100px;
  font-size: 20px;
  background-color: rgb(89, 27, 114);
  color: white;
  height: 60px;
  border: 3px solid transparent;
  transition: all 0.4s ease-out;
  border-radius: 5px;
}

.button_tabl:hover{
  color: rgb(89, 27, 114);
  background-color: white;
  border-color:rgb(89, 27, 114) ;
}


.apropos {
  display: flex; /* Active le mode flexbox pour le conteneur */
  align-items: center; /* Centre les éléments verticalement */
  justify-content: center; /* Centre les éléments horizontalement */
  text-align: center; /* Centre le texte à l'intérieur du conteneur */
  margin-bottom: 80px;
}

.apropos_img {
  margin-right: 10px; /* Ajoute une marge à droite de l'image pour l'espace */
}

.apropos_text {
  margin-left: 10px; /* Ajoute une marge à gauche du texte pour l'espace */
  text-align: center;
  Font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, sans-serif;

}

.h1_apropos{
  Font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, sans-serif;
  color: rgb(89, 27, 114);
  font-size: 40px;
  margin-bottom: 20px;
  margin-top: 80px;
}



footer{
  text-align: center;
  padding-bottom: 40px;
  padding-top: 40px;
  background-image: linear-gradient(to right, #4372fe, #b01fff);
  font-size: 25px;
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, sans-serif;
}

.champ{
  width: 80%;
  height: 80px;
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, sans-serif;
  font-size: 25px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 2px solid rgb(89, 27, 114);
  padding-left: 10px;
}

.champ_message{
  width: 80%;
  height: 300px;
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, sans-serif;
  font-size: 25px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 2px solid rgb(89, 27, 114);
  padding-left: 10px;
  padding-top: 10px;
}


.btn_contact{
  margin-top: 20px;
  width: 200px;
  font-size: 30px;
  background-color: rgb(89, 27, 114);
  color: white;
  height: 80px;
  border: 3px solid transparent;
  transition: all 0.4s ease-out;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: 500;
}

.btn_contact:hover{
  color: rgb(89, 27, 114);
  background-color: white;
  border-color:rgb(89, 27, 114) ;
}

.text_form{
  width: 80%;
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, sans-serif;
  font-size: 25px ;
  font-weight: 500;

}

.form-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 70%;
  text-align: center;
}

.form-container form {
  width: 45%;
}
.enregistrementbtn {
  margin-top: 20px;
  width: 200px;
  font-size: 30px;
  background-color: rgb(89, 27, 114);
  color: white;
  height: 80px;
  border: 3px solid transparent;
  transition: all 0.4s ease-out;
  border-radius: 5px;
  margin-bottom: 20px;
  font-weight: 500;
  display: block;
  margin: 0 auto;
}

.enregistrementbtn:hover {
  color: rgb(89, 27, 114);
  background-color: white;
  border-color: rgb(89, 27, 114);
}

.enregistrement_zonetext{
  width: 200%;
  height: 60px;
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, sans-serif;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 2px solid rgb(89, 27, 114);
  padding-left: 10px;



}


.connexion_zonetext{
  width: 200%;
  height: 60px;
  font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, sans-serif;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 2px solid rgb(89, 27, 114);
  padding-left: 10px;

}

.espaceConnexion{


  margin-bottom: 105px;
}