@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;
}

body{
    font-family: 'Poppins', sans-serif;
}


/* Global Tags */

h1{
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(35, 35, 35);
}

span{
    font-size: .9rem;
    color: #757373;
}

h6{
    font-size: 1,1rem;
    color: rgb(24, 24, 49);
}

/* Navigation */
nav{
    position: fixed;
    width: 100%;
    height: 80px;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 8vw;
    box-shadow: 2px 2px 10px rgb(0, 0, 0, 0.15);
    z-index: 999;
}

nav img{
    width: 65px;
    cursor: pointer;
}

nav .navigation{
    display: flex;
}
#menu-btn{
    width: 40px;
    height: 40px;
    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: rgb(21, 21, 100);
    font-size: 16px;
    font-weight: 560;
    transition: 0.3s ease;
}

nav .navigation ul li a.active,
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("../img/home.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;
    padding-top: 40px;
}

#home h2{
    color: #fff;
    font-size: 2.8rem;
    letter-spacing: 1px;
}

#home p{
    width: 50%;
    color: #fff;
    font-size: 1.2rem;
    line-height: 25px;
}

#home .btn{
    margin-top: 30px;
	font-size: 1.5rem;
}

#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, 21, 100);
    transition: 0.3s ease;
}

#home a.blue:hover{
    color: rgb(21, 21, 100);
    background: #fff;
}

#home a.yellow{
    color: #fff;
    background: #fdc93b;
    transition: 0.3s ease;
}

#home a.yellow:hover{
    color: rgb(21, 21, 100);
    background: #fff;
}

/* features */

#features{
    padding: 5vw 8vw 0 8vw;
    text-align: center;
    margin-bottom: 50px;
}

#features .vimission-text h2{
    color: #29303b;
    padding-bottom: 15px;
}

#features .vimission-text p{
    color: #686f7a;
    font-weight: 300;
}


#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;
    text-align: start;
    padding: 2rem;
}

#features .fea-box i{
    font-size: 2.3rem;
    color: rgb(44, 44, 80);
}

#features .fea-box h3{
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(46, 46, 59);
    padding: 13px 0 7px 0;
}

#features .fea-box p{
    font-size: 1rem;
    font-weight: 400;
    color: rgb(70, 70, 87);
    
}

/* service */
 #service{
     padding: 8vw 8vw 8vw 8vw;
     text-align: center;
}

#service .services{
    text-align: start;
    background: #f9f9ff;
    height: 100%;
    position: relative;
}

#service .services img{
    width: 100%;
    height: 60%;
    background-size: cover;
    background-position: center;
}

#service .service-box{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
}


#service .services .details{
    padding: 15px 15px 0 15px;
}

#service .services h6{
    font-size: 15px;
}

#service .services .tag{
    background-color: rgb(74, 74, 136);
    color: #fff;
    line-height: 35px;
    width: 150px;
    height: 35px;
    text-align: center;
    border-radius: 15px;
    position: absolute;
    right: 15px;
    bottom: 90px;
    cursor: pointer;
    transition: 0.3s ease;
    
}

#service .services .tag:hover{
    color: #fdc93b;
    width: 155px;
    height: 40px;

}

/* Contact */

/* #contact{
    padding: 6vw 8vw 6vw 8vw;
    background-image: linear-gradient(rgba(99, 112, 168, 0.5), rgba(81, 91, 233, 0.5)), url(../img/back.jpeg);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#contact .contact-tag{
    color: #fff;
}

#contact .contact-tag h1{
    color: #fff;
}

#contact .form{
    background: #fff; 
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

#contact .form input{
    margin: 15px 0;
    padding: 15px 10px;
    border: 1px solid #413c3c;
    border-radius: 5px;
    outline: none;
}

#contact .form input::placeholder{
    border-color: #413c3c;
    color: #413c3c;
    font-weight: 500;
    font-size: 0.9rem;
}

#contact .form .btn{
    margin-top: 20px;
}

#contact .form a.yellow{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
    color: #fff;
    background: #fdc93b;
    transition: 0.3s ease;
}

#contact .form a.yellow:hover{
    color: rgb(21, 21, 100);
    background: #fff;
} */


/* footer */

footer{
    padding: 8vw;
    background-color: #101c32;
    display: flex;
    justify-content: space-between;
    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;
}

footer li:hover{
    color: rgb(241, 240, 245);
}

