*{
    margin: 0;
    box-sizing: border-box;
}

/* Css Global variable to recall it later when need to use  */
:root{
    --primaryColor--: #00A3FF ; 
    --SecondaryColr: #008DE7;
    --ThirdColor: rgba(145, 206, 255, 0.971);
    --WhiteColor: #FEFEFE;
    --Button--:#0992D6;
    --orange--: #e6c39b;
    --background-initial:rgba(216, 240, 255, 0.80);
    --prmaryColotOpacity: 35%;
   
}


/* Start of the Body */

body{
    font-size: large;
    background-color: var(--background-initial);
    
}

/* All Container box, styled with flex styling   */
.All{
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-self: auto;
    background-color: var(--background-initial);
    scroll-behavior: smooth;

}


/* Here is the body background color  */
.bg-container{
    background-color: var(--ThirdColor);
    width: 100%;
    max-width: 100%;
   
}

/* Starting of the navigation Menu  */
.navigation{
    display: flex;
    justify-content:space-evenly;
    text-align: center;
    align-items: center;
    box-shadow: 1px 2px 5px rgba(137, 78, 255, 0.863);

}


/* The main navigation body with all the container */
.navigationMenu{
    display: flex;
    z-index: 100;
    text-decoration: none;
    list-style: none;
    align-self: flex-end;
    align-self: center;
    padding: 0.8em;
    box-shadow: 2px 1px 5px 1px rgba(137, 78, 255, 0.863);

}
/* Navigations list */

.navigationMenu, li, a{
    text-decoration: none;
    margin-left: 1em;

    
}
/* Navigation on Hover with dashed bottom border */

.navigation li:hover{
    border-bottom: 2px solid brown;
    color: var(--Button--);
}
    
.navigation a li:active{
    border: 1px solid red;


}
    
/* Navigation images || Logo of the websites */

 .logo-image {
    max-width: 25%; 
    margin-top: 1em;
    margin-right: 14em;
}
/* Special Customisation for the "All Course" navigation list in order to make dropdown with hover effects */

.course-id {
    position: relative;
    cursor: pointer;
   
  }
  .titleCourse{
      padding-right:.3em;
  }

  .titleCourse h3{
      margin: 1em;
  }

  /* Dropdown Arrow styling with border */
  .dropdown-arrow {
    height: 0;
    width: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--Button--);
    position: relative;
    top: 1px;
    left: 40px;
  }
/* Here we are hiding first the  dropdown list container and will display only on hover */
.dropdown-menu {
    list-style-type: none;
    display: none;
    

    
  }
  .dropdownList{
      display: block;


  }
  .course-id:hover .dropdown-arrow {
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 10px solid var(--primaryColor--);
      border-top: 1px solid transparent;
  }
  
 
  /* Here it will display the hide dropdown menu by hovering on the arrow */
  .course-id:hover .dropdown-menu {
    display: block;
    position: absolute;
  }

  .Droplist-content{
      width: 100%;
      display: block;
      font-size: 1.2em;
    
   
  }
  .Droplist-content{
      width: 100%;
      display: block;
      font-size: 1.2em;
    
   
  }
  /* A bit of the layout and arrow customisation to fit out the desired layout  */
  .dropdown-menu ul li {
    list-style-type: none;
    margin-left: -2.5em;
    text-align: center;
    padding: 0.1em;
    padding-right: 1em;
    line-height: 1.4em;
    color: #fff;
    background: var(--primaryColor--) ;
    border: 0.2px solid var(--Button--);
  }
  
 
  
  .dropdown-menu ul li:hover {
    background:var(--ThirdColor);
    transform:scale(1.1);
    box-shadow:#333;
    border-radius: 2px;
    color: rgb(13, 0, 0);
  }

  /* End of the navigation menu */


  /* Hero page customisation */
.heroContainer{
    display: flex;
    align-items: center;
    height: 100vh;
    justify-content: start;

}

.textContent{
    margin-top: 1rem;
}

