*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
/* import gogle fonts */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600&display=swap');

body{
    font-family: 'Quicksand', sans-serif;
}
h1{
    font-family: 'Lora', serif;
}
p{
    font-family: 'Quicksand', sans-serif;
}
   
/********nav styling******/

nav {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding: 2% 4%;
    align-items: center;
    font-size: 18px;
    color: black;
    box-shadow:2px 2px 5px rgba(200, 200, 200, 0.4);
  }
  
  .navigation-icon {
    display: none;
  }
  .btn{
    padding: 2% 4%;
    color: white;
    border-radius: 8px;
    border: none;
    background-color: rgba(10, 100, 114, 1);
}
.nav-links-container{
    width: 50%;
}
  .nav-links {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav-links > li {
    list-style: none;
  }
  
  .nav-links > li > a {
    text-decoration: none;
    color: #6e798c;
    cursor: pointer;
  }
  
  .nav-links .active{
    color: rgba(10, 100, 114, 1);
    font-weight: 2000px;
    font-size: 24px;
}

  .nav-links > li > a:hover {
    color: #5a636c;
    opacity: 0.3;
  }

  

/*****carousel page****/

/* Slideshow container */
.slideshow-container {
    position: relative;
    margin: auto;
    height: 520px;
  }  
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    color: white;
    
  }
  .slideshow-container a {
      padding: 2%;
      background: white;
      color: black;
      width: 25px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      
    margin: 0px 3% ;
  }
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 60px;
    padding: 8px 12px;
    position: absolute;
    bottom: 230px;
    right: 700px;
    width: 40%;
    font-family: 'Lora', serif;
    /* background-color: red; */
    text-align: left;
  }
    
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .dot:hover {
    background-color: #717171;
  }
  .carouselDot .active {
    background-color: rgba(10, 100, 114, 1);
    border: 2px solid white;
  }
  .carouselDot{
    text-align: center;
    position: absolute;
    top: 600px;
    right: 610px;
  }
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  /***********Value div**********/

  .value{
    height: auto;
    padding: 8% 5% ;
    background-color: #ECF6FA;
    display: flex;
    
  }
  .valueImg{
    width: 50%;
  }
  .valueText{
    width: 50%;
    padding: 0px 3%;
  }
  .valueText h1{
    color: rgba(0, 2, 76, 1);
    font-size: 60px;
    padding-bottom: 4%;
    font-family: 'Lora', serif;
  }
  .valueText p{
    color: rgba(110, 121, 140, 1);
    line-height: 40px;
    font-family: 'Quicksand', sans-serif;
  }
/********services**********/

.services{
    padding: 2%;
    height: auto;
    color: white;
    background-color: rgba(15, 32, 51, 1);
    /* position: relative; */
}
.serviceTop{
    display: flex;
    justify-content: space-between;
    /* background-color: red; */
}
.serviceTop img{
    position: absolute;
    right: 20px;
    width: 100px;
    z-index: 100;
}
.serviceFlex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    z-index: 1000;
}
.eachService{
    z-index: 1000;
    display: block;
    flex-direction: column;
    padding: 3% 2%;
    width: 390px;
    margin: 20px;
    font-size: 14px;
    line-height: 24px;
    border-radius: 8px;
    background-color: rgba(18, 48, 82, 1);
}
.eachService img{
    width: 50px;
    height: 50px;
    margin-bottom: 5%;
}
.eachService h3{
    margin-bottom: 5%;
}
.eachService a{
    color: white;
    cursor: pointer;
    text-decoration: underline;
}

/********statistics****************/

