@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}

body{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: none;
    color: var(--dark-color);
    background-color: var(--white-color);
}

html{
  scroll-behavior: smooth;
}

header{
  width: 100%;
  height: 100vh;
  position: relative;
  color: #fff;
  text-align: center;
  align-items: center;
  justify-content: center;
} 

header nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 29px;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

header nav a {
  color: #fff;
  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;
  }

header nav a.current,
header nav a:hover{
  color: darkgray;
}

.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;
  }

header nav a i{
  display: none;
 }

.uil-bell {
  top: 0;
  position: absolute;
  margin-top: 60px;
  background: rgba(0,0,0,.2);
  border-radius: 50px;
  display: flex;
  padding: 7px 15px;
  right: 40px;
  font-size: 1.7em;
 }

.dropdown {
  top: 0;
  z-index: 2;
  position: absolute;
  right: 40px;
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,.2);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  width: 350px;
  height: auto;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.125);
  margin: 118px auto 0px;
  padding: 13px;
 }

.dropdown:before {
  content: "";
  position: absolute;
  top: -28px;
  left: 89%;
  transform: translateX(-11%);
  border: 15px solid;
  border-color: transparent transparent rgba(0,0,0,.2) transparent;
 }

.dropdown .notify_item {
  padding: 10px 0;
  border-bottom: 1px solid #dbdaff;
}  

.dropdown .notify_item:hover{
 background-color:rgba(0,0,0,.2);
}  

 .dropdown .notify_item:last-child {
  border-bottom: 0px;
 }

 .dropdown .notify_item h1 {
  padding: 0;
  margin-top: 0.5px;
  margin-bottom: 1px;
  text-align: left;
  font-size: 17px;
  font-weight: 400;
  font-family:Arial, Helvetica, sans-serif;
 }

 .dropdown .notify_item .notify_img1 {
  display: flex;
  align-items: left;
  float: left;
  margin-right: 15px;
  margin-bottom: 30px;
 }

 .dropdown .notify_item .notify_img2 {
  display: flex;
  align-items: left;
  float: left;
  margin-right: 15px;
  margin-bottom: 120px;
 }

 .dropdown .notify_item .notify_info h3 {
  padding: 0;
  margin-top: 0.5px;
  margin-bottom: 1px;
  text-align: left;
  font-size: 17px;
  font-weight: 400;
  font-family:Arial, Helvetica, sans-serif;
 }

 .dropdown .notify_item .notify_info h3 span {
  color: rgb(233, 194, 108);
 }

 .dropdown .notify_item .notify_info p {
  padding: 0;
  margin-top: 5px;
  margin-bottom: 5px;
  text-align: left;
  justify-content: center;
  font-size: 15px;
  font-family:Arial, Helvetica, sans-serif;
 }

 .dropdown .notify_item .notify_info p span {
  color: rgb(233, 194, 108);
  margin-left: 5px;
 }

 .dropdown .notify_item .notify_info .notity_time {
  color: #fff;
  font-size: 12px;
 }

 .dropdown.active {
  display: block;
 }

header nav a:not(:last-child){
  margin-right: 15px;
 }

