@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@900&family=Ubuntu:wght@300;400;700&display=swap');
* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;

}

h1{
    font-size: 2.5rem;
    font-weight: 700;
    color:black;
    
}

span {
    font: .9rem;
    color:#757373;

}

h6 {
    font-size: 1.1rem;
    color:rgb(24,24,49);

}

/* Navigation */
nav{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1vw 8vw;
    align-items: center;
    box-shadow:2px 2px 10px rgba(0,0,0,0.15);
    position:fixed ;
    width:100%;
    background-color: white;
    z-index: 999;

}

nav img{
    width: 150px;
    cursor: pointer;

}

nav .navigation{
    display:flex;
}

#menu-btn{
    width:30px;
    height:30px;
    display: none;
}

#menu-close{
    display: none;
}

nav .navigation ul{
    display:flex;
    justify-content: flex-end;
    align-items:center;
}

nav .navigation ul li{
    list-style:none;
    margin-left: 30px;
}

nav .navigation ul li a{
    text-decoration: none;
    color:black;
    font-size:16px;
    font-weight:500;
    transition:0.3s ease;

}

nav .navigation ul li a:hover{
    color:#FDC93B;
}

/* Home */

#home{
    background-image: linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url("imaages/background.jpg");
    width:100%;
    height: 100vh;    
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column ;
    justify-content: center;
    align-items:center;
    text-align: center;
}

#home h2{
    color:black;
    font-size: 2.2rem;
    letter-spacing:1px;
    padding-top: 40px;
}

#home p{
    width: 50%;
    color:black;
    font-size: 0.9rem;
    line-height: 25px;
}

#home .btn {
    margin-top: 30px;
}
#home a{
    text-decoration: none;
    font-size: 0.9rem;
    padding:13px 35px;
    background-color: white;
    font-weight: 600;
    border-radius:5px ;
}

#home a.blue{
    color:white;
    background:rgb(21,21,100);
    transition:0.3s ease;
}

#home a.blue:hover{
    color:rgb(21,21,100);
    background:white;
}

#home a.yellow{
    color:white;
    background: #fdc93b;
    transition:0.3s ease;
}

#home a.yellow:hover{
    color:rgb(21,21,100);
    background:white;
}

/* 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:5px;
}

#features .fea-box {
    background: F9F9FF;
    text-align: start;
}

#features .fea-box1 {
    background: F9F9FF;
    text-align: start;
}



#features .fea-box h3 {
    font-size:1.2rem;
    font-weight: 600;
    color:rgb(46,46,59);
    padding:13px 0 7px 0;
    text-align: center;
}

#features .fea-box1 h3 {
    font-size:1.2rem;
    font-weight: 600;
    color:rgb(46,46,59);
    padding:13px 0 7px 0;
    text-align: center;
}

#features .fea-box p {
    font-size:1rem;
    font-weight: 400;
    color:rgb(70,70,87);
    text-align: center;
    
}

#features .fea-box1 p {
    font-size:1rem;
    font-weight: 400;
    color:rgb(70,70,87);
    text-align: center;
    
}

#features .fea-box1  {
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    grid-gap: 1rem;
    margin-top:0.2px;
    
}


/* course */

#course{
    padding:8vw 8vw 8vw 8vw;
    text-align: center;
}

#course .course-box {
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    grid-gap: 1rem;
    margin-top:5px;
}
#course .courses{
    text-align: start;
    background-color:#F9F9FF ;;
    height:100%;
    position:relative;
}

#course .courses img{
    width:100%;
    height:60%;
    background-size: cover;
    background-position: center;


}

#course .courses .details {
 padding: 15px 15px 0 15px;
}

#course .courses  .cost{
    background-color:rgb(74,74, 136);
    color:white;
    line-height: 70px;
    width:70px;
    height:70px;
    text-align: center;
    border-radius: 50%;
    position:absolute;
    right:15px;
    bottom:155px;
}
/* Profiles */

#experts{
    padding:8vw 8vw 8vw 8vw;
    text-align: center;
} 

#experts .expert-box{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-gap: 1rem;
    margin-top:5px;
}

#experts img{
    width: 150px;
    

}

#experts .expert-box .profile{
    background:#fafaf1 ;
    padding:30px 10px;

}

/* footer */

footer {
    padding: 8vw;
    background-color: #101C32;
    display:flex;
    justify-content:space-evenly ;
    align-items: flex-start;
    flex-wrap: wrap;
}

footer .footer col{
    padding-bottom: 40px;
}

footer h3{
    color:rgb(241,240,245);
    font-weight: 600;
    padding-bottom: 20px;
}

footer li{
    list-style:none;
    color:#7b838a;
    padding: 10px 0;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

footer li:hover{
    color:rgb(241,240,245);

}

footer p{
    color:rgb(241,240,245);
}

footer .copyright{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;

}

/* About */

#about-home{
    background-image: linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url("imaages/background.jpg");
    width:100%;
    height: 60vh;    
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column ;
    justify-content: center;
    align-items:center;
    text-align: center;
}