.casesStat{
    background-image: url(media/stats.png);
    height: 150px;
    display: flex;
    color: white;
    justify-content: space-around;
    padding: 3% 5%;
    text-align: center;
}
.casesStat h1{
    font-size: 60px;
}
.casesBorder{
    display: flex;
    flex-direction: column;
}
.bordered{
    border-right: 1px solid white;
    padding-right: 20%;
}
/***testimonial*****/
.testimonial{
    height: 100vh;
    width: 100%;
    background-color: #ECF6FA;
    position: relative;
    padding: 3%;
    text-align: center;
}
.testimonial h3{
    color: #0A6472;
}
.testimonialImg{
    position: absolute;
    top: 20px;
    right: 650px;
}
.testimonialImg img{
    width: 100px;
    height: 200px;
}
.testifier{
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    justify-content: center;
}
.testifier img{
    width: 70px;
    height: 70px;
}
.testifiername{
    text-align: left;
    margin-left: 2%;
}
.testifiername h6{
    color: rgba(110, 121, 140, 1);
}
.testifiername h4{
    color: rgba(0, 2, 76, 1);
    margin-bottom: 10px;
}
.testimonialReports{
    display: flex;
    align-items: center;
    text-align: center;
    line-height: 30px;
    padding: 4% 0px;
    justify-content: space-between;
    /* background-color: #717171; */
}
.testimonialReports p{
    color: rgba(0, 2, 76, 1);
}
.clientsTestimony{
   display: flex;
   flex-direction: column;
   padding: 1% 0px;
}
.clientsTestimony h1{
  color: rgba(0, 2, 76, 1);
}


/***********footer*************/

footer{
    padding: 5% 3%;
    height: 100vh;
    color: white;
    background-color: rgba(5, 5, 14, 1);
}
/* hr{
    border: 1px thin white;
} */
.topFooter{
    display: flex;
    justify-content: space-between;
    margin-bottom: 2%;
}
.mediaFlex{
    display: flex;
}
#mediaFlex{
    display: flex;
    width: 60%;
    justify-content: space-between;
}
.mediaFlex{
    display: flex;
    align-items: center;
}
.mediaFlex img{
    margin-right: 10px;
    width: 40px;
}
/************/
.midFooter{
    display: flex;
    justify-content: space-between;
    /* background-color: purple; */
    padding: 5% 0px;
    line-height: 34px;
}
.midFooter input{
    background-color: transparent;
    border-bottom: 1px solid white;
    border-top: none;
    border-right: none;
    border-left: none;
    padding-bottom: 4px;
    outline: none;
    width: 60%;
    line-height: 30px;
}
.midFooter button{
    background-color: rgba(10, 100, 114, 1);
    padding: 3% 6%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    outline: none;
    border: none;
}
.subscribe {
    width: 40%;
}
.subscribe h4{
    width: 30%;
    margin-bottom: 8%;
}
.midfooterFlex{
    display: flex;
    justify-content: space-between;
    width:50%;
}
.midfooterFlex h4{
    color:rgba(136, 225, 239, 1);
}
.midfooterFlex h4 a{
    color:rgba(136, 225, 239, 1);
    text-decoration: none;
}
.midfooterFlex a{
    color: white;
    cursor: pointer;
    text-decoration: none;
}
/****************/
.bottomFooter{
    display: flex;
    justify-content: space-between;
}
.terms{
    display: flex;
    width: 25%;
    justify-content: space-between;
}
.terms a{
    color: white;
    cursor: pointer;
    text-decoration: none;
}
.mediaLink{
    display: flex;
    width: 5%;
    justify-content: space-between;
    cursor: pointer;
}

/*********about************/

.aboutus{
    display: flex;
    padding: 5% 3%;
}
.aboutusImg{
    width: 50%;
    text-align: center;
    /* background-color: blue; */
}
.aboutusImg img{
    width: 500px;
}
.aboutusText{
    width: 50%;
    padding: 0px 3%;
}
.aboutusText h1{
    color: rgba(0, 2, 76, 1);
    font-size: 60px;
    padding-bottom: 4%;
    font-family: 'Lora', serif;
}
.aboutusText p{
    color: rgba(110, 121, 140, 1);
    line-height: 40px;
    font-family: 'Quicksand', sans-serif;
}


/*********vision and mission***********/
#missionVision{
    height: auto;
    display: flex;
    padding: 5% 3%;
    color: white;
    text-align: center;
    line-height: 32px;
    background-color: rgba(15, 32, 51, 1);
}