header nav .menu-level {
    z-index: 3;
    display: none;
    position: absolute;
    top: 49px;
    right: 22px;
    width: 35px;
   }

  @media screen and (max-width: 830px){

    header nav {
      padding: 0;
     }

     header nav .logo {
      position: absolute;
      top: 30px;
      left: 22px;
     }

    header nav .menu-level {
        display: block;
        font-size: 22px;
        }

    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 .mobile-menu {
      z-index: 2;
      margin-left: 0;
     }

    nav .onglets a {
      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;
    }

    .uil-bell {
      margin-top: 85px;
     }
    
    .dropdown {
      z-index: 3;
      margin: 143px auto 0px;
     }
  }

  @media only screen and (max-width: 829.9px) and (min-width: 415.01px)  {
    
    .uil-bell {
      margin-top: 85px;
     }

    .uil-bell:hover{
      background:#fff;
     } 
    
    .dropdown {
      background: #fff;
      backdrop-filter: blur(10px);
     }

     .dropdown:before {
      border-color: transparent transparent white transparent;
     }

     .dropdown .notify_item:hover{
      background-color: floralwhite;
     } 

     .dropdown .notify_item .notify_img1 {
      margin-right: 10px;
      margin-bottom: 30px;
     }
    
     .dropdown .notify_item .notify_img2 {
      margin-right: 10px;
      margin-bottom: 120px;
     }

     .dropdown .notify_item h1 {
      font-weight: 400;
      color: darkgray;
    }

     
     .dropdown .notify_item .notify_info h3 {
      color: darkgray;
      margin-bottom: 5px;
      font-size: 15.5px;
      font-weight: 400;
     }

      .dropdown .notify_item .notify_info p {
       color: darkgray;
       font-size: 14px;
      }

      .dropdown .notify_item .notify_info .notity_time {
        color: darkgray;
        font-size: 12px;
       }
  } 


  @media only screen and (max-width: 415px) and (min-width: 405.01px)  {
    
    .uil-bell {
      margin-top: 85px;
     }

    .uil-bell:hover{
      background:#fff;
     } 
    
    .dropdown {
      background: #fff;
      backdrop-filter: blur(10px);
      right: 15px;
      z-index: 3;
      width: 370px;
      margin: 143px auto 0px;
     }

     .dropdown:before {
      border-color: transparent transparent white transparent;
      left: 80%;
      transform: translateX(-20%);
     }

     .dropdown .notify_item:hover{
      background-color: floralwhite;
     } 

     .dropdown .notify_item .notify_img1 {
      margin-right: 10px;
      margin-bottom: 30px;
     }
    
     .dropdown .notify_item .notify_img2 {
      margin-right: 10px;
      margin-bottom: 100px;
     }

     .dropdown .notify_item h1 {
      font-weight: 400;
      color: darkgray;
    }

     
     .dropdown .notify_item .notify_info h3 {
      color: darkgray;
      margin-bottom: 5px;
      font-size: 15.5px;
      font-weight: 400;
     }

      .dropdown .notify_item .notify_info p {
       color: darkgray;
       font-size: 14px;
      }

      .dropdown .notify_item .notify_info .notity_time {
        color: darkgray;
        font-size: 12px;
       }
  } 


  @media only screen and (max-width: 405px) and (min-width: 395.01px)  {
    
    .uil-bell {
      margin-top: 85px;
     }

    .uil-bell:hover{
      background:#fff;
     } 
    
    .dropdown {
      background: #fff;
      backdrop-filter: blur(10px);
      right: 15px;
      z-index: 3;
      width: 360px;
      margin: 143px auto 0px;
     }

     .dropdown:before {
      border-color: transparent transparent white transparent;
      left: 80%;
      transform: translateX(-20%);
     }

     .dropdown .notify_item:hover{
      background-color: floralwhite;
     } 

     .dropdown .notify_item .notify_img1 {
      margin-right: 10px;
      margin-bottom: 30px;
     }
    
     .dropdown .notify_item .notify_img2 {
      margin-right: 10px;
      margin-bottom: 100px;
     }

     .dropdown .notify_item h1 {
      font-weight: 400;
      color: darkgray;
    }

     
     .dropdown .notify_item .notify_info h3 {
      color: darkgray;
      margin-bottom: 5px;
      font-size: 15.5px;
      font-weight: 400;
     }

      .dropdown .notify_item .notify_info p {
       color: darkgray;
       font-size: 14px;
      }

      .dropdown .notify_item .notify_info .notity_time {
        color: darkgray;
        font-size: 12px;
       }
  } 


  @media only screen and (max-width: 395px) and (min-width: 385.01px)  {
    
    .uil-bell {
      margin-top: 85px;
     }

    .uil-bell:hover{
      background:#fff;
     } 
    
    .dropdown {
      background: #fff;
      backdrop-filter: blur(10px);
      right: 15px;
      z-index: 3;
      width: 350px;
      margin: 143px auto 0px;
     }

     .dropdown:before {
      border-color: transparent transparent white transparent;
      left: 80%;
      transform: translateX(-20%);
     }

     .dropdown .notify_item:hover{
      background-color: floralwhite;
     } 

     .dropdown .notify_item .notify_img1 {
      margin-right: 10px;
      margin-bottom: 10px;
     }
    
     .dropdown .notify_item .notify_img2 {
      margin-right: 10px;
      margin-bottom: 100px;
     }

     .dropdown .notify_item h1 {
      font-weight: 400;
      color: darkgray;
    }

     
     .dropdown .notify_item .notify_info h3 {
      color: darkgray;
      margin-bottom: 5px;
      font-size: 15.5px;
      font-weight: 400;
     }

      .dropdown .notify_item .notify_info p {
       color: darkgray;
       font-size: 14px;
      }

      .dropdown .notify_item .notify_info .notity_time {
        color: darkgray;
        font-size: 12px;
       }
  } 

  @media only screen and (max-width: 385px) and (min-width: 375.01px)  {
    
    .uil-bell {
      margin-top: 85px;
     }

    .uil-bell:hover{
      background:#fff;
     } 
    
    .dropdown {
      background: #fff;
      backdrop-filter: blur(10px);
      right: 15px;
      z-index: 3;
      width: 340px;
      margin: 143px auto 0px;
     }

     .dropdown:before {
      border-color: transparent transparent white transparent;
      left: 80%;
      transform: translateX(-20%);
     }

     .dropdown .notify_item:hover{
      background-color: floralwhite;
     } 

     .dropdown .notify_item .notify_img1 {
      margin-right: 10px;
      margin-bottom: 65px;
     }
    
     .dropdown .notify_item .notify_img2 {
      margin-right: 10px;
      margin-bottom: 125px;
     }

     .dropdown .notify_item h1 {
      font-weight: 400;
      color: darkgray;
    }

     
     .dropdown .notify_item .notify_info h3 {
      color: darkgray;
      margin-bottom: 5px;
      font-size: 15.5px;
      font-weight: 400;
     }

      .dropdown .notify_item .notify_info p {
       color: darkgray;
       font-size: 14px;
      }

      .dropdown .notify_item .notify_info .notity_time {
        color: darkgray;
        font-size: 12px;
       }
  } 

  @media only screen and (max-width: 375px) and (min-width: 365.01px)  {
    
    .uil-bell {
      margin-top: 85px;
     }

    .uil-bell:hover{
      background:#fff;
     } 
    
    .dropdown {
      background: #fff;
      backdrop-filter: blur(10px);
      right: 15px;
      z-index: 3;
      width: 330px;
      margin: 143px auto 0px;
     }

     .dropdown:before {
      border-color: transparent transparent white transparent;
      left: 80%;
      transform: translateX(-20%);
     }

     .dropdown .notify_item:hover{
      background-color: floralwhite;
     } 

     .dropdown .notify_item .notify_img1 {
      margin-right: 10px;
      margin-bottom: 65px;
     }
    
     .dropdown .notify_item .notify_img2 {
      margin-right: 10px;
      margin-bottom: 125px;
     }

     .dropdown .notify_item h1 {
      font-weight: 400;
      color: darkgray;
    }

     
     .dropdown .notify_item .notify_info h3 {
      color: darkgray;
      margin-bottom: 5px;
      font-size: 15.5px;
      font-weight: 400;
     }

      .dropdown .notify_item .notify_info p {
       color: darkgray;
       font-size: 14px;
      }

      .dropdown .notify_item .notify_info .notity_time {
        color: darkgray;
        font-size: 12px;
       }
  } 

  @media only screen and (max-width: 365px) and (min-width: 355.01px)  {
    
    .uil-bell {
      margin-top: 85px;
     }

    .uil-bell:hover{
      background:#fff;
     } 
    
    .dropdown {
      background: #fff;
      backdrop-filter: blur(10px);
      right: 15px;
      z-index: 3;
      width: 320px;
      margin: 143px auto 0px;
     }

     .dropdown:before {
      border-color: transparent transparent white transparent;
      left: 80%;
      transform: translateX(-20%);
     }

     .dropdown .notify_item:hover{
      background-color: floralwhite;
     } 

     .dropdown .notify_item .notify_img1 {
      margin-right: 10px;
      margin-bottom: 65px;
     }
    
     .dropdown .notify_item .notify_img2 {
      margin-right: 10px;
      margin-bottom: 135px;
     }

     .dropdown .notify_item h1 {
      font-weight: 400;
      color: darkgray;
    }

     
     .dropdown .notify_item .notify_info h3 {
      color: darkgray;
      margin-bottom: 5px;
      font-size: 15.5px;
      font-weight: 400;
     }

      .dropdown .notify_item .notify_info p {
       color: darkgray;
       font-size: 14px;
      }

      .dropdown .notify_item .notify_info .notity_time {
        color: darkgray;
        font-size: 12px;
       }
  } 
  

  @media only screen and (max-width: 355px) and (min-width: 345.01px)  {
    
    .uil-bell {
      margin-top: 85px;
     }

    .uil-bell:hover{
      background:#fff;
     } 
    
    .dropdown {
      background: #fff;
      backdrop-filter: blur(10px);
      right: 15px;
      z-index: 3;
      width: 310px;
      margin: 143px auto 0px;
     }

     .dropdown:before {
      border-color: transparent transparent white transparent;
      left: 80%;
      transform: translateX(-20%);
     }

     .dropdown .notify_item:hover{
      background-color: floralwhite;
     } 

     .dropdown .notify_item .notify_img1 {
      margin-right: 10px;
      margin-bottom: 65px;
     }
    
     .dropdown .notify_item .notify_img2 {
      margin-right: 10px;
      margin-bottom: 135px;
     }

     .dropdown .notify_item h1 {
      font-weight: 400;
      color: darkgray;
    }

     .dropdown .notify_item .notify_info h3 {
      color: darkgray;
      margin-bottom: 5px;
      font-size: 15.5px;
      font-weight: 400;
     }

      .dropdown .notify_item .notify_info p {
       color: darkgray;
       font-size: 14px;
      }

      .dropdown .notify_item .notify_info .notity_time {
        color: darkgray;
        font-size: 12px;
       }
  } 
  
  
  @media only screen and (max-width: 345px) and (min-width: 335.01px)  {
    
    .uil-bell {
      margin-top: 85px;
     }

    .uil-bell:hover{
      background:#fff;
     } 
    
    .dropdown {
      background: #fff;
      backdrop-filter: blur(10px);
      right: 15px;
      z-index: 3;
      width: 300px;
      margin: 143px auto 0px;
     }

     .dropdown:before {
      border-color: transparent transparent white transparent;
      left: 80%;
      transform: translateX(-20%);
     }

     .dropdown .notify_item:hover{
      background-color: floralwhite;
     } 

     .dropdown .notify_item .notify_img1 {
      margin-right: 10px;
      margin-bottom: 65px;
     }
    
     .dropdown .notify_item .notify_img2 {
      margin-right: 10px;
      margin-bottom: 145px;
     }

     .dropdown .notify_item h1 {
      font-weight: 400;
      color: darkgray;
    }

     
     .dropdown .notify_item .notify_info h3 {
      color: darkgray;
      margin-bottom: 5px;
      font-size: 15.5px;
      font-weight: 400;
     }

      .dropdown .notify_item .notify_info p {
       color: darkgray;
       font-size: 14px;
      }

      .dropdown .notify_item .notify_info .notity_time {
        color: darkgray;
        font-size: 12px;
       }
  } 
  
  
  @media only screen and (max-width: 335px) and (min-width: 325.01px)  {
    
    .uil-bell {
      margin-top: 85px;
     }

    .uil-bell:hover{
      background:#fff;
     } 
    
    .dropdown {
      background: #fff;
      backdrop-filter: blur(10px);
      right: 15px;
      z-index: 3;
      width: 290px;
      margin: 143px auto 0px;
     }

     .dropdown:before {
      border-color: transparent transparent white transparent;
      left: 80%;
      transform: translateX(-20%);
     }

     .dropdown .notify_item:hover{
      background-color: floralwhite;
     } 

     .dropdown .notify_item .notify_img1 {
      margin-right: 10px;
      margin-bottom: 65px;
     }
    
     .dropdown .notify_item .notify_img2 {
      margin-right: 10px;
      margin-bottom: 145px;
     }

     .dropdown .notify_item h1 {
      font-weight: 400;
      color: darkgray;
    }

     
     .dropdown .notify_item .notify_info h3 {
      color: darkgray;
      margin-bottom: 5px;
      font-size: 15.5px;
      font-weight: 400;
     }

      .dropdown .notify_item .notify_info p {
       color: darkgray;
       font-size: 14px;
      }

      .dropdown .notify_item .notify_info .notity_time {
        color: darkgray;
        font-size: 12px;
       }
  }  

  @media only screen and (max-width: 325px){
    
    .uil-bell {
      margin-top: 85px;
     }

    .uil-bell:hover{
      background:#fff;
     } 
    
    .dropdown {
      background: #fff;
      backdrop-filter: blur(10px);
      right: 15px;
      z-index: 3;
      width: 280px;
      margin: 143px auto 0px;
     }

     .dropdown:before {
      border-color: transparent transparent white transparent;
      left: 80%;
      transform: translateX(-20%);
     }

     .dropdown .notify_item:hover{
      background-color: floralwhite;
     } 

     .dropdown .notify_item .notify_img1 {
      margin-right: 10px;
      margin-bottom: 65px;
     }
    
     .dropdown .notify_item .notify_img2 {
      margin-right: 10px;
      margin-bottom: 180px;
     }

     .dropdown .notify_item h1 {
      font-weight: 400;
      color: darkgray;
    }

     
     .dropdown .notify_item .notify_info h3 {
      color: darkgray;
      margin-bottom: 5px;
      font-size: 15.5px;
      font-weight: 400;
     }

      .dropdown .notify_item .notify_info p {
       color: darkgray;
       font-size: 14px;
      }

      .dropdown .notify_item .notify_info .notity_time {
        color: darkgray;
        font-size: 12px;
       }
  }  

  header  .principal h1 {
    width: 90%;
    text-align: left;
    margin-left: 40px;
    margin-top: 140px;
    margin-bottom: 20px;
    font-size: 2.5em;
    font-weight: 800;
    font-family:Arial, Helvetica, sans-serif;
    text-shadow: var(--box-shadow);
    letter-spacing: 2px;
    color:#fff;
  }  

  header  .principal h1 i {
    font-size: 42px;
  }  

  header  .principal h1 span {
    color:rgb(233, 194, 108);
    font-weight: 900;
  }

  @media screen and (max-width: 480px){

    header  .principal h1 {
      width: 80%;
      margin-top: 200px;
      font-size: 30px;
      font-weight: 800;
    } 

    header  .principal h1 span {
      font-size: 30px;
      font-weight: 900;
    } 
  }

  header  .principal h4{
    background-color: rgba(0,0,0,.2);
    font-weight: calc(2.5);
    padding: 18px;
    border-radius: 10px;
    width: 44%;
    text-align:left;
    margin-top: 40px;
    margin-left: 40px;
  }

  header .principal a {
    width: 160px;
    max-width: 165px;
    min-width: 155px;
    border: none;
    outline: none;
    background-color: var(--white-color);
    color: black;
    font-size: 1em;
    font-weight: 500;
    padding: 8px 25px;
    display: flex;
    align-items: center;
    margin-top: 40px;
    margin-left: 40px;
    border-radius: 10px;
    cursor: pointer; 
} 

