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

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

*, ::before, ::after{
    margin: 0;
    box-sizing: border-box;
}

body{
    overflow-y: visible;
    font-family: 'Poppins', 'Roboto', sans-serif;

}


body{
  font-family: 'Quicksand', sans-if;
  overflow-y: visible;
}
span{
  padding: 0;
  margin: 0;
}
.nav-container{
  border-bottom: 1px solid #b6dde7;
  background-color: white;

}

@media Screen and (max-width:992px) {
  .nav-container,.nav2container{
  display: none; 
  }
}

#bnav{
  display: none;
}

@media Screen and (max-width:992px) {
 #bnav{
  display: block;
 }
  
}

.topnav{
  display: flex;
  max-width: 1200px;
  margin: 0px auto;
  padding: 0px;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.topchild{
  display: flex;
  align-items: center;
  font-size: 14px;
}

.topchild img{
  margin-right: 10px;
}

.topchild p{
  margin: 0;
  color: rgb(114, 114, 114);
}
.topchild span{
  color: rgb(196, 196, 196);
}

/* the styling of the second nav satrts here */

.nav2container{
  font-size: 14px;
  background-color: rgb(0, 49, 173);
  padding: 0px;
  margin: 0px;
  /* background-color: white; */
  /* position:sticky; */
 
}
.nav2{
  display: flex;
  max-width: 1100px;
  margin: 0px auto;
  align-items: center;
  padding: 5px 0px;

}

.nav2list{
  display: flex;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.nav2list li {
  position: relative;
}

.nav2list li a{
  color:rgb(78, 78, 78);
  text-decoration: none;
  color: white;
padding: 15px;
}

.drop-container{
  display: none;
  box-shadow: 0px 7px 30px -20px;
}

.dropdowne{
  position: absolute;
  background-color: white;
  z-index: 999;
  top: 35px;
  list-style-type: none;
  animation: drop .5s linear ;
  border-radius: 5px;
} 

@keyframes drop{
  0%{
    margin-top: 30px;
  }
  25%{
    margin-top: 15px;
  }
  50%{
    margin-top: 0px;
  }
}

.dropdowne ul{
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.dropdowne li{
  padding: 0px;
  width: 200px;
}

.dropdowne li a{
  color: black;
  padding: 10px 15px;
  display: block;
border-bottom: 1px solid #f1f1f1;

}

.dropdowne li a:hover{
  background-color: #d2e1f5;
}

.enroll{
  margin-left: auto;
}

.nav2list li:hover .drop-container{
  display: block;
}

.about{
  position: absolute;
  background-color: white;

  display: flex;
  border-top: 2px solid white;
  border-radius: 10px;
  top: 33px;
  animation: drop .5s linear ;
  display: none;
  box-shadow: 0px 7px 30px -20px;
  padding: 20px;
  z-index: 999;
}

@keyframes drop{
  0%{
    margin-top: 30px;
  }
  25%{
    margin-top: 15px;
  }
  50%{
    margin-top: 0px;
  }
}

.about-con{
  display: flex;
}

.ab-left{
  width: 300px;
  padding: 20px;
}


.ab-left h1{
font-weight: lighter;
font-size: 24px;
}

.pee{
  color: #c0c0c0;
  margin-top: 30px;
}

#learn-more {
  color:orange ;
}

.ab-right{
width: 700px;
}

.ab-right img{
  width: 100%;
  border-radius: 10px;
}


.nav2list li:hover .about{
  display: block;
}

.enroll button{
  border: none;
  padding: 10px 15px;
  background-color: rgb(0, 0, 0);
  border-radius: 5px;
}

.enroll button a{
  text-decoration: none;
  color: rgb(255, 255, 255);
}



/* the styling for the main content begins here */


.hero{
    background-image:linear-gradient(to top,rgba(0,0,0,0.7),rgba(0,0,0,0.4)), url(pics/stdents.jpg);
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.herocontent {
    max-width: 1100px;
    margin: 0px auto;
}

.herocontent h1{
    color: white;
    font-size: 40px;
    font-weight:lighter;
}

.herocontent p{
    color: white;
    font-size: 13px;
    margin-top: 20px;
}

.herocontent button{
    border: none;
    background-color: rgb(5, 36, 190);
    cursor: pointer;
    border-radius: 5px;
}

.herocontent button a{
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    display: block;
    font-size: 13px;
    
}





  /* #################################################################### */

  .text-container {
    display: flex;
    padding-left: 50px;
    justify-content: center;
    animation: flyIn 1s ease-out forwards; /* Fly-in animation */
   transform: translateX(-100%);
    
  }

  
  @media screen and (max-width:992px){
    .text-container{
      padding: 0px;
    }
  }


  /* Fly-in animation keyframes */
@keyframes flyIn {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .text-container h1{
    color: white;
    font-weight: 100;
    text-align: center;
  }

  .text-container p{
    color: white;
    font-size: 13px;
    text-align: center;
  }

  .text-container button{
    color: white;
    background-color: rgb(0, 49, 128);
    border-radius: 50px;
    border: none;
    margin-top: 20px;
  }

  .text-container button a{
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;

  }

  .welcome h1{
    font-weight: 100;
  }




  .split1{
    max-width: 1100px;
    margin:100px auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    
  }

  @media screen and (max-width:992px){
    .split1{
      flex-direction: column;
      padding: 20px 30px;
      gap: 10px;
      width: 100%;
      margin-top: 30px;
    }
  }

  .split1left ,.split1right {
 width: 50%;
  }

  @media screen and (max-width:992px){
    .split1left ,.split1right {
      width: 100%;
       }
  }

  .split1left h1,.split1right h1{
    font-weight: 100;
  }

  .split1right button{
    color: white;
    background-color: rgb(0, 30, 128);
    border-radius: 10px;
    border: none;
    margin-top: 20px;
  }

  .split1right button a{
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
  }

  /* .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.6s ease-out;
  } */
  
  
  @media screen and (max-width:992px){
    .logo{
      width: 100%;
    }
  }


  .video{
    max-width: 1100px;
    margin: 20px auto;
    box-shadow: 0px 7px 30px -20px;
    border-radius: 50px;

  }

  .headertexte{
    text-align: left;
    max-width: 1100px;
    margin: auto;
    background-color: rgb(255, 255, 255);
    line-height: 1.6;
    padding-top: 10px;
  }

  @media screen and (max-width:992px){
    .headertexte{
      flex-direction: column;
      padding: 20px 30px;
      gap: 10px;
      width: 100%;
    }
  }




  .statistics {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    max-width: 1100px;
    margin: auto;
  }

  @media screen and (max-width:992px){
    .statistics{
      flex-direction: column;
      padding: 20px 30px;
      gap: 10px;
      width: 100%;
    }
  }

  
  .stat {
    text-align: center;
  }
  
  .stat h2 {
    font-size:18px;
    margin-bottom: 10px;
    color: rgb(114, 114, 114);
  }
  
  .count {
    font-size: 60px;
    font-weight: bold;
    color: #00b135;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s, transform 1s;
  }
  
  .stat.visible .count {
    opacity: 1;
    transform: translateY(0);
  }

  .section3{
    max-width: 1100px;
    margin:100px auto;
    display: flex;
    justify-content: space-between;
    gap: 100px;
  }

  @media screen and (max-width:992px){
    .section3{
      flex-direction: column;
      padding: 20px 30px;
      gap: 10px;
      width: 100%;
    }
  }

  .section3left,.section3right{
    width: 50%;
    
  }

  @media screen and (max-width:992px){
    .section3left,.section3right{
      width: 100%;
      text-align: left;
    }
  }


  .section3head{
    text-align: left;
    padding-bottom: 30px
  }

  .section3head h3{
    font-weight: normal;
    padding-top: 10px;
  }



  /* ################################################ */

  .section7{
    display: flex;
    max-width: 1100px;
    margin: auto;
    justify-content: space-between;
    gap: 30px;
    padding-top: 50px;
  }

  @media screen and (max-width:992px){
    .section7{
      flex-direction: column;
      padding: 20px 30px;
      gap: 10px;
      width: 100%;
    }
  }


  .section7box1 {
    width: 400px;
    text-align: center;
    animation: flyIn 1s ease-out forwards; /* Fly-in animation */
    transform: translateX(-100%);
    opacity: 0;
}


@media screen and (max-width:992px){
  .section7box1{
    width: 100%;
  }
}


.hidden {
    opacity: 0;
    transform: translateX(-100%);
}

.revealed {
    animation: flyIn 1s ease-out forwards;
}

@keyframes flyIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


  .section7box1 h1{
    font-size: 20px;
  }

  .section7box1 div img{
    width: 100%;
  }

  @media screen and (max-width:992px){
    .section7box1 img{
      width: 100%;
    }
  }


  .section7box1 a{
    color: rgb(94, 94, 94);
    text-decoration: none;
}

.section7box1 a:hover{
    color: green;  
}


.connect{
  max-width: 1100px;
  background-color: rgb(170, 255, 170);
  margin: 30px  auto;
  padding: 30px;
}

/* .footer{
  background-color: #333;
  padding: 30px;
}

.footer div{
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  color: white;
  align-items: center;
} */
 


  .stage5{
    background-color: #111111;
    /* font-weight: lighter; */
    
  }
  
  .stage5-content{
    max-width: 1100px;
    margin: 0px auto;
    padding: 100px 0px 70px 0px;
    color: white;
  }
  
  .stage5con{
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-row-gap:50px;
    grid-column-gap:50px;
    margin: 0px auto;
    max-width: 1100px;
    justify-content:center;
  
  }
  
  @media screen and (max-width:992px){ 
  .stage5con{
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 30px;
  }
  }
  
  @media screen and (max-width:700px){ 
    .stage5con{
      display: grid;
      grid-template-columns: auto auto;
      gap: 100px;
      padding: 0px 30px;
      gap: 30px;
      justify-content: center;
    }
    }
  
  .stage5con h1{
    font-size: 24px;
    color: white;
    font-weight: 200;
  }

  @media screen and (max-width:700px){ 
    .stage5con h1{
      font-size: 18px;
    }
    }
  
  .stage5con ul{
    margin: 0px;
    list-style-type: none;
    padding: 0px;
    width: 200px;
  }

  @media screen and (max-width:700px){ 
    .stage5con ul{
      width: 150px;
    }
    }
  
  .stage5con ul li a{
    text-decoration: none;
    color: white;
    font-size: 13px;
  }
  
  .stage5con input{
    outline: none;
    padding: 5px 10px;
    width: 100%;
  
  }
  
  .stage5con button{
    background-color: #0078da;
    color: white;
    border: none;
    padding: 5px 10px;
  }

  .social,.street{
    width: 200px;
    font-size: 13px;
  }
  
  .social img{
    width: 30px;
    padding-top: 10px;
  }
  
  .social ul{
    display: flex;
  }

.section6{
  background-color: rgb(237, 241, 243);
  padding: 100px 0px;
  margin-top: 100px;
}
.section6content{
    gap: 50px;
  display: flex;
  max-width: 1100px;
  margin: 0px auto;
}

 @media screen and (max-width:700px){ 
    .section6content{
        flex-direction: column;
        padding: 0px 30px;
      width: 100%;
      gap: 30px;
    }
    }

.news{
  text-align: center;
  padding: 20px 0px;
}

.news h3{
  color: rgb(0, 111, 197);
  font-size: 20px;
  font-weight: lighter;
}

.news h1{
    font-size: 30px;
    font-weight: lighter;
}
.stage4-con{
 width: 400px;
}

 @media screen and (max-width:992x){ 
    .stage4-con{
      width: 100%;
      background-color: rgb(103, 160, 189);
    }
}

.stage4-con h3{
  color: rgb(0, 111, 197);
  font-size: 20px;
  font-weight: lighter;
  
}

.stage4-con p{
    font-size: 13px;
    color: rgb(114, 114, 114);
}

.stage4-con img{
  width: 100%;
}

 @media screen and (max-width:992px){ 
    .stage4-con img{
      width: 100%;
    }
    }

.begin{
  background-color: rgb(0, 0, 0);
  color: white;
  border: none;
  border-radius: 5px;
}

.begin a{
    display: block;
    text-decoration: none;
    color: white;
    padding: 10px 25px;
}