/* The hero Button */
.heroBtn{
    margin-top: 2em;
    padding: 0.80em;
    
}
/* The hero container */
.heroParagraphe{
    padding-top: 1em;
    font-size: 20px;
}

.Hero-Image{
    margin: 1em;
}

.Hero-Image img{
max-width: max-content;
}

/* End of the Hero page */

/* Global button styling for all the buttons in the websites */
button{
    background-color: var(--SecondaryColr);
    border-radius: 12px;
    width: 12em;
    align-items: center;
    text-align: center;
    font-size: 1.2em;
    scroll-behavior: smooth;
    border: 1px solid var(--ThirdColor) ;
    padding: 0.80em;
    cursor: pointer;
    position: relative;
    box-shadow: 1px 2px 5px rgba(137, 78, 255, 0.863);


}
button a{
    text-align: center;
    margin: auto;
}
/* end of the Glabal Button */


/* Course Container styling */
.CoursesContainer{
    margin: 2em;
    display: flex;
    flex-basis: auto;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.CoursesBtn{
    width: 8em;
    margin: 2em;
}



.ContentCard{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 2em;
    align-self: center;
    margin: 1.40em;
    color: rgb(0, 0, 0);
    width: 40%;
    border: 0.1px solid rgba(137, 78, 255, 0.3);
    box-shadow: 0 3px 8px rgb(0, 0, 0, 0.20);
    transition: .6s ease-in-out;

}

.ContentCard:hover{
background: rgba(10, 10, 10, 0.27);
box-shadow: 2px 1px 2px 1px rgba(137, 78, 255, 0.63);


}
/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 280px;
    background-color: rgba(216, 240, 255, 1);
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 15px 20px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
  
    
}
  
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

/* In the Home Page, All courses container Box */
.ContentCard h2{
    padding: .50em 3em;
    
    
}

.ContentCard img{
    padding: 21px;
    box-shadow: 0 1px 1px rgba(240, 123, 123, 0.2);

}

#AllCourses{
    text-align: center;
    
}
.AllCoursesTitle{
  color: #008DE7;
  font-size: 45px;
}

button:hover{
    background-color: var(--ThirdColor);
    opacity: 1;
}

/* Body Container   */


.CourseBody{
    display: flex;
    overflow: hidden;


}


.sideNavigation{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}

.CourseBody button{
    width: 4em;
    margin-left: 0.2em;
    background-color: var(--ThirdColor);

}

.CourseBody button:hover{
    background-color: var(--Button--);

}

.Showme{
    display: flex;
    position: fixed;
    z-index: 1;
}

.displayme{
    margin-left:2em;

}
.clickHide{
    display: block;

   
} 
.sidenavPage{
    display: block;
    margin-left:12px;
    align-self: flex-start;
    position: fixed;
    clear: both;
    
  
    
}

.sideNavContainer{
    background-color: var(--ThirdColor);
    margin: 1em 0.1em;
    padding: 1em;
    color: rgb(159, 33, 33);
    border-radius: 50px;
  

   
}

.Course-container{
    max-width: 1060px;
    margin: auto;
    left: 25em;
    position: relative;
}


.titleCourse{
    padding: 0.60em;
}
.titleCourse h2,h3,p{
    margin: 0.80em;
    padding: 0.60em;
    text-align: center;
    
    
}



.ContainerBody h2,h3{
    background:var(--ThirdColor);
    width: 26%;
    text-align: center;
    margin: auto;
    height: auto;
    padding: 0.2em;
    box-shadow: 2px 1px 5px 1px rgba(137, 78, 255, 0.863);


}
h2,h3{
   margin-bottom: 1em;
   box-shadow: 2px 1px 5px 1px rgba(137, 78, 255, 0.863);
}
.Coursedescription{
    box-shadow: 0 3px 8px rgb(0, 0, 0, 0.20);
    margin: 1em;
    padding: 1em;
}
.Embedded-Videos iframe{
    margin: 1.5em;
    padding: 1em;
    box-shadow: 0 3px 8px rgb(0, 0, 0, 0.20);

}
.videos, h2{
    text-align: center;
    margin-bottom: 2em;
}
.videos{
    text-align: center;
    align-items: center;


}
.stepTextLayout{
    display: flex;
    flex-direction: row;
    box-shadow: 0 3px 8px rgb(0, 0, 0, 0.20);
    margin: 1em;
}
.stepTextContent{
    display: flex;
    flex-direction: column;
}

