@import url('https://fonts.googleapis.com/css2?family=Anek+Kannada&family=GFS+Neohellenic&family=Montserrat:wght@100;400&family=Open+Sans&family=Oxygen:wght@300&family=Raleway:wght@200&display=swap');

.loader_bg {
    position: fixed;
    z-index: 999999;
    background: #fff;
    width: 100%;
    height: 100%
 }
 
 .loader {
     border: 0 solid transparent;
     border-radius: 50%;
     width: 150px;
     height: 150px;
     position: absolute;
     top: calc(50vh - 75px);
     left: calc(50vw - 75px);
  }
 
  .loader:before, .loader:after {
     content: '';
     border: 1em solid rgb(233, 194, 108);
     border-radius: 50%;
     width: inherit;
     height: inherit;
     position: absolute;
     top: 0;
     left: 0;
     animation: loader 2s linear infinite;
     opacity: 0;
  }
 
  .loader:before {
     animation-delay: .5s;
  }
  @keyframes loader {
     0% {
         transform: scale(0);
         opacity: 0;
     }
 
     50% {
         opacity: 1;
     }
 
     100% {
         transform: scale(1);
         opacity: 0;
     }
  }

:root {
    --primary-color: rgb(233, 194, 108);
    --white-color: #fff;
    --light-color: #ced6e0;
    --dark-color: darkgray;
    --box-shadow: rgb(0 0 2 / 35%) 0px 20px 30px -10px;
} 

*,::before,::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

a, button, div[role="button"] {
    -webkit-tap-highlight-color: transparent;
}

ul {list-style: none}
h1,h2,h3,h4 {font-weight: 500;line-height: normal;}
h1 {font-size: 2.5em}
h2 {font-size: 2em}
h3 {font-size: 1.5em}
h4 {font-size: 1em}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
} 
    
.body{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: none;
    color: var(--dark-color);
    padding-bottom: 50px;
    background-color: var(--white-color);
}

.containere {
    max-width: 1460px;
    margin: 0 auto;
} 

.nav {
    position: absolute;
    background-color: white;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
} 

.nav .containere {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease-in-out;
} 


header nav a ul{
  display: flex;
  list-style-type: none;
  align-items: center;
  justify-content: center;
}