#about-home h2{
    color:black;
    font-size: 2.2rem;
    letter-spacing:1px;

}

#about-container{
    display: flex;
    align-items: center;
    padding: 8vw 8vw 2vw 8vw;
    width:150%;
    padding-left:450px;
}

#about-container .about-img{
    width: 60%;

}

#about-container .about-text{
    width: 40%;
    
    flex:stretch;
    align-items: center;
    
}

#about-container .about-text h2{
    color:#29303B;
    padding-bottom: 15px;
}

#about-container .about-text p{
    color:#686F7A;
    font-weight: 300;
    padding-bottom: 15px;
}

#about-container .about-text .about-fe{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;

}

#about-container .about-text .about-fe img{
    width:50px;
    background-size: cover;
    background-position: center;
    margin-right: 20px;
}

#about-container .about-text .about-fe .fe-text{
    width:90%;
}

#about-container .about-text .about-fe .fe-text h5{
    font-size:16px;
    color:29303B;
}

#trust{
    text-align: center;
    padding:8vw;
}

#trust .trust-img{
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#trust .trust-img img{
    width:90px;
    height:auto;

}

/* Blog */

#blog-container .blogs .post{
    padding-bottom: 60px;
}

#blog-container{
    display:flex;
    align-items: flex-start;
    justify-content: space-between;
    padding:8vw;
}

#blog-container .blogs{
    width:60%;
}

#blog-container .blogs .post h3{
    color:#29303B;
    padding:15px 0 10px 0;
}

#blog-container .blogs .post a{
    text-decoration: none;
    font-size: 0.9rem;
    padding:13px 35px;
    background-color: rgb(21,21,100);
    color:white;
    border-radius: 5px;
    font-weight: 600;
}

#blog-container .blogs .post p{
    color:#757373;
    padding-bottom:20px;
}

#blog-container .blogs img{
    width:100%;
    border-radius: 19px;
}

#blog-container .cate{
    width:30%;
}

#blog-container .cate h2{
    padding-bottom: 7px;
}

#blog-container .cate a{
    text-decoration: none;
    color:#757373;
    font-weight: 500;
    line-height: 45px;
}

#blog-container .blogpost{
    width: 60%;
    margin:0 auto;
}



@media(max-width:768){
    nav{
        padding:15px 20px;
    }

    nav img{
        width:130px;
    }

    #menu-btn{

        display: initial;
    }
    
    #menu-close{
        display: initial;
        font-size: 1.6rem;
        color:#fff;
        padding:30px 0 20px 20px;
    }

    nav .navigation ul{
        position:absolute;
        top:0;
        right:0;
        width: 220px;
        height:100vh;
        background: rgba(17,20,104,0.45);
        backdrop-filter: blur(.5px);
        border: 1px solid;

        display:flex;
        flex-direction:column;
        justify-content:flex-start;
        align-items:flex-start;
    }

    nav .navigation ul li{
        padding:20px 0 20px 40px;
        margin-left:0;
    }

    nav .navigation ul li a{
        color:#fff;
    }
}

#features{
    padding-bottom: 50px;
}


/* Courses */

#course .courses1{
    text-align: start;
    background-color:#F9F9FF ;;
    height:100%;
    position:relative;
}

#course .courses1 img{
    width:100%;
    height:60%;
    background-size: cover;
    background-position: center;


}

#course .courses1 .details {
 padding: 15px 15px 0 15px;
}

#course .courses1  .cost{
    background-color:rgb(74,74, 136);
    color:white;
    line-height: 70px;
    width:70px;
    height:70px;
    text-align: center;
    border-radius: 50%;
    position:absolute;
    right:15px;
    bottom:155px;
}

#course-box .courses1 .details a{
    text-decoration: none;
    font-size: 0.9rem;
    padding:13px 35px;
    background-color: rgb(21,21,100);
    color:white;
    border-radius: 5px;
    font-weight: 600;
}

/* Contact Page */


#contact{
    padding:8vw;
    
}

#contact .getin{
    width:1000px;
}

#contact .getin h2{
    color:#2c234d;
    font-size: 30px;
    font-weight: 800;
    line-height: .8;
    margin-bottom: 16px;
    text-align: center;
}



#contact .getin p{
    color:#686875;
    line-height: 24px;
    margin-bottom: 33px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e4ed;
    text-align: center;
    
}

#contact .getin h3{
    color:#2c234d;
    font-size: 15px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 15px;
}

#contact .getin .getin-details div{
    display:flex;
}

#contact .getin .getin-details div p .img{
    font-size: 16px;
    line-height: 22px;
    color:#5838fc;
    margin-left: 40px;
}

#contact .getin .getin-details div p{
    font-size: 14px;
    border-bottom: none;
    line-height: 22px;
    margin-bottom: 15px;
}








