/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  min-height: 70vh;
}
nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo a{
  font-size: 30px;
  color: rgb(31, 183, 243);
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: rgb(11, 55, 121);
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow,
.links li:hover .js-arrowlila{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: rgb(11, 55, 121);
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu,
nav .navbar .links li:hover .js-sub-menulila{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: rgb(11, 55, 121);
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .sub-menu .more-arrowlila{
  line-height: 40px;
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: rgb(11, 55, 121);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: rgb(11, 55, 121);
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: rgb(11, 55, 121);
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: rgb(11, 55, 121);
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 20px;
  }

  nav .navbar .logo a{
    font-size: 20px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
  .carousel-caption h3 {
    color: rgb(199, 17, 17);
    font-size: 16px;
    font-weight: 500;
  }
  .carousel-caption .testadd{
    font-size: 40px;
  }
  .carousel-caption .testadd3{
    font-size: 8px;
  }
  .carousel-caption {
    margin-bottom: 150px;
    padding-bottom: 80px;
    font-family: poppins;
  }
  
}
@media (max-width:800px){
 
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  #ffffff;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: rgb(11, 55, 121);
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: rgb(11, 55, 121);
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.reseaux{
  display: none;
  color: red;
}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow,
.links li:hover .js-arrowlila{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu,
  nav .navbar .links li:hover .js-sub-menulila{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show4 .links .js-sub-menulila,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show2 .links .js-arrow,
    .navbar .nav-links.show4 .links .js-arrowlila{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
    .navbar .nav-links.show4 .links .more-arrowlila{
      transform: rotate(90deg);
    }

    .carousel-caption h3 {
      color: white;
      font-size: 16px;
      font-weight: 500;
    }
    .carousel-caption {
      margin-bottom: 150px;
      padding-bottom: 80px;
      font-family: poppins;
    }
    
}






.banner {
  margin-top: 50px;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height: 50vh;
	max-width: 100%;
}

.carousel-caption {
  margin-bottom: 120px;
	padding-bottom: 50px;
	font-family: poppins;
}
.carousel-caption h2 {
	font-size: 60px;
	text-transform: uppercase;
	font-weight: bold;
}
.carousel-caption h3 {
	color: white;
  font-size: 26px;
  font-weight: 500;

}

.carousel-caption h2 span {
	color: #252585;
}
.carousel-caption a {
	background: #26C4EC;
	padding: 15px 35px;
	display: inline-block;
	margin-top: 15px;
	color: rgb(92, 89, 89);
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 25px;
}
.carousel-control.right {
	background-image: none;
}
.carousel-control.left {
	background-image: none;
}
.carousel-indicators .active {
	background-color: #4d4da3;
	border-color: #007FFF;
}











@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
.carousel-caption h3 {
  color: white;
  font-size: 16px;
  font-weight: 500;
}
.carousel-caption {
  margin-bottom: 150px;
  padding-bottom: 80px;
  font-family: poppins;
}
}




/***********************************CSS SKILLS BAR*************************************/
.skill-bars{
  padding: 25px 30px;
  width: auto;
  background: #fff;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
  border-radius: 10px;
}
.skill-bars .bar{
  margin: 20px 0;
}
.skill-bars .bar:first-child{
  margin-top: 0px;
}
.skill-bars .bar .info{
  margin-bottom: 5px;
}
.skill-bars .bar .info span{
  font-weight: 500;
  font-size: 17px;
  opacity: 0;
  animation: showText 0.5s 1s linear forwards;
}
@keyframes showText {
  100%{
    opacity: 1;
  }
}
.skill-bars .bar .progress-line{
  height: 10px;
  width: 100%;
  background: #f0f0f0;
  position: relative;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 10px;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.05),
              0 1px rgba(255,255,255,0.8);
  animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
}
@keyframes animate {
  100%{
    transform: scaleX(1);
  }
}
.bar .progress-line span{
  height: 100%;
  position: absolute;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  background: #6665ee;
  animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
}
.bar .progress-line.html span{
  width: 85%;
}
.bar .progress-line.css span{
  width: 60%;
}
.bar .progress-line.jquery span{
  width: 95%;
}
.bar .progress-line.python span{
  width: 50%;
}
.bar .progress-line.mysql span{
  width: 75%;
}
.progress-line span::before{
  position: absolute;
  content: "";
  top: -10px;
  right: 0;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-bottom-width: 0px;
  border-right-width: 0px;
  border-top-color: #000;
  opacity: 0;
  animation: showText2 0.5s 1.5s linear forwards;
}
.progress-line span::after{
  position: absolute;
  top: -28px;
  right: 0;
  font-weight: 500;
  background: #000;
  color: #fff;
  padding: 1px 8px;
  font-size: 12px;
  border-radius: 3px;
  opacity: 0;
  animation: showText2 0.5s 1.5s linear forwards;
}
@keyframes showText2 {
  100%{
    opacity: 1;
  }
}
.progress-line.html span::after{
  content: "41 milliards de DZD";
}
.progress-line.css span::after{
  content: "19 milliards de DZD";
}
.progress-line.jquery span::after{
  content: "3,523 milliards de DZD";
}
.progress-line.python span::after{
  content: "11 160 agents";
}

/*******************************SECTIONS******************************/
section{
  margin-top: 50px;
  margin-bottom: 50px;

  
}
#motdg{
  text-align: justify;
  font-size: 15px;
}


.divarticle{
  margin: 20px;
  border: 3px solid #3939c9;
  padding: 10px;
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  color: rgb(117, 116, 116);
}
.divarticle2gris{
	margin: 20px;
    border: 3px solid rgb(105, 107, 109);
    padding: 10px;  
    border-radius: 30px;
    background-color: rgb(255, 255, 255);
    color: rgb(117, 116, 116);
}
.divarticle3noir{
	margin: 20px;
    border: 3px solid rgb(0, 0, 0);
    padding: 10px;  
    border-radius: 30px;
    background-color: rgb(255, 255, 255);
    color: rgb(117, 116, 116);
}

.divarticle{
  margin: 20px;
  border: 3px solid #3939c9;
  padding: 10px;
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  color: rgb(117, 116, 116);
}

.hoverdiv :hover{
  background-color: rgb(197, 197, 197);
  color: black;
  border: 2px solid #000000;
  }


.hoverdivaecticle :hover{
  border: 2px solid transparent;
  }
.pfiliere{
    text-align: center;
    font-weight: bold;
  }


  #image{
    display: block;  
    margin-left: auto;  
    margin-right: auto; 
    padding: 5px;  
}

.h4{
	text-align: center;
    margin-bottom: 10px;
    color: rgb(0, 0, 0);
}
/************footer*************/
.footersection{
  background-color: white;
  height: auto;
  width: 100%;
  color: #000;
}
.reseaux{
  font-size: 30px;
}

.footstyle{
  background-color: rgb(224, 224, 224);
}


/************PAGE PRRESENTATION***********/
.divmission{
	margin: 20px;
  border: 1px solid rgb(0, 0, 0);
  padding: 10px;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  color: rgb(117, 116, 116);
}



/* Styles for website counter container */
.website-counter {
  text-align: center;
  font-weight: 900;
  font-size: 18px;
  /*border-style: solid;
  border-color: rgb(0, 0, 0);*/
}



/******************************contact section**************************************/
.contact .right form .fields{
  display: flex;
}
.field,
.fields .field{
  height: 45px;
  width: 100%;
  margin-bottom: 15px;
}
.fields{
  display: flex;
}
.fields{
  flex-direction: row;
}

.fields .field{
  height: 45px;
  width: 100%;
  margin-bottom: 15px;
}
.name{
  margin-right: 20px;
}

.textarea{
      height: 80px;
      width: 100%;
}
.field input, .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}
.field input:focus, .textarea textarea:focus{
    border-color: #b3b3b3;
}
.textarea textarea{
  padding-top: 10px;
  resize: none;
}
.field, .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}