footer p{
    color: #7b838a;
}

footer .subscribe{
    
    margin-top: 20px;
}

footer .contact-items{
    display: flex;
    margin-top: 15px;
}

footer .contact-items i{
    padding-right: 15px;
    color: #7b838a;
    margin-top: 5px;
    
}

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: 12px 15px;
    background-color: #fff;
    font-weight: 600;
    
}   
footer .subscribe a.yellow{
    color: #2c2c2c;
    background: #fdc93b;
    transition: 0.3s ease;
}

footer .subscribe a.yellow:hover{
    color: rgb(21, 21, 100);
    background: #fff;
}


footer .copyright{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

footer .copyright p{
    color: rgb(241, 240, 245);
}

footer .copyright {
    margin-top: 0px;
}

footer .copyright .pro-links i{
    padding: 10px 13px;
    background-color: #5f7185;
    color: #fff;
    cursor: pointer;
    margin-right: 8px;
    transition: 0.3s ease;
}

footer .copyright .pro-links i:hover{
    background-color: #fdc93b;
    color: #2c2c2c;
    
    cursor: pointer;
}
#about-home{
    background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)), url("../img/inner-home.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;
    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: #29303b;
    padding-bottom: 15px;
}

#about-container .about-text p{
    color: #686f7a;
    font-weight: 300;
}

/* service inner */

#service-inner{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8vw;
}

#service-inner h3{
    padding: 35px 0 25px 0;
}

#service-inner p{
    color: #64626e;
}
#service-inner hr{
    height: 1px;
    background: rgba(236, 226, 229, 0.5);
    margin-top: 40px;
}
#service-inner .overview{
    width: 70%;
}

#service-inner .overview .service-img{
    width: 100%;
    height: 60vh;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

#service-inner .overview .service-head{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#service-inner .overview .service-head .s-name{
    width: 70%;
}

#service-inner .overview .service-head .s-name h2{
    color: #29303b;
}
#service-inner .overview .service-head .s-name p{
    font-size: 15px;
}

#service-inner .learn p{
    font-size: 15px;
    padding-bottom: 15px;
}

#service-inner p i{
    color: #654ce4;
    font-weight: 700;
    margin-right: 20px;
}

#service-inner .s-photo{
    display: flex;
}

#service-inner .s-photo img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
}

#service-inner .enroll{
    width: 300px;
    padding: 0 30px 30px 30px;
    border-radius: 11px;
    box-shadow: 0px 20px 40px 0 rgb(11 2 55 / 8%);
}

#service-inner .enroll h3{
    padding-bottom: 10px;
}

#service-inner .enroll p{
    font-size: 15px;
    color: #64626e;
    margin: 15px 0;
}

#service-inner .enroll i{
    color: #654ce4;
    font-weight: 500;
    margin-right: 18px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
}

/* contact */

#contact{
    padding: 8vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#contact .getin{
    width: 350px;
}

#contact .getin h2{
    color: #2c234d;
    font-size: 30px;
    font-weight: 800;
    line-height: .8;
    margin-bottom: 16px;
}

#contact .getin p{
    color: #686875;
    line-height: 24px;
    margin-bottom: 33px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e4ed;
}

#contact .getin h3{
    color: #2c234d;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 15px;
}

#contact .getin .getin-details div{
    display: flex;
}

#contact .getin .getin-details div .get{
    font-size: 16px;
    line-height: 22px;
    color: #5838fc;
    margin-right: 20px;
}

#contact .getin .getin-details div p{
    font-size: 14px;
    border-bottom: none;
    line-height: 22px;
    margin-bottom: 15px;
}

.pro-links {
    margin-top: 10px;
}

#contact .getin .getin-details .pro-links i{
    padding: 10px 13px;
    border: 1px solid rgb(21, 21, 100);
    cursor: pointer;
    margin-right: 8px;
    transition: 0.3s ease;
}

#contact .getin .getin-details .pro-links i:hover{
    background: rgb(21, 21, 100);
    color: #fff;
    border: 1px solid rgb(21, 21, 100);
    cursor: pointer;
}

#contact .form{
    width: 60%;
    background: #f7f6fa;
    padding: 40px;
    border-radius: 10px;
}

#contact .form{
    font-size: 24px;
    color: #2c234d;
    line-height: 30px;
    margin-bottom: 8px;
}