.missionVision h1{
    padding: 6% 0px;
}
.vision{
    width: 50%;
    padding: 5%;
}
.mission{
    width: 50%;
    padding: 5%;
}

.abouthr{
    display: flex;
    flex-direction: column;
}

/********teams**********/

#teamContainer{
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 8% 3%;
    color: white;
    background-color: white;
    text-align: center; 
    align-items: center;
    justify-content: center;
}
.teamheading{
    margin-bottom: 5%;
}
.teamheading h4{
    color: rgba(10, 100, 114, 1);
}
.teamheading h1{
    color: rgba(0, 2, 76, 1);
}
.teamdiv{
    display: flex;
    width: 90%;
    justify-content: space-between;
}
.teambg{
    background-image: url(media/avatar.png);
    height: 380px;
    width: 350px;
    border-radius: 8px;
    background-size: cover;
}

.glass{
    color: rgba(0, 2, 76, 1);
    margin: 70% 5% 3% 5%;
    padding: 5%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(30px);
    /* filter: blur(2px); */
}
.glass p{
    line-height: 30px;
    font-weight: 600;
}





/* RESOURCES PAGE ****************/

.resourcesContainer{
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 2% 3%;
    color: black;
    text-align: center;
    line-height: 32px;
    background-color: #f5f5f5;
}
.resourcesContainer h4{
    color: rgba(10, 100, 114, 1);
}
.resourcetop{
    display: flex;
    flex-direction: column;
    padding-bottom: 2% ;
    text-align: center;
}
.resourcesContainer h1{
    color: rgba(0, 2, 76, 1);
}
.resourcesbtnDiv{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}
.activeBtn{
    background-color: rgba(10, 100, 114, 1) !important;
    color: white !important;
}
.resourceBtn{
    padding: 20px;
    background-color: rgba(236, 246, 250, 1);
    outline: none;
    border: none;
    border-radius: 8px;
    margin: 10px;
    min-width: 200px;
    color:rgba(15, 32, 51, 1);
    cursor: pointer;
}

.resourceBtn:hover{
    background-color: rgba(10, 100, 114, 1);
}
.resourceBtn a{
    color:rgba(15, 32, 51, 1);
    text-decoration: none;
}
/****blog post****/
.blogpostContainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 4% 2%;
    /* background-color: blue; */
}
.blogpostDiv{
    display: flex;
    width: 390px;
    align-items: flex-start;
    text-align: start;
    /* background-color: paleturquoise; */
    padding: 10px 10px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.individualBlog{
    display: flex;
    flex-direction: column;
    background-color: white;
    /* background-color: red; */
    border-radius: 10px;
}
.blogImg img{
    width: 350px;
    margin: 20px 20px 0px 20px;
}
.blogBody{
    padding: 2em;
}
.blogBody h2{
    color: rgba(15, 32, 51, 1);
}
.blogBody p{
    color: rgba(110, 121, 140, 1);
}
.individualBlog a{
    color: rgba(10, 100, 114, 1);
    text-decoration: underline;
    margin-bottom: 30px;
    cursor: pointer;
}
.writername{
    display: flex;
    justify-content: space-between;
}
.writername p{
    display: flex;
    justify-content: space-between;
    color: rgba(0, 2, 76, 1);
}

/******FAQ************/

.faqTitle{
    background-color: rgba(236, 246, 250, 1);
    height: auto;
    text-align: center;
    padding: 5%;
}
.faqTitle h4{
    color: rgba(10, 100, 114, 1);
    line-height: 35px;
}
.faqTitle h1{
    color: rgba(0, 2, 76, 1);
}
#questionContainer{
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 3% 2%;
    margin: 3%;
}

.faqQuestion{
    display: flex;
    flex-direction: column;
    padding:  15px;
    margin: 2% 0px;
    border-radius: 8px;
    justify-content: space-between;
    border: 1px solid rgba(204, 204, 204, 1);
}
.faqQuestion h3{
    color: rgba(0, 2, 76, 1);
    /* margin-bottom: 10px; */
}