header .principal i {
  font-size: 1.5em;
} 

header .principal a:hover{
  background: var(--white-color);
  color: darkgray;
 }  


 .media-icons {
    top: 0;
    margin-top: 294px;
    z-index: 1;
    position: absolute;
    right: 40px;
    display: flex;
    flex-direction: column;
    transition: 0.5s ease;
 } 

 .media-icons a {
    color: #fff;
    font-size: 1.8em;
    transition: 0.5s ease;
 } 

 .media-icons a:not(:last-child) {
    margin-bottom: 20px;
 } 

 .media-icons a:hover {
    transform: scale(1.3);
 } 

  @media screen and (max-width: 480px){

    header  .principal h4 {
      width: 65%;
      margin-top: 10px;
    } 

    header .principal a {
      width: 50%;
      margin-top: 10px;
      margin-left: 40px;
  } 

    .media-icons {
      z-index: 1;
      margin-top: 294px;
      right: 22px; 
   }
   
   .media-icons a {
    font-size: 1.5em;
   } 
  }

  .box{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
  }

  .box video{
    z-index: 777;
    min-height: 100vh;  
    position: relative;
    opacity: none;
    object-fit: cover;
    background-position: center;
    background-size: cover;
    pointer-events:none;
  }


  .introduction{
    background-color: #fff;
    color: darkgray;
    padding: 55px 30px;
    width: 80%;
    text-align: center;
    margin-left: 10.5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .introduction h1{
   font-size: 40px;
   font-weight: 800;
   margin-bottom: 6px;
   margin-top: 1px;
   text-align: center;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
  }

  .introduction h4{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 1px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
   }
   
   .offres{
    background-color:#fff;
    color:darkgray;
    padding: 30px;
    margin-left: none;
    margin-bottom: 1px;
   }

   .offres h1{
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 1px;
   }

   .offres h1, .offres p{
    text-align: center;
   }

   .offres p{
    width: 35%;
    text-align: center;
    margin-left: 32%;
   }

   @media screen and (max-width: 768px){

    .offres h1{
      width: 100%;
      margin-left: 2px;
     }

     .offres p{
      width: 100%;
      margin-left: 2px;
     }
  }

   .offres .offres-cartes{
    background-color:whitesmoke;
    color:darkgray;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
   }

   .offres .offres-cartes h1{
    padding: 10px 0;
    border-bottom: 1px solid #dbdaff;
    font-size: 15px;
   }

   .offres .offres-cartes .carte{
    background-color:#fff;
    color: none;
    padding: 20px;
    height: 670px;
    width: 15.8%;
    margin-top: 12px;
    margin-bottom: 12px;
    margin-right: 5px;
    margin-left: 5px;
    border-radius: 25px;
    object-fit: cover;
    transition:ease-out 400ms;
   }  

   .offres .offres-cartes .carte:hover{
    background-color:floralwhite;
    color: none;
    transform: scale(1.03);
   }  

   .offres .offres-cartes .carte img{
    height: 65px;
   }  

   .offres .offres-cartes .carte p{
    width: 104%;
    text-align:center;
    margin-left: 1px;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
   }  

   .offres .offres-cartes .carte button{
    text-decoration: none;
    display: inline-block;
    background-color:#fff;
    color:rgb(233, 194, 108);
    font-size: 12px;
    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;
   }  

   .offres .offres-cartes .carte button:hover{
    background-color:rgb(233, 194, 108);
    color:#fff;
   } 

   @media only screen and (max-width: 1300px) and (min-width: 742.01px)  {
    
    .offres .offres-cartes{
      flex-direction: column;
     } 

     .offres .offres-cartes .carte{
      width: 95%;
      height: 420px;
      padding: 60px;
     }  
    }

   @media only screen and (max-width: 742px) and (min-width: 430.01px)  {
    
    .offres .offres-cartes{
      flex-direction: column;
     } 

     .offres .offres-cartes .carte{
      width: 93%;
      height: 540px;
      padding: 30px;
     }  
    }
   
   @media only screen and (max-width: 430px) and (min-width: 350.01px)  {
    
    .offres .offres-cartes{
      flex-direction: column;
     } 

     .offres .offres-cartes .carte{
      width: 93%;
      height: 620px;
      padding: 18px;
     }  
    }

 @media only screen and (max-width: 350px) and (min-width: 300.01px)  {

     .offres .offres-cartes{
      flex-direction: column;
     } 

     .offres .offres-cartes .carte{
      width: 95%;
      height: 670px;
      padding: 15px;
     }  
  } 

  @media screen and (max-width: 300px){

    .offres .offres-cartes{
     flex-direction: column;
    } 

    .offres .offres-cartes .carte{
     width: 95%;
     height: 690px;
     padding: 15px;
    }  
 } 

   .valeurs{
    background-color:#fff;
    color:darkgray;
    padding: 55px;
    margin-left: none;
    margin-bottom: 1px;
   }

   .valeurs hr{
    border-top: 1.85px solid whitesmoke;
    margin-top: 100px;
    margin-bottom: 0.5%;
    width: 53%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
   }

   .valeurs h1{
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 1px;
    text-align: center;
   }

   .valeurs .valeurs-cartes{
    color:darkgray;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
   }

   .valeurs .valeurs-cartes h1{
    font-size: 15px;
    font-weight: calc(2.7);
   }

   .valeurs .valeurs-cartes .carte{
    background-color:#fff;
    color: none;
    padding: 1px;
    height: 50px;
    width: 13%;
    margin-top: 1px;
    margin-bottom: 1px;
    margin-right: 1px;
    margin-left: 1px;
   }  

   .valeurs .valeurs-cartes .carte img{
    height: 65px;
    transition:ease-out 400ms;
   }  

   .valeurs .valeurs-cartes .carte img:hover{
    transform: scale(1.1);
    } 

    @media screen and (max-width: 1024px){

      .valeurs .valeurs-cartes{
       flex-direction: column;
      }

      .valeurs .valeurs-cartes .carte{
        height: 130px;
        width: 100%;
       }  
   } 

   .marché{
    background-color:whitesmoke;
    color:darkgray;
    padding: 55px;
    margin-left: none;
    margin-bottom: 1px;
   }

   .marché hr{
    border-top: 1.85px solid darkgray;
    margin-top: 100px;
    margin-bottom: 0.5%;
    width: 72%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
   }
   
   .marché h3{
    width: 72%;
    font-size: 34px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 1px;
    margin-left: 14%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
   }

   .marché h1{
    width: 72%;
    font-size: 40px;
    font-weight: 800;
    margin-top: 5px;
    margin-bottom: 1px;
    margin-left: 14%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
   }

   .marché .marché-cartes{
    color:darkgray;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
   }

   .marché .marché-cartes::after{
    content: ;
    display: block;
    clear: both;
   }

   .marché .marché-cartes h2{
    width: none;
    font-size: 30px;
    font-weight: calc(4.7);
    color: grey;
    text-align:left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
   }

   .marché .marché-cartes h4{
    font-size: 15px;
    font-weight: calc(2.7);
    text-align:left;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
   }

   .marché .marché-cartes .carte{
    color: none;
    padding: 1px;
    height: 50px;
    width: 18%;
    margin-top: 1px;
    margin-bottom: 1px;
    margin-right: 1px;
    margin-left: 1px;
   }  

   .marché .marché-cartes .carte img{
    height: 100px;
    transition:ease-out 400ms;
    float: left;
    shape-outside: margin-box;
    margin: none;
   }  

   .marché .marché-cartes .carte img:hover{
    transform: scale(1.1);
    } 
    
    @media only screen and (max-width: 1090px) and (min-width: 900.01px)  {

       .marché h3 {
        width: 100%;
        margin-left: 4%;
       }
       
      .marché .marché-cartes{
        flex-direction: column;
       }

      .marché .marché-cartes .carte {
        height: 130px;
        width: 100%;
       }  
   } 

    @media only screen and (max-width: 900px) and (min-width: 800.01px)  {

       .marché h3 {
        width: 100%;
        margin-left: 4%;
       }
       
      .marché .marché-cartes{
        flex-direction: column;
       }

      .marché .marché-cartes .carte {
        height: 130px;
        width: 100%;
       }  
   } 

    @media only screen and (max-width: 800px) and (min-width: 768.01px)  {

       .marché h3 {
        width: 100%;
        margin-left: 4%;
       }
       
      .marché .marché-cartes{
        flex-direction: column;
       }

      .marché .marché-cartes .carte {
        height: 130px;
        width: 100%;
       }  
   } 

    @media only screen and (max-width: 768px) and (min-width: 609.01px)  {

       .marché h3 {
        width: 100%;
        margin-left: 4%;
       }
       
      .marché .marché-cartes{
        flex-direction: column;
       }

      .marché .marché-cartes .carte {
        height: 130px;
        width: 100%;
       }  
   } 

    @media only screen and (max-width: 609px) and (min-width: 371.01px)  {

       .marché h3 {
        width: 100%;
        margin-left: 4%;
       }
       
      .marché .marché-cartes{
        flex-direction: column;
       }

      .marché .marché-cartes .carte {
        height: 130px;
        width: 100%;
       }  
   } 

    @media screen and (max-width: 371px){
           
       .marché h3 {
        width: 100%;
        margin-left: 4%;
       }
       
      .marché .marché-cartes{
        flex-direction: column;
       }

      .marché .marché-cartes .carte {
        height: 130px;
        width: 100%;
       }  
   } 



    .site{
        height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        } 
    .container{
            max-width: 1100px;
            width: 100%;
            padding: 0 30px;
            justify-content: center;
            margin: 0 auto;
            } 

     .testi {
             max-width: 900px;
             margin: 0 auto;
             display: flex;
             flex-wrap: wrap;
             align-items: center;
             justify-content:center;
            } 

    .testi h1 {
            font-weight: 800;
             }
            
    .testi h3 {
             font-size: 17px;
             text-align: center;
            }

    .testi .head { 
             text-align: center;
             margin-bottom: none;
            }

    .testi .wrapper { 
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 60px;
            padding: 30px 0;
            }

    /* let set thumbnail first */

    .testi .thumbnail {
        width: 150px;
        height: 150px;
        position: relative;
        flex-shrink: 0;
       }

    .testi .thumbnail img {
        object-fit: over;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        transform: scale(2);
        transition: transform .5s;
       }

    .testi .swiper-slide-active .thumbnail img {
        transform: scale(1);
       }

    .testi .thumbnail::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: calc(100% + 30px);
        height: calc(100% + 10px);
        background-color: var(--primary-color);
        border-radius: 50%;
        z-index: -1;
        box-shadow: var(--box-shadow);
        transition: border-radius .5s .3s;
       }

       .testi .swiper-slide-active .thumbnail::before {
        border-radius: 33% 67% 50% 50% / 50% 14% 86% 50%;
       }

    .testi .aside {
        position: relative;
        padding-top: 15px;
        display: flex;
        flex-direction: column;
        align-self: flex-end;
       }

    .testi .aside > p {
        position: relative;
        font-size: 14px;
        line-height: normal;
        margin-bottom: 30px;
        opacity: 0;
        transform: translateX(10%);
        transition: transform 1s, opacity 1s;
       }
    .testi .swiper-slide-active .aside > p {
        transform: translateX(0);
        opacity: 1;
    }
    .testi .aside > p::before,
    .testi .aside > p::after {
          font-family: serif;
          font-size: 60px;
          font-weight: 800;
          line-height: 1;
          position: absolute;
          color: var(--light-color);
          height: 40px;
          z-index: -1;
    }

    .testi .aside > p::before {
          content: open-quote;
          top: -40px;
          left: 10px;
    }

    .testi .aside > p::after {
        content: close-quote;
        right: 0;
    }

  .testi .aside .name {
    position: relative;
    width: fit-content;
    line-height: 1;
    opacity: 0;
    transform: translateX(30px);
    transition: transform 1s .2s, opacity 1s .3s;
   }

   .testi .swiper-slide-active .name {
    transform: translateX(0);
    opacity: 1;
   } 

   .testi .aside .name h4 {
    font-size: 22px;
    font-weight: 800;
    margin-top: 4px;
    margin-bottom: -8px;
    color: var(--primary-color);
    opacity: .8;
   }

   .testi .aside .name p {
    font-size: 12px;
    text-align: left;
   }

   /*slider */
   .testi :is(.swiper-button-next, .swiper-button-prev) {
   background-color: var(--light-color);
   top: 35%;
   width: 38px;
   height: 38px;
   border-radius: 50%;
   transition: background-color .3s;
   box-shadow: var(--box-shadow);
   }

   .testi :is(.swiper-button-next, .swiper-button-prev):hover {
    background-color: var(--primary-color);

    }

   .testi :is(.swiper-button-next, .swiper-button-prev)::after {
    font-size: 16px;
    font-weight: 800;
    color: var(--white-color);
   }

   .testi .swiper-pagination {
    position: relative;
   }

   .testi .swiper-pagination span {
    background-color: var(--light-color);
    transition: width .3s;
    opacity: 1;
   }

   .testi .swiper-pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 4px;
    background-color: var(--primary-color);
   }

