
@keyframes moveUp {
    0% {
    transform: translateY(10);
    }
    
    50% {
    transform: translateY(-30px);
    }
    100% {
    transform: translateY(10);
    }
    }

    
@keyframes changeborder{
  0%{
  border-radius: 0%;
  }
  25%{
  border-radius: 50%;
  }
  75%{
  border-radius: 0%;
  }
  100%{
  border-radius: 50%;
  }
}

@keyframes changebordure{
  0%{
  border-radius: 5% 5% 5% 5%;
  }
  25%{
  border-radius: 50% 50% 50% 50%;
  }
  75%{
  border-radius: 5% 15% 15% 5%;
  }
  100%{
  border-radius: 5%;
  }
}

.img-apropos{
  border: 5px solid #FF6F00;
  animation: changeborder 10s ease-in-out infinite alternate-reverse both;
}

.img_scale{
      animation: moveUp 3s infinite, changeborder 10s ease-in-out infinite alternate-reverse both;
}
  body::-webkit-scrollbar {
      background-color: rgb(255, 255, 255);
      width: 12px;
      border-radius: 50px;
      cursor: pointer;
  }


  body::-webkit-scrollbar-thumb {
      background-color:#FF6F00; 
      border-radius: 50px;
      cursor: pointer;
  }
  .sidebar::-webkit-scrollbar {
      background-color: rgb(255, 255, 255);
      width: 9px;
      border-radius: 50px;
      cursor: pointer;
  }



  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }

  .img-membre-equipe{
    height:205px
  }
 
 @media(max-width:968px){
  .img-membre-equipe{
    height:350px;
  }
 }



/* barre de navigation fixée en bas */
.navbarbot {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FF6F00;
  padding: 5px 5px;
  z-index: 999;
}

.navbarbot a {
  color: #FF6F00;
  text-decoration: none;
}

.navbarbot a:hover {
  color: #FF6F00;
  text-decoration: none;
}

.ico {
  text-align: center;
}

.ico i {
  width: 50px;
  height: 50px;
  font-size: 28px;
}

.icon-title {
  font-size: 12px;
}

.navbarbot {
  display: none;
}

@media(max-width:986px) {
  .navbarbot {
      display: block;
      display: flex;
  }
  .scroll-top{
    margin-bottom: 70px;
  }

}

/*Barre de recherche*/

.search-bar {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #FF6F00;
  padding: 30px;
  z-index: 9999;
  transition: all 0.5s ease;
}
@media(max-width:986px){
  .search-bar{
    padding:20px;
  }
}
.search-bar.active {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-input {
  width: 80%;
  padding: 10px;
  font-size: 16px;
}
.form-search{
  width: 90%;
}
@media(max-width:986px){
  .form-search{
    width: 65%;
  }
  .img-membre-equipe{
    height: 210px;
  }
 
}
.img-membre-equipe:hover{
  transform: scale(1.2);
  transition: .3s;
  cursor: pointer;
  border-radius: 50%;
}
.langue{
  
  right: 45px;
  top: 90px;
  z-index: 99999;
  width: 44px;
  height: 44px;
  border-radius: 5px;
  transition: all 0.4s;
}
@media(max-width:986px){
  .langue{
    top:70px;
  }
}


.form-control-select {

    font-size: 16px;
    border: 2px solid #FF6F00;
    border-radius: 5px; 
    background-color: #f8f9fa; 

}

.form-control-select:focus {
    border-color: #FF6F00;
    box-shadow: 0 0 5px #FF6F00; 
    outline: none; 
}

.form-control-select option {
    padding: 10px; 
}

/* partie conditions */

.conditions h3{
  font-weight: bold;
  color: #FF6F00;
}
@media(max-width:986px){
  .conditions h3{
    text-align: center;
  }
}
.conditions p{
  font-weight: 300;
}
/* partie politique */
.politique h3{
  font-weight: bold;
  color: #FF6F00;
}
@media(max-width:986px){
  .politique h3{
    text-align: center;
  }
}
.politique p{
  font-weight: 300;
}
:root {
  --link-size: 50px; 
  --trans-property: all 0.3s ease;
}
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon {
  display: flex;
  position: relative;
  overflow: hidden; 
  width: var(--link-size);
  height: var(--link-size);
  margin: 8px;
  
  border-radius: 50%;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.12);
  text-decoration: none;
  transition: var(--trans-property);
}
.social-icon i {
  margin: auto;
  font-size: 20px;
  color: #67798e;
  z-index: 1; 
  transition: var(--trans-property);
}
.social-icon:after {
  content: "";
  width: var(--link-size);
  height: var(--link-size);
  position: absolute;
  transform: translate(0, var(--link-size));
  border-radius: 50%;
  transition: var(--trans-property);
}
.social-icon.twitter {
  background-color: #1da1f2;

}
.social-icon.whatsapp {
  background-color: #25d366;
}
.social-icon.pinterest {
  background-color: #bd081c;
}
.social-icon.linkedin {
  background-color: #FF6F00;
}
.social-icon.facebook {
  background-color: #FF6F00;
}
/*** Animations ***/
.social-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.16);
}
.social-icon i {
  color: #fff;
}
.social-icon:hover:after {
  transform: translate(0) scale(1.2);
}
      
       
.contact input {
  margin-bottom: 10px;
  height: 55px; 
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.contact input:focus {
  border-color: #FF6F00;
  box-shadow: 0 0 5px rgba(13, 102, 255, 0.3);
}
.contact textarea:focus {
  border-color: #FF6F00;
  box-shadow: 0 0 5px rgba(13, 102, 255, 0.3);
}


.bloc_welcome{
  margin-top: 40px;
}
.bloc_welcome h1{
  color: #FF6F00;
}