.panel {
    display:none;
}

.panel>p{
    padding: 10px 10px;
    font-size: 20px;
    cursor: pointer;
}
.panel> ul{
    padding: 10px 30px;
    font-size: 18px;
    
}
.panel> ol{
    padding: 10px 30px;
    font-size: 18px;
}


/* Style the p tag that are used to open and close the accordion panel */
.accordion {
    background-color: white;
    color: #444;
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
  }
  
  .accordion:after {
    content: '\02795'; 
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
    border: 2px;
  }
  
  .accordion:after .active:after {
    content: "\2796"; 
    
  };



/*****CONSULTATION PAGE*******/

/***map***/


.contactMap{
    display: flex;
    height: 60vh;
    margin: 2% 5%;
    background-image: url(media/map.png);
    background-size: cover;
}
.contactBg{
    margin: 2%;
    padding: 2%;
    border-radius: 8px;
    width: 400px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(30px);
    /* filter: brightness(2px); */
}
.contactBg h2{
    margin-bottom: 30px;
}
.consultationSocials{
    display: flex;
    justify-content: space-between;
}
.socialFlex{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 25px;
}
.socialFlex img{
    margin-right: 20px;
}
/*****consultation*******/

.consultationForm{
    display: flex;
    height: auto;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(227, 233, 240, 1);
    padding: 2% 5%;
    margin: 2% 5%;
    border-radius: 18px;
    /* background-color: red; */
}
.consultationForm h3{
    text-align: center;
    color: rgba(15, 32, 51, 1);
}
form{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    /* margin: 0px auto; */
    align-items: center;
}
form input{
    outline: none;
    border: none;
    padding: 20px;
    margin: 2%;
    line-height: 30px;
    width: 90%;
    border-radius: 8px;
    background-color: rgba(236, 246, 250, 1);
}
form textarea{
    outline: none;
    border: none;
    height: 300px;
    padding: 3%;
    margin: 2%;
    width: 90%;
    border-radius: 8px;
    background-color: rgba(236, 246, 250, 1);
}
.consultationForm button{
    outline: none;
    border: none;
    color: white;
    padding: 3% ;
    margin: 2% 5%;
    width: 30%;
    border-radius: 8px;
    background-color: rgba(10, 100, 114, 1);
}

/*******PRIVACY PAGE****/


.privacyTitle{
    background-color: rgba(236, 246, 250, 1);
    height: 30vh;
    text-align: center;
    padding: 5%;
}
.privacyTitle h4{
    color: rgba(10, 100, 114, 1);
    line-height: 35px;
}
.privacyTitle h1{
    color: rgba(0, 2, 76, 1);
}

.privacyBody{
    display: flex;
    padding: 5%;
    flex-direction: column;
}
.privacyPolicy{
    line-height: 30px;
    color: rgba(15, 32, 51, 1);
}
.privacyPolicy h2{
    margin-bottom: 30px;
}
.privacyPolicy hr{
    margin: 30px 0px;
}
.privacyPolicy ul{
    margin: 0px 30px;
}

.scopepolicy{
    margin-top: 5%;
}

.privacyBtn{
    display: flex;
    width: 50%;
    justify-content: space-between;
    padding: 5% 0px;
}
.privacyBtn .colored{
    border: none;
    width: 250px;
    border-radius: 10px;
    background-color: #0A6472;
    color: white;
}
.privacyBtn .nocolor{
    border: 1px solid rgba(10, 100, 114, 1) ;
    width: 250px;
    border-radius: 10px;
    background-color: white;
    color: rgba(10, 100, 114, 1);
}
.privacyBtn button{
    cursor: pointer;
    padding: 3% 5%;
    transition: 0.3s ease-in-out;
}
.privacyBtn :hover {
    opacity: 0.6;
    background-color: black;

}

/********TRAINING**********/

