@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
}

/* Global Tags */

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(35, 131, 67);
}

span {
  font-size: 0.9rem;
  color: #757373;
}

h6 {
  font-size: 1.1rem;
  color: rgb(36, 166, 73);
}

/* Navigation */
nav {
  position: fixed;
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1vw 8vw;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}

nav img {
  width: 150px;
  cursor: pointer;
}

nav .navigation ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav .navigation ul li {
  list-style-type: none;
  margin-left: 30px;
}

nav .navigation ul li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: black;
  transition: 0.3s ease;
}

nav .navigation ul li a:hover {
  color: #fdc938;
}


/* Home */

#home {
  background-image: linear-gradient(rgba(5, 54, 28, 0.3), rgba(3, 28, 4, 0.7)), url('../images/school2.jpg');
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 40px;
}

#home h2 {
  color: white;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

#home p {
  width: 50%;
  color: white;
  font-size: 1rem;
  line-height: 25px;
}

#home .btn {
  margin-top: 30px;
}

#home a {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: #fff;
  font-weight: 600;
  border-radius: 5px;
}

#home a.blue {
  color: #fff;
  background: rgb(21, 100, 66);
  transition: 0.3s ease;
}

#home a.blue:hover {
  color: rgb(21, 100, 58);
  background: #fff;
}

/* features */
#features {
  padding: 5vw 8vw 0 8vw;
  text-align: center;
}

#features .fea-base {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 1rem;
  margin-top: 50px;

}

#features .fea-box {
  background: #f9f9ff;
}

#features .fea-box i {
  font-size: 2.3rem;
  color: rgb(44, 80, 57);
}

#features .fea-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgb(46, 59, 51);
  padding: 13px 0 7px 0;

}

#features .fea-box p {
  font-size: 1rem;
  font-weight: 400;
  color: rgb(46, 59, 54);
}


/* course */

/* registration */
#registration{
  margin: 50px 0px 20px 0px;
  padding: 6vw 8vw 6vw 8vw;
  background-image: linear-gradient(rgba(41, 163, 77, 0.5),rgba(21, 90, 44, 0.5)),url('../images/signup.jpg');
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#registration .reminder{
  color: #fff;
}
#registration .reminder h1 {
  color: #fff;
}
#registration .reminder .time{
  display: flex;
  margin-top: 40px;
}

#registration .reminder .time .date{
  text-align: center;
  padding: 13px 33px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 32px 0 rgba(31, 135, 45, 0.37);
}

#registration .form{
  background: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  box-shadow: 0 8px 32px 0 rgba(31, 135, 52, 0.37);
}

#registration .form input{
  margin: 15px 0px;
  padding: 15px 10px;
  border: 1px solid rgb(40, 241, 100);
  outline: none;
} 


/* experts */
#experts{
  padding: 8vw 8vw 0 8vw;
  text-align: center;
}
#experts .expert-box{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  grid-gap:1rem;
  margin-top: 50px;
}
#experts .expert-box .profile{
  background: #fafaf1;
  padding: 30px 10px;
}
/* footer */
footer{
  padding: 8vw;
  background-color: #101c32;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap:wrap;
}
footer .footer-col{

  padding-bottom: 40px;
}

footer h3{
  color: rgb(247, 247, 247);
  font-weight: 200;
  padding-bottom: 20px;
  font-size: 15px;
  cursor: pointer;
}

footer li{
  list-style: none;
  color: #7b838a;
  padding: 10px 0px;
}

footer p{
  color: #7b838a;

}

footer .subscribe{
  margin-top: 20px;
}

footer input{
  width: 220px;
  padding: 15px 12px;
  background: #334f6c;
  border: none;
  outline: none;
  color: #fff;
}
footer .subscribe a{

    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
  }
  
  footer .subscribe a {
    color: #fff;
    background: rgb(21, 100, 66);
    transition: 0.3s ease;
  }
  
  footer .subscribe a:hover {
    color: rgb(21, 100, 58);
    background: #fff;
  }

/* About */
#about-home {
  background-image: linear-gradient(rgba(5, 54, 10, 0.3), rgba(8, 91, 45, 0.7)), url('../images/back1.jpg');
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 40px;
}