header nav a {
  display: flex;
  color: rgb(233, 194, 108);
  text-decoration: none;
  padding: 7px 15px;
  transition: all 0.3s ease-in-out;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
 }

  .nav a.current,
  .nav a:hover{
    color: darkgray;
  }

  header nav .onglets ul{
    display: flex;
  }

  header nav a i{
    display: none;
   }

  header nav .menu-level {
    display: none;
    position: absolute;
    top: 49px;
    right: 22px;
    width: 35px;
   }

  @media screen and (max-width: 768px){
    .nav {
      padding: 48px;
     }

     header nav .logo {
      position: absolute;
      top: 20px;
      left: 22px;
     }

    header nav .menu-level {
        display: block;
        font-size: 22px;
        color: rgb(233, 194, 108);
        }

    nav .onglets{
      top: 0;
      left: 0;
      position: absolute;
      background-color: rgba(0,0,0,.2);
      backdrop-filter: blur(8px);
      width: 100%;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      margin-left: -100%;
      transition: all 0.5s ease;
    }

    header nav .onglets ul{
      flex-direction: column;
    }

    header nav .mobile-menu {
      margin-left: 0;
     }

    nav .onglets a {
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 15px 15px;
      font-size: 15px;
      font-weight: 600;
    }

    nav .onglets i {
      font-size: 1.3em;
      display: flex;
      align-items: center;
      text-align: center;
      justify-content: center;
    }
  }

 .premieres-presentations{
        margin-left: 12%;
        background-color: white;
        color: darkgray;
        padding: 90px;
        display: flex;
        flex-wrap: wrap;
      }

    .premieres-presentations .gauche img {
        height: 370px;
        width: 360px;
        object-fit: cover;
      }

    .premieres-presentations .droite{
        width: 50%;
        margin-left: 47px;
        margin-top: 25px;
      }

    .premieres-presentations .droite h1{
        margin-bottom: 20px;
        font-size: 40px;
        font-weight: 500;
      }

    .premieres-presentations .droite p{
        margin-bottom: 20px;
        font-size: 17px;
        font-weight: 500;
      }

    .premieres-presentations .droite img{
        margin-bottom: 1px;
        height: 100px;
      }

    .premieres-presentations .droite h3{
        margin-bottom: 0px;
        color: rgb(233, 194, 108);
        font-weight: 300;
      }

    .premieres-presentations .droite a{
        color: darkgray;
        font-size: 15px;
        margin-left: none;
        cursor: pointer;
        transition:ease-out 400ms;
        transition: transform 0.2s ease;
       }

    .premieres-presentations .droite a:hover{
        color:rgb(233, 194, 108);
        transform: scale(1.03);
       }  
       
    .premieres-presentations .droite a:active{
        transform: scale(0.96);
       }  


      .premieres-presentations .droite h4{
        margin-top: 1px;
        margin-bottom: 10px;
        font-weight: 400;
      }
    
      @media screen and (max-width: 810px){

        .premieres-presentations{
          padding: 20px;
          margin-left: 0;
        }
    
        .premieres-presentations .droite{
           width: 100%;
           margin-left: 0;
        }
        .premieres-presentations .gauche{
           display: block;
           margin-left: 0;
           margin-right: auto;
         }

         .premieres-presentations .gauche img {
          height: 270px;
          width: 260px;
          object-fit: cover;
        }
      }


    .deuxieme h1 {
        background-color: whitesmoke;
        padding: 100px;
        font-size: 40px;
        font-weight: 800;
        text-align: center;
        color:darkgray;
      } 

      @media screen and (max-width: 768px){

        .deuxieme h1 {
          padding: 20px;
          margin-top: 100px;
        } 
      }

    .deuxieme-presentations {
        background-color:#fff;
        color:darkgray;
        padding: 40px;
        display: flex;
        flex-wrap: wrap;
        font-size: 17px;
        margin-bottom: 1px;
        text-align: center;
        justify-content: center;
      }

    .deuxieme-presentations .gauche {
        width: 35%;
        margin-right: 30px;
        margin-left: 30px;
      }

    .deuxieme-presentations .gauche p {
        font-size: 17px;
        margin-top: 10px;
        text-align: left;
      }

    .deuxieme-presentations .droite {
        width: 35%;
        margin-right: 30px;
        margin-left: 30px;
      }

    .deuxieme-presentations .droite p {
        font-size: 17px;
        margin-top: 10px;
        margin-bottom: 20px;
        text-align: left;
      }

    .deuxieme-presentations .droite button {
        text-decoration: none;
        display: inline-block;
        background-color:#fff;
        color:rgb(233, 194, 108);
        font-weight: calc(2.5);
        padding: 12px 15px;
        border: 2px solid rgb(233, 194, 108);
        border-radius: 50px;
        margin-top: 8px;
        font-size: 13px;
        outline: none;
        cursor: pointer;
        transition: transform 0.2s ease;
       }  
    
    .deuxieme-presentations .droite button:hover{
        background-color:rgb(233, 194, 108);
        color:#fff;
       } 
       
    .deuxieme-presentations .droite button:active{
        transform: scale(0.96);
       } 

    @media screen and (max-width: 768px){
        .deuxieme-presentations {
          padding: 20px;
      }
        .deuxieme-presentations .gauche {
           width: 100%;
           margin-right: 0;
           margin-left: 0;
        }
        .deuxieme-presentations .droite {
            width: 100%;
            margin-right: 0;
            margin-left: 0;
         }
      }  

.Chain h1 {
    padding: 60px;
    background-color: white;
    color:darkgray;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    line-height: 23px;      
  } 

.Chain h1 span {
    color: white;
    background-color: rgb(233, 194, 108);
    font-weight: 800;
   
  } 

  @media screen and (max-width: 576px){
    
    .Chain h1 {
      margin-top: 25px;
      padding: 20px;
      font-size: 30px;
    } 
  }  

/* --- Start progress bar --- */

.process-wrapper {
    margin: auto;
    max-width: 1080px;
  } 

#progress-bar-container {
    position: relative;
    width: 100%;
    margin: auto;
    height: 100px;
    margin-top: 59px;     
  } 

#progress-bar-container ul {
    padding: 0;   
    margin: 0;
    padding-top: 15px;
    z-index: 9999;
    position: absolute;
    width: 100%;
    margin-top: -40px;
  } 