@media only screen and (max-width: 831px) and (min-width: 428.01px)  {

    .site {
      height: 110vh;
    }
} 

@media only screen and (max-width: 768px) and (min-width: 428.01px)  {

  .container{
    padding: 0;
    }

    .testi .aside p {
      padding: 0 25px;
      width: 75%;
     }

    .testi .aside .name h4 {
      padding: 0 30px;
      width: 100%;
     }

    .testi .aside .name p {
      padding: 0 30px;
      width: 100%;
     }
} 

   @media only screen and (max-width: 428px) and (min-width: 387.01px)  {

    .container{
      padding: 0;
      } 

    .site {
        height: 120vh;
      }

      .testi .aside p {
        padding: 0 25px;
        width: 75%;
       }

      .testi .aside .name h4 {
        padding: 0 30px;
        width: 100%;
       }

      .testi .aside .name p {
        padding: 0 30px;
        width: 100%;
       }
} 


@media only screen and (max-width: 387px) and (min-width: 350.01px)  {

  .container{
    padding: 0;
    } 

  .site {
      height: 130vh;
    }

    .testi .wrapper { 
      width: 90%;
      }

    .testi .aside p {
      padding: 0 25px;
      width: 75%;
     }

    .testi .aside .name h4 {
      padding: 0 30px;
      width: 100%;
     }

    .testi .aside .name p {
      padding: 0 30px;
      width: 100%;
     }
} 

   @media screen and (max-width: 350px) {

     .container{
       padding: 0;
      } 

     .site {
        height: 150vh;
      }

     .testi .wrapper { 
      width: 78%;
      }

      .testi .aside p {
        padding: 0 25px;
        width: 79%;
       }

      .testi .aside .name h4 {
        padding: 0 30px;
        width: 130%;
       }

      .testi .aside .name p {
        padding: 0 30px;
        width: 130%;
       }
   }

    @media screen and (min-width: 768px) {
        .testi .wrapper { 
            flex-direction: row;
            padding: 30px 100px;
            width: 100%;
            }
        .testi .thumbnail {
                width: 200px;
                height: 200px;
               }
       }

    .testi :is(.swiper-button-next, .swiper-button-prev) {
        top: 50%;        
       }

    .testi .swiper-slide-active .name {
        transform: translateX(-50px);     
       }

    .partenaires {
        background-color:whitesmoke;
        color:darkgray;
        padding: 55px;
        margin-left: none;
        margin-bottom: 1px;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content:center;
      }
    
    .partenaires h1 {
        width: 72%;
        font-size: 40px;
        font-weight: 800;
        margin-top: 5px;
        text-align: center;
        margin-bottom: 22px;
        margin-left: 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content:center;
      }

      .partenaires h3 {
        width: 45%;
        font-size: 17px;
        margin-top: 1px;
        text-align: center;
        margin-bottom: 5px;
        margin-left: 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content:center;
      }

    @media screen and (max-width: 800px) {

      .partenaires h3 {
        width: 100%;
      }

      .partenaires {
        padding: 40px;
      }
    }

    @keyframes scroll {
        0%{
             transform: translateX(0);
        }
        100%{
            transform: translateX(calc(-250px * 3));
       }
    }

    .partenaires .slider {
        width: 100%;
        height: 200px;
        margin: auto;
        margin-top: 5px;
        margin-bottom: 20px;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content:center;
      }

    .partenaires .slider .slide-track{
        animation: scroll 12s linear infinite;
        display: flex;
        width: calc(250px * 15);
      }
      
    .partenaires .slider .slide {
        height: 100px;
        width: 250px;
      }
    
    .partenaires .slider .slide img{
        height: 130px;
        width: 130px;
      }

    .contacts {
        width: 100%;
        height: 60vh;
        margin-top: 100px;
        position: relative;
        align-items: center;
        background: url('C:/Users/hp/Documents/VF/LEVEL/Documents officiels/Imagine Site/kin3.jpg');
        background-size: cover;
        display: flex;
        opacity: 0.85;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contacts .contact button {
    text-decoration: none;
    display: inline-block;
    background-color:#fff;
    color:black;
    font-size: 12px;
    font-weight: 600;
    padding: 13.5px 22px;
    border: none;
    border-radius: 50px;
    margin-top: 190px;
    outline: none;
    cursor: pointer;
   }  

   .contacts .contact button:hover{
    background-color:rgb(233, 194, 108);
    color:#fff;
    opacity: 1;
   }  

   /*:::::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: 5px;
    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;
   }  

   .footers .group-1 .boite .Social-network a:hover{
    color:rgb(233, 194, 108);
    transform: scale(1.05);
   }  

   .footers .group-1 .boite small {
    padding: 22px;
    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;
       }
    
   }