#about-home h2{
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 1px;
}
#about-container{
  display: flex;
  align-items: center;
  padding: 8vw 8vw 2vw 8vw;
}

#about-container .about-img{
  width: 60%;
  padding-right: 60px;
}
#about-container .about-img img{
  width: 100%;

}

#about-container .about-text{
  width: 40%;

}
#about-container .about-text h2{
  color: #106317;
  padding-bottom: 15px;
}

#about-container .about-text p{
  color: #19442a;
  font-weight:400;
}
#about-container .about-text .about-fe{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
}
#about-container .about-text .about-fe img{
  width: 50px;
  background-size: cover;
  background-position: center;
}
#about-container .about-text .about-fe .fe-text{
  width: 90%;
}

#about-container .about-text .about-fe .fe-text h5{
  font-size: 16px;
  color: #1b7e3c;
}
/* Blog */
#blog-container{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8vw;
}

#blog-container .blogs{
  width: 60%;
}
#blog-container .blogs img{
width:100%;
border-radius: 90px;
}
#blog-container .blogs .post h3{
  color: #293b2c;
  padding: 15px 0px 10px 0px;
}
#blog-container .blogs .post{
  padding-bottom: 40px;
}
#blog-container .blogs .post p{
  color: #757375;
  padding-bottom: 20px;
}
 #read-more {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: rgb(21, 100, 37);
  color: #fff;
}

#blog-container .cate{
width: 30%;
}

#blog-container .blog-details{
  width: 60%;
  margin: 0 auto;

}
#blog-container .blog-details p{
  text-align: justify;

}



/* Course_inner */

/* contact */
#contact{
  padding: 8vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#contact .getin{
  width: 350px;
}

#contact .getin h2{

  color:#000000;
  font-size:30px;
  font-weight:800;
  line-height: .8;
  margin-bottom: 10px;
}

#contact .getin p{
  color:#000000;
  line-height: 24px;
  margin-bottom: 33px;
  padding-bottom: 25px;
  border-bottom: 1px solid black;
}
#contact .getin h3{

  color:#000000;
  font-size:16px;
  font-weight:600;
  line-height: 25px;
  margin-bottom: 15px;
}

#contact .getin .getin-details div{
display: flex;
}



#contact .getin .getin-details div .get{
  font-size: 16px;
  line-height: 22px;
  color: #0f701e;
  margin-right:20px
  
  }
  #contact .getin .getin-details div p{
    border-bottom: none;
    line-height: 22px;
    margin-bottom: 15px;
    font-size: 14px;
  }
  #contact .getin .getin-details .pro-links i{
    margin-right: 8px;
  }

#contact .form{
  width: 90%;
  background-color: #f0f0f3;
  
}
#contact .form p{
  color: #0f701e;
  line-height: 24px;
  padding-bottom: 25px;
}

#contact .form .form-row{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
#contact .form .form-row input{
  width: 48%;
  font-size: 14px;
  font-weight:400;
  border-radius: 3px;
  border: none;
  background: white;
  color: #0f701e;
  outline: none;
  padding: 20px 30px;
  margin-bottom: 20px;
}


#contact .form .form-col input,
#contact .form .form-col textarea{
  width: 100%;
  font-size: 14px;
  font-weight:400;
  border-radius: 3px;
  border: none;
  background: white;
  color: #0f701e;
  outline: none;
  padding: 20px 30px;
  margin-bottom: 20px;
  
}








#contact .form button {
  font-size: .9rem;
  padding: 13px 25px;
  background: rgb(21, 100, 37);
  border-radius: 5px;
  outline: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
}


/* Annoucement */

/* responsive */

@media (max-width:999px) {
  .card{
  gap:2px;
  margin-left: 30px;

  }  
}
@media (max-width: 769px) {


  /* Blog */
  #bog-container{
    padding: 8vw 4vw;
  }
  #blog-container .blog-details{
    width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 475px) {
  #bog-container{
    flex-direction: column;
    
  }
  #bog-container .blogs{
   width: 100%;
  }
  #bog-container .cate{
    width: 100%;
  }
}