#progress-bar-container li:before {
    content: "";
    display: block;
    margin: auto;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: solid 2px rgb(233, 194, 108);
    transition: all ease 0.3s;
  } 

#progress-bar-container li.active:before,
#progress-bar-container li:hover:before {
  background: rgb(233, 194, 108);
  } 

#progress-bar-container li {
   list-style: none;
   float: left;
   width: 25%;
   text-align: center;
   color: darkgray;
   font-size: 18px;
   cursor: pointer;
   font-weight: 550;
   transition: all ease 0.2s;
   vertical-align: bottom;
   height: 59px;
   position: relative;
   transition: transform 0.2s ease;
  } 

#progress-bar-container li:active {
    transform: scale(0.96);
   } 

#progress-bar-container li .step-inner {
    position: absolute;
    width: 100%;
    bottom: 0;
    font-size: 18px;
   } 

#progress-bar-container li.active,
#progress-bar-container li:hover {
    color: rgb(233, 194, 108);
    } 

#progress-bar-container li:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: darkgray;
    margin: auto;
    border: solid 7px whitesmoke;
    border-radius: 50%;
    margin-top: 52px;
    box-shadow: 0 2px 13px -1px darkgray;
    transition: all ease 0.2s;
    } 

#progress-bar-container li:hover:after {
     background: rgb(233, 194, 108);
   } 

#progress-bar-container li.active:after {
    background: rgb(233, 194, 108);
  } 

#progress-bar-container #line {
    width: 80%;
    margin: auto;
    background: whitesmoke;
    height: 5px;
    position: absolute;
    left: 10%;
    top: 57px;
    z-index: 1;
    border-radius: 50px;
    transition: all ease 0.9s;
  } 

#progress-bar-container #line-progress {
    content: "";
    width: 3%;
    height: 125%;
    background: rgb(233, 194, 108);
    background: linear-gradient(to right,  rgb(233, 194, 108) 0%, rgb(233, 194, 108) 100%);
    position: absolute;   
    z-index: 2;
    border-radius: 50px;
    transition: all ease 0.9s;    
  } 

  @media screen and (max-width: 460px){

      #progress-bar-container li:before {
         width: 20px;
         height: 20px;
    } 
  
      #progress-bar-container li {
          font-size: 13.5px;
         } 

      #progress-bar-container li .step-inner {
          font-size: 13.5px;
         } 
  }  

#progress-content-section {
    width: 80%;
    margin: auto;
    background: whitesmoke;
    border-radius: 4px;    
  } 

#progress-content-section .section-content {
    padding: 50px 60px;
    margin-bottom: 100px;
    text-align: center;
  } 

  @media screen and (max-width: 768px){

    #progress-content-section .section-content {
      padding: 15px 15px;
    } 
}  

#progress-content-section .section-content img {
	height: 50px;
}

#progress-content-section .section-content h2 {
  padding: 10px 0;
  border-bottom: 1px solid #dbdaff;
	font-size:18px;
	font-weight: 600;
  margin-bottom: 15px;
	color:darkgray;
}

#progress-content-section .section-content p {
	font: size 17px;
	color: darkgray;
  margin-bottom: 15px;
}

#progress-content-section .section-content {
	display:none;
	animation: FadeInUp 700ms ease 1;
	animation-fill-mode:forwards;
	transform:translateY(15px);
	opacity:0;
}

#progress-content-section .section-content.active {
	display:block;
}

  @keyframes FadeInUp {
	  0% {
		  transform:translateY(15px);
		  opacity:0;
	  }
	
	  100% {
	 	  transform:translateY(0px);
		  opacity:1;
	  }
    }

.Online {
    padding: 150px;
    display: grid;
    height: 100%;
    place-items: center;
    text-align: center;
    background-image: url('C:/Users/hp/Documents/VF/LEVEL/Documents officiels/Imagine Site/Progres.jpg');
   }

.Online h1{
    padding: 46px;
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    color: white;
   }

   @media screen and (max-width: 768px){

    .Online {
      padding: 20px;
     }

     .Online h1{
      padding: 20px;
     }
  }

.Boitier {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
   }

.Boitier .icon {
    width: 201.5px;
    margin: 0 5px;
    cursor: pointer;
   }

.Boitier .icon .counter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 9px 0;
   }