.trainghr{
    margin: 6% 0px;
}
.trainingtop{
    display: flex;
    flex-direction: column;
    /* padding: 2% 0px; */
    text-align: center;
}
.trainingAmount p{
    font-weight: 600px;
    font-family: 'Raleway';
    color: rgba(10, 100, 114, 1);
}


/******COURSE**********/

.coursesection{
    padding: 0px;
}
.courseTitle{
    background-color: rgba(236, 246, 250, 1);
    height: 30vh;
    display: flex;
    padding: 0px 5%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.courseTitle h4{
    color: rgba(10, 100, 114, 1);
    line-height: 35px;
}
.courseTitle h1{
    color: rgba(0, 2, 76, 1);
}

.courseBody{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5%;
    height: auto;
}

.coursedetails{
    width: 68%;
    /* background-color: #717171; */
    height: auto;
}
.coursedetails p{
    color: rgba(15, 32, 51, 1);
    line-height: 40px;
}
.coursedetails img{
    width: 820px;
}
.coursedetails h1{
    color: rgba(15, 32, 51, 1);
    padding: 20px 0px;
}
.copyrightIntro{
    display: flex;
    padding: 4% 0px;
}
.copyrightIntro h3{
    color: rgba(15, 32, 51, 1);
}
.copyrightIntro span{
    color: rgba(10, 100, 114, 1);
}

.courselefthr{
    height: 20px;
    margin-left: 15px;
    margin-right: 3px;
}
.courserighthr{
    height: 20px;
    margin-right: 15px;
    margin-left: 3px;
}
.courseButtonBg{
    background-color: rgba(236, 246, 250, 1);
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4% 5%;
}
.activeCourseBtn{
    background-color: rgba(10, 100, 114, 1);
    color: white;
    text-align: center;
    padding: 2% 8%;
    margin: 2%;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 8px;
}
.courseBtn{
    background-color: white;
    color: rgba(15, 32, 51, 1);
    text-align: center;
    padding: 2% 8%;
    margin: 2%;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 8px;
}

.courseDescription{
    padding: 0px 15px 0px 0px;
}

/*********************/
.coursecost{
    width: 30%;
    border: 2px solid rgba(205, 220, 236, 1);    
    border-radius: 8px;
    height: 100vh;
}
.coursecost h1{
  padding: 4% 0px;
  color: rgba(10, 100, 114, 1);
  text-align: center;
}
.costFlex{
    display: flex;
    flex-direction: row;
    padding: 5%;
    margin: 5%;
    border-radius: 8px;
    justify-content: space-between;
    font-family: 'Quicksand', sans-serif;
    background-color: rgba(236, 246, 250, 1);
}
.costingFlex span{
    cursor: pointer;
}
.costingFlex h4{
    color: rgba(0, 2, 76, 1);
    margin-bottom: 15px;
}
.costingFlex input{
    background-color: rgba(236, 246, 250, 1);
    outline: none;
    border: none;
    padding: 15px 15px;
    border-radius: 8px;
    margin-bottom: 15px; 
    color: rgba(15, 32, 51, 1);
}

.costingFlex{
    display: flex;
    width: 500px;
    flex-direction: column;
    padding: 3%;
    margin: 80px auto;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    background-color: white;
}
.courseleft{
    color: rgba(0, 2, 76, 1);
    font-weight: 600px;
}
.courseright{
    color: rgba(99, 104, 109, 1)
}

.paymentBtn{
    background-color: rgba(10, 100, 114, 1);
    color: white;
    text-align: center;
    padding: 5%;
    border: none;
    outline: none;
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
}
.enrollBtn{
    background-color: rgba(10, 100, 114, 1);
    color: white;
    text-align: center;
    padding: 5%;
    margin: 5%;
    border: none;
    outline: none;
    width: 90%;
    cursor: pointer;
    border-radius: 8px;
}


/********INTELLECTUAL PAGE******************/

.intellectBlogTop{
    background-color: rgba(236, 246, 250, 1);
    display: flex;
    justify-content: space-between;
    padding: 2% 4%;
}
.intellectBlogTop h1{
    color: rgba(0, 2, 76, 1);
    font-family: 'Lora', serif;
}
.intellectBlogTop p{
    color: rgba(15, 32, 51, 1);
    font-family: 'Quicksand', sans-serif;
}

.intellectGetStarted{
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}
.intellectGetStarted h1{
    font-size: 45px;
}

.intellectWriter{
    display: flex;
    margin-top: 15px;
}

.intellectClassHr{
    display: flex;
    height: 15px;
    margin: 0px 15px;
    flex-direction: column;
}
.intellectImg{
    display: flex;
}
.intellectImg img{
   width: 600px;
}

.intellectBlogBody{
    display: flex;
    padding: 4%;
    line-height: 30px;
    justify-content: space-between;
}

.blogNav{
    width: 26%;
}
.blogNav h2{
    color: rgba(110, 121, 140, 1);
}
.blogNav h4{
    line-height: 50px;
    cursor: pointer;
    color: rgba(15, 32, 51, 1);
}
.blogNav .active a{
    color: rgba(0, 173, 239, 1) !important;
}

.blogNav a{
    text-decoration: none;
}

.blogContentHr{
    width: 70px;
    margin: 15px 0px;
}
/**********/
.blogContent{
    width: 60%;
    color: rgba(15, 32, 51, 1);
}

.blogContent h1{
    margin: 20px 0px;
    color: rgba(0, 2, 76, 1);
}

/********BUSINESS MODEL PAGE**************/

.modelContent{
    padding: 0px 5%;
    color: rgba(15, 32, 51, 1);
}
.modelContent h1{
    margin: 20px 0px;
    color: rgba(0, 2, 76, 1);
}
.modelContent ul{
    padding: 0px 2%;
    
}

.intellectBusinessModelBody{
    display: flex;
    padding: 4%;
    line-height: 30px;
    justify-content: space-between;
}

.intellectModel{
    display: flex;
    flex-direction: column;
}

.intellectModel h4{
    margin-bottom: 50px;
    color: rgba(0, 119, 181, 1);
    cursor: pointer;
}
.intellectModel h4 a{
    text-decoration: none;
}
.intellectModel h1{
    font-size: 45px;
    margin: 30px 0px;
}


/***********MODAL FOR TERMS AND CONDITION****************/
/* The Modal (background) */
.terms-modal {
    display: flex; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    /* top: 0; */
    bottom: -200px;
    width: 100%; 
    background-color: white;
    margin: 15% auto; 
    padding: 10px 20px;
    line-height: 30px;
    /* border-radius: 18px; */
    border: 1px solid #888;
    height: auto;
  }
  
  /* Modal Content/Box */

  .terms-modal-content a {
    text-decoration: underline;
    color:rgba(29, 161, 242, 1);
}
  
  .termsFlexModal{
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  /* The Close Button */
  .close {
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  .accept{
      color:rgba(10, 100, 114, 1);
      text-decoration: underline;
  }

  .decline{
      color: red;
      text-decoration: underline;

  }

  .terms-modal-content button{
   background-color: white;
   border: none;
   outline: none;
   cursor: pointer;
   padding: 0px 15px;
   font-size: 20px;
}


/***********MODAL FOR TRAINING PAYMENT****************/
/* The Modal (background) */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; 
    padding: 20px;
    line-height: 30px;
    border-radius: 18px;
    border: 1px solid #888;
    width: 500px;
  }

  .modal-content input{
    background-color: rgba(236, 246, 250, 1);
    padding: 10px 20px;
    margin: 10px;
    width: 90%;
    outline: none;
    border: none;
    border-radius: 8px;
    align-self: center;
    justify-content: center;
}
  
  .flexModal{
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  /* The Close Button */
  .close {
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  .modal-content .paymentBtn{
   background-color: rgba(10, 100, 114, 1);
   border: none;
   width: 90%;
   color: white;
   cursor: pointer;
   border-radius: 8px;
   outline: none;
   padding: 15px;
   font-size: 20px;
}
























































































/***********media query************/


@media only screen and (max-width: 850px) {

    /*****Nav start**********/
    nav {
        flex-direction: column;
      }
      .navbar-logo {
        width: 90%;
        margin: 0 auto;
        display: flex;
          justify-content: space-between;
      }
      .navbar-logo .navigation-icon {
        display: block;
        cursor: pointer;
      }
      #navigation {
        height: 250px;
        width: 90%;
        display: block;
      }
      #navigation.nav-links-container {
        display: none;
      }
  
      .nav-links {
        margin: 0 0px;
        align-items: start;
       flex-direction: column;
      }
      .nav-links > li {
        margin: 10px 10px;
      }
      .nav-links > li > a:hover {
        background-color: none;
      }
      .nav-links > li > a {
        color: #818498;
      }
      .nav-links > li > a:hover {
        background-color: yellow;
        border-radius: 16px;
      }
      .nav-links::after {
        content: "";
        position: absolute;
        top: -40px;
        right: 0px;
        margin-left: -5px;
        border-width: 20px;
        border-style: solid;
        border-color: transparent white white transparent;
      }

    
/**********Nav end**************/
    
/*****slideshow begin******/

.slideshow-container {
    height: auto;
    margin: 0px;
}
.dot{
    display: none;
}
.slideshow-container .prev, .next {
    height: 25px;
    width: 25px;
    padding: 10px;
    font-size: 12px;
    /* background-color: green; */
}
.slideshow-container .next {
    height: 25px;
    width: 25px;
    padding: 10px;
    font-size: 12px;
    /* background-color: green; */
}
.carouselBreak{
    display: none;
}
.mySlides img{
    height: auto;
}
/*****services***/

.serviceFlex{
    display: flex;
    flex-wrap: wrap;
}
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 25px;
    padding: 8px 0px;
    position: absolute;
    bottom: 50px;
    left: 40px;
    width: 80%;
    /* background-color: red; */
    text-align: left;
  }
 
 /***********Value div**********/

  .value{
    display: flex;
    flex-direction: column;
    
  }
  .valueImg{
    width: 90%;
  }
  .valueImg img{
    width: 100%;
  }
  .valueText{
    width: 100%;
  }

  .eachService{
    padding: 3% 4%;
}
  /***testimonial***/
  .testimonial{
      height: auto;
  }
  .testimonialReports img{
      width: 25px;
  }
  .flexText{
    line-height: 20px;
  }

  /*****footer****/
  footer{
      height: auto;
  }
  .topFooter{
      display: flex;
      flex-direction: column;
      padding: 2% 0px;
  }
  #mediaFlex{
      display: flex;
      width: 100%;
      padding: 2% 0px;
      flex-direction: column;
      align-items: left;
  }
  .mediaFlex{
      padding: 2% 0px;
  }
  .footerImg{
      margin-right: 3%;
  }
  .bottomFooter{
      display: flex;
      flex-direction: column;
  }
  .terms{
    display: flex;
    width: 100%;
    padding: 5% 0px;
  }
  .midFooter{
      display: flex;
      flex-direction: column;
      /* align-items: center; */
  }
  .midfooterFlex{
      justify-content: space-between;
      display: flex;
      width: 100%;
  }
  .subscribe{
      width: 100%;
      align-items: center;
      margin-bottom: 6%;
  }
  .subscribe h4{
      width: 100%;
  }
  .spacerr{
    height: 10vh;
  }
/* The Modal (background) */
.terms-modal {
    position: fixed; 
    z-index: 2000; 
    left: 0;
    bottom: -50px; 
}
  /****faq****/
  .consultationForm button{
      width: 50%;
  }


  /*********about************/

.aboutus{
    display: flex;
    flex-direction: column;
}

.aboutusImg img{
    width: 100%;
}
.aboutusImg {
    width: 90%;
}
.aboutusText{
    width: 100%;
    /* padding: 0px 3%; */
}



/*********vision and mission***********/
#missionVision{
    height: auto;
    display: flex;
    flex-direction: column;
}
.vision{
    width: 100%;
    padding: 5%;
}
.mission{
    width: 100%;
    padding: 5%;
}