.Steps{
    text-align: center;
    background-color: var(--SecondaryColr);
}
/*making the animation*/
.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: .6s ease-in-out;
}
                                                                                        
.reveal.active{
    transform: translateY(0);
    opacity: 1;
}
.stepImage{
    display: flex;
    flex-direction: column;
    max-width: 50%;
}
.StepByStep{
    width: 990px;
    text-align: center;
}

.Documentation .titleEx{
    text-align: center;
    width: 14rem;
    align-items: center;
    padding: 0.50em;

    
}

.byStep h2{
    text-align: center;
    width: 13em;
}

.titleEx{
    text-align: center;
  
}
.Documentation{
    margin: 1em;
    padding: 1em;
    width: 85%;


}
.codeClick{
    display: flex;
    margin-top: 20px;
    justify-content: center;
    gap: 12px;

}
.codeClick button{
    

    background:var(--Button--);
 
}
.codeClick button:hover{

    background:var(--background-initial);
 
}
.docContainer{
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 12px;
    margin-top: 4em;
    align-items: center;

}

.docContainer .tryCode{
    padding: 2em;
    width: 16em;

}
.CoursesTable{
    font-size: 20px;
}
.CoursesTable a{
    cursor: pointer;
}
details{
    padding: 0.50em;
}

.exerciseContainer{
    background-color: var(--ThirdColor);
    padding: 1em;
    box-shadow: 0 3px 8px rgb(0, 0, 0, 0.20);

}
.exerciseContainer button{
    width: 18%;
    margin: 2em;
}
.exerciseContainer .titleEx {
    text-align: center;
    width: 12em;
    margin: auto;
    padding: 1em;
}
.exerciseBody{
    max-width: 998px;
}

.HideCode{
    display: none;
    text-align: center;
  
}
.HideCode h2 img{
    display: none;
    padding: 2em;
    text-align: center;
  
}
.revealImg{
    margin: 1em;
}
.HideCode2{
    display: none;
    text-align: center;
}



 a{
     padding: 2px;
 }
.fa-solid{
    padding: 2em;
    color: red;

}
.NextPrevious .fa-solid { 
    padding: 2em;
    margin: 2em;
    color:var(--Button--)

}
.NextPrevious1{
    display: flex;
    color: var(--ThirdColor);
    justify-content: flex-end;
}
.NextPrevious{
    display: flex;
    color: var(--ThirdColor);
    justify-content: space-around;
}

.NextPrevious .fa-circle-arrow-left{
margin: 2em;
padding: 3em;

}

  
  footer{
    display: flex;
    justify-content:space-around;
    text-align: center;
    align-self: auto;
    background-color:var(--ThirdColor);
}


.copyright{
    align-items: center;
    align-self: center;
    text-align: center;
    width: 50%;
    margin-right: 5rem;
    padding-top: 2em;
    
}
.copyright h2{
    box-shadow: 1px var(--Button--);
   


}
.footerPrincipal{
    display: flex;
    max-height: 10em;
}
.footerPrincipal .logo-image{
    min-width: 20%;
    max-height: 70%;
    

}
  .social-icon { 
    display: flex;
    align-items: center;   
    align-self: center;  
  }
  .fa-brands{
      color: red;
      font-size: 2em;
      align-items: center;
      margin: 10px;
      text-align: center;

  }
  .fa-brands:hover{
    color: var(--Button--);
    font-size: 2em;
    align-items: center;
    margin: 10px;
    text-align: center;
    cursor: pointer;
}



 @media only screen and (max-width:1200px){
  

.ContainerBody{
    max-width: 696px;

}
.StepByStep{
    width: 90%;
}
.Course-container{
    position: relative;
    left: 20em;

}
    
} 