.counter .numb,  .counter .plus {
    font-size: 25px;
    font-weight: 600;
    font-family: sans-serif;
    color: #fff;
   }

.counter .plus {
    padding: 0 2px;
}

.Boitier .icon .texte {
    font-size: 20px;
    font-weight: 600;
    margin-top: -30px;
    opacity: 0;
    z-index: -1;
    transition: margin-top 0.4s, opacity 0.4s, z-index 0.4s;
    font-family: 'Montserrat', sans-serif;
   }

.Boitier .icon .texte.show {
    margin-top: -5px;
    opacity: 1;
    z-index: 1;
   }

.twitter {
    color: #1DA1F2;
   }

.fb {
    color: #4867AA;
   }

.linkedin {
    color: #0A66C2;
   }

.insta {
    color: #E1306C;
   }

.yt {
    color: #FF0000;
   }

.équipe {
    background-color:whitesmoke;
    color:darkgray;
    padding: 100px;
    margin-left: none;
    margin-bottom: 1px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
   }
    
.équipe h1{
    font-size: 40px;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 15px;
   }
    
.équipe h1, .équipe p{
    text-align: center;
   }
    
.équipe p{
    width: 35%;
    text-align: center;
    margin-left: 32%;
   }
    
.équipe .équipe-cartes{
    width: 100%;
    background-color:whitesmoke;
    color:darkgray;
    margin-top: 50px;
    margin-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
   }
    
.équipe .équipe-cartes h1{
    font-size: 17px;
    margin-bottom: 1px;
    margin-top: 30px;
   }
    
.équipe .équipe-cartes .carte{
    background-color:#fff;
    color: none;
    height: 500px;
    width: 303.5px;
    max-width: 303.51px;
    min-width: 303.49px;
    margin-top: 12px;
    margin-bottom: 12px;
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 25px;
    object-fit: cover;
    justify-content: center;
    transition:ease-out 400ms;
   }  
    
.équipe .équipe-cartes .carte:hover{
    transform: scale(1.03);
   } 
    
.équipe .équipe-cartes .carte img{
    height: 391px;
   }  

.équipe .équipe-cartes .carte a{
    color: rgb(233, 194, 108);
    transition: transform 0.2s ease;
   }  

.équipe .équipe-cartes .carte a:active{
    transform: scale(0.96);
   }  
    
.équipe .équipe-cartes .carte p{
    width: 104%;
    text-align:center;
    margin-left: 1px;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
   }  

   @media screen and (max-width: 768px){

    .équipe {
      margin-top: 100px;
      padding: 20px;
     }

     .équipe .équipe-cartes {
      flex-direction: column;
     } 

     .équipe .équipe-cartes .carte{
      height: 435px;
      width: 248px;
      max-width: 248.1px;
      min-width: 247.9px;
     }  

     .équipe .équipe-cartes .carte img{
      height: 320px;
     }  
  } 

    /*:::::footer*/

   .footers{
    background-color: white;
    color:darkgray;
    padding: 4px;
    margin-left: none;
    margin-bottom: 1px;
   }

   .footers .group-1 {
    background-color:#fff;
    color:darkgray;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
   }

   .footers .group-1 .boite {
    background-color: none;
    color: none;
    padding: 21px;
    height: 100px;
    width: 32%;
   } 

   .footers .group-1 .boite img {
    height: 65px;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
   }  

   .footers .group-1 .boite h3 {
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1px;
   }  

   .footers .group-1 .boite .Social-network a {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    width: 7px;
    height: 7px;
    line-height: 1px;
    padding: 13px 13px;
    margin-right: 0.1px;
    margin-top: 1px;
    cursor: pointer;
    transition: all 300ms ease;
    transition: transform 0.2s ease;
   }  

   .footers .group-1 .boite .Social-network a:hover{
    color:rgb(233, 194, 108);
    transform: scale(1.05);
   } 
   
   .footers .group-1 .boite .Social-network a:active{
    transform: scale(0.96);
   }  

   .footers .group-1 .boite small {
    padding: 18px;
    text-align: center;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
   }

   @media screen and (max-width:800px){
    .footers .group-1 {
       width: 90%;
       grid-template-columns: repeat(1, 1fr);
       grid-gap: 20px;
       padding: 25px 0px;
       }
    
   }