/********teams**********/

#teamContainer{
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    color: white;
    /* background-color: purple; */
}

.teamdiv{
    display: flex;
    flex-direction: column;
    /* background-color: red; */
}
.teambg{
    background-size: cover;
    height: auto;
    background-repeat: no-repeat;
    width: 100%;
    margin-bottom: 15px;
}

  /*******RESOURCES*********/

  .blogpostContainer{
    align-items: center;
    justify-content: center;
  }
  .blogpostDiv{
    display: flex;
    width: 350px;
    align-items: center;
    text-align: start;
    justify-content: center;
    padding: 10px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 1rem;
}
.blogImg img{
    width: 310px;
    margin: 10px;
}
.blogBody{
    padding: 20px;
}

/*****CONSULTATION PAGE*******/

/***map***/

.contactMap{
    display: flex;
    /* height: 60vh; */
    margin: 2% 5%;
    
}

/*********COURSE SECTION**************/
.courseBody{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: auto;
    height: auto;
}
  

/***********MODAL FOR TERMS AND CONDITION****************/
/* The Modal (background) */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1;
    left: 0;
    top: 0;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; 
    padding: 20px;
    line-height: 30px;
    border-radius: 18px;
    border: 1px solid #888;
    width: 90%;
  }
  .modal-content a {
    text-decoration: underline;
    color:rgba(29, 161, 242, 1);
}
  
  .flexModal h4{
      font-size: 1.5rem;
  }

  /********INTELLECTUAL PAGE******************/