#contact .form p{
    color: #686875;
    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: #fff;
    color: #7e7c87;
    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: #fff;
    color: #7e7c87;
    outline: none;
    padding: 20px 30px;
    margin-bottom: 20px;
}

#contact .form button{
    font-size: .9rem;
    padding: 13px 25px;
    background: rgb(21, 21, 100);
    border-radius: 5px;
    outline: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    transition: 0.3s ease;
}

 @media screen and (max-width: 769px){

    nav{
        padding: 15px 20px;

    }
    nav img{
        width: 50px;
    }
    #menu-btn{
        display: initial;
    }
    #menu-close{
        display: initial;
        font-size: 1.6rem;
        color: #29303b;
        padding: 30px 0 20px 20px;
    }
    nav .navigation ul{
        position: absolute;
        top: 0;    
        right: -220px;
        width: 220px;
        background: #fff;
        backdrop-filter: blur(4.5px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: 0.3s ease;
    }
    nav .navigation ul.active{
        right: 0;
    }
    nav .navigation ul li{
        padding: 20px 0 2px 40px;
        margin-left: 0;
    }
    nav .navigation ul li a{
        color: rgb(21, 21, 100);
    }

    #home{
        padding-top: 0px;
        height: 70vh;
    }
	
	#home h2{
	
		font-size: 1.9rem;
		
	}


    #home p{
		font-size: 0.9rem;
        width: 90%;
    }

    #feature{
        padding: 8vw 4vw 0 4vw;
    }

    #service{
        padding: 8vw 4vw 0 4vw;
    }

    #contact{
        margin-top: 8vw;
        padding: 6vw 4vw 6vw 4vw
    }
    
    #about-home{
        height: 50vw;
    }
	#about-home h2{
        font-size: 1.5rem;
    }
    #about-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items:center;
        
        padding: 8vw 4vw 2vw 4vw;
    }
    #about-container .about-img{
        width: 100%;
        padding-right: 5px;
    }


    #about-container .about-text{
        
        width: 100%;
        
    }

    #about-container .about-text h2{
        text-align: center;
    }

    #about-container .about-text p{
        text-align: center;
    }

    /* service-inner */

    #service-inner{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items:flex-start;
        padding: 8vw 4vw;
    }

    #service-inner .overview{
        width: 100%;
    }

    #service-inner .overview .service-img{
        width: 100%;
        height: 100%;
    }

    #service-inner .enroll{
        width: 100%;
        margin-top: 25px;
    }

    /* contact */

    #contact{
        padding: 8vw 4vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items:flex-start;

    }

    #contact .getin{
        width: 100%;
    } 

    #contact .getin .getin-details h3{
        width: 100%;
    }

    #contact .form{
        margin-top: 15px;
        width: 100%;
    }
}


 @media screen and (max-width:475px){

    /* navbar */
    nav{
        padding: 15px 20px;
    }
    nav img{
        width: 50px;
    }
    #menu-btn{
        display: initial;
    }
    #menu-close{
        display: initial;
        font-size: 1.6rem;
        color: #29303b;
        padding: 30px 0 20px 20px;
    }
    
    nav .navigation ul{
        position: absolute;
        top: 0;    
        right: -220px;
        width: 220px;
        /*background: rgba(17, 20, 104, 0.45);*/
		background: #fff;
        backdrop-filter: blur(4.5px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: 0.3s ease;
    }
    nav .navigation ul.active{
        right: 0;
    }
    #contact{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* about */
    #about-container{
        flex-direction: column-reverse;
    }

    /* #about-container .about-home h2{
        font-size: 10px;
    } */
    #about-container .about-img{
        width: 100%;
        padding-right: 0px;
    }

    #about-container .about-text{
        width: 100%;
        padding-bottom: 20px;
        
    }

    /* service inner */

    #service-inner .overview .service-head .s-name{
        width: 100%;
    }

    #service-inner .overview .service-head .s-name h2{
        font-size: 22px;
    }

    #service-inner .enroll{
        width: 100%;
    }

    /* contact */

    #contact{
        padding: 8vw 4vw;
        flex-direction: column;
        align-content: flex-start;
        justify-content: flex-start;
    }

    #contact .getin{
        width: 100%;
        margin-bottom: 30px;
    }

    #contact .form{
        width: 100%;
        padding: 40px 30px;
    }

    #contact .form .form-row {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
    }

    #contact .form .form-row input{
        width: 100%;
    }

 
 }