.button-area{
  display: flex;
  align-items: center;
}
.button-area button{
  color: white;
  display: block;
  width: 160px!important;
  height: 45px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: rgb(11, 55, 121);
  border: 2px solid rgb(11, 55, 121);
  transition: all 0.3s ease;
}
.button-area button:hover{
  color: rgb(11, 55, 121);
  background: rgb(194, 194, 194);
}


/*CONTACT LEFT*/
.info2{
  display: flex;
  margin-bottom: 5px;
  align-items: center;
  justify-content: space-between;
}
.info2{
  margin-left: 30px;
}
.info2 .head{
  font-weight: 500;
}
.info2 .sub-title{
  color: #333;
  margin-left: 5px;
}
.row2 i{
  font-size: 25px;
  color: Blue;
}
.row2{
  display: flex;
  height: 65px;
  align-items: center;
}


.bande{
  color: #007FFF;
}

/*.dateevent{
  font-size: 18px;
}*/

@media (max-width: 767px) {
  #cacher {
    display: none;
  }
}

/*****************************GOUVERNANCE***********************/
#cartedirecteurs:hover{
  background-color: rgb(194, 194, 194);
}




/*****************SOCIAL MEDIA*********************/

.dropbtnres {
background-color: transparent;
color: rgb(11, 55, 121);
padding: 8px;
font-size: 16px;
border: none;
}

.dropdownres {
position: relative;
display: inline-block;
}

.dropdownres-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 30px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}

.dropdownres-content a {
color: black;
padding: 4px 6px;
text-decoration: none;
display: block;
}

.dropdownres-content a:hover {background-color: #ddd;}

.dropdownres:hover .dropdownres-content {display: block;}

/*.dropdownres:hover .dropbtnres {background-color: #767c83;}*/