.intellectBlogTop{
    display: flex;
    flex-direction: column;
}

.intellectGetStarted{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.intellectGetStarted h1{
    font-size: 30px;
    padding: 0px;
}
.intellectModel h1{
    font-size: 30px;
    padding: 0px;
}
.breakTitle{
    display: none;
}
.intellectWriter{
    margin-bottom: 15px;
}
.intellectImg img{
   width: 100%;
   margin-bottom: 20px;
}

.intellectBlogBody{
    display: flex;
    flex-direction: column;
    padding: 4%;
    line-height: 30px;
    justify-content: space-between;
}

.blogNav{
    width: 90%;
}
.blogNav a{
    text-decoration: none;
}

/**********/
.blogContent{
    width: 100%;
    color: rgba(15, 32, 51, 1);
}

.blogContent ul{
    padding-left: 20px;
}

/******COURSE**********/

.courseBody{
    display: flex;
    flex-direction: column;
}
.courseTitle{
    height: auto;
    padding: 2%;
}
.coursedetails{
    width: 100%;
    height: auto;
    align-content: center;
}
.coursedetails img{
    width: 100%;
   border-radius: 8px;
}
.coursedetails h1{
    font-size: 30px;
}

.copyrightIntro{
    display: flex;
    flex-direction: column;
    padding: 4% 0px;
}

.courselefthr{
    display: none;
}
.courserighthr{
    display: none;
}


.courseButtonBg{
    background-color: rgba(236, 246, 250, 1);
    height: auto;
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
}

/*********************/
.coursecost{
    width: 90%;
    border: 2px solid rgba(205, 220, 236, 1);    
    border-radius: 8px;
    height: auto;
    margin: auto;
}

}

@media only screen and (max-width: 450px) {
    .spacerr{
        height: 30vh;
    }

      /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 25px;
    padding: 8px 0px;
    position: absolute;
    bottom: 50px;
    left: 40px;
    width: 80%;
    /* background-color: red; */
    text-align: left;
  }
 
}

/* @media only screen and (max-width: 1000px) {
    .text {
        color: #f2f2f2;
        font-size: 30px;
        padding: 8px 0px;
        position: absolute;
        bottom: 200px;
        left: 100px;
        width: 80%;
        text-align: left;
      }
      .dot{
          display: none;
      }
      .slideshow-container{
          margin-bottom: 0px;
      }
} */