*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'poppins',sans-serif;
}
h1{
    font-size:2.5rem;
    font-weight: 700;
    color: rgb(35, 35, 85);
}
span{
    font-size: 1.1rem;
    color: #757373;
}
h6{
    font-size: 1.1rem;
    color: rgb(24, 24, 48);
}
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);
}
nav img{
    
    cursor: pointer;
}
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(35, 35, 85);
    font-size: 20px;
    font-weight: 500;
    transition: 0.3s ease;
}


#home{
    background-image: linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.4)),url(Ani.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;
}
nav .navigation ul li a:hover{
    color:whitesmoke;
    background-color: skyblue;
    border-radius: 10%;
}
.blue:hover{
    background-color: white;
    color: royalblue;
}
.yellow:hover{
    background-color: white;
    color: royalblue;
}
#home h2{
    color: whitesmoke;
    font-size: 2.2rem;
    line-height: 25px;
}
#home p{
    width: 50%;
    color: whitesmoke;
    font-size: 0.9rem;
    line-height: 25px;
}

#home a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: whitesmoke;
    font-weight: 600;
    border-radius: 15px;
}

#home .btn{
    margin-top: 30px;
}
#home a.blue{
    color: white;
    background-color: skyblue;
    transition: 0.3s ease;
}
#home a.blue:hover{
    background-color: royalblue;
    color: black;
}
#home a.yellow{
    color:black;
    background-color: orange;
    transition: 0.3s ease;
}
#home a.yellow:hover{
    background-color: royalblue;
    color: black;
}

/*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{
    text-align: left;
}

#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 0px;
}



#features .fea-box p{
    font-size: 1.2rem;
    font-weight: 400;
    color: rgb(46, 46, 59);
   
}
/*Course*/
#course{
    padding: 8vw 8vw 0 8vw;
    text-align: center;
}

#course .course-box{
    display:grid ;
    grid-template-columns: repeat(auto-fit,minmax(320px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;
   
}

#course .courses{
    text-align: start;
    background-color: #F9F9FF;
    height: 100%;
}

#course .courses img{
    width: 100%;
    height: 60%;
    background-size: cover;
    background-position: center;
}

#course .courses .details{
    padding: 15px 15px 0px 15px;

}

#course .courses .details i{
    color: #fdc938;
    
}

#registration{
    padding: 6vw 8vw 6vw 8vw;
    background-image: linear-gradient(rgba(99,112,168,0.5),rgba(81,91,233,0.5)),url(lap1.jpg);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#registration .reminder{
    color: white;
}

#registration .reminder h1{
    color: white;
}

#registration .reminder .time{
    display: flex;
    margin-top: 40px;
}

#registration .reminder .time .date{
    text-align: center;
    padding: 13px 33px;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135,0.37);
    border-radius: 10px;
    margin: 0 5px 10px 5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1.1rem;
    font-weight: 600;
}

#registration .form{
    background-color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-shadow:  0 8px 32px 0 rgba(31, 38, 135,0.37);
    
}

#registration .form input{
    margin: 15px 0;
    margin: 15px 10px;
    border: 1px solid rgb(84,40 ,241 );
    outline: none;
}

#registration .form input::placeholder{
    color: #413c3c;
    font-weight: 500;
    font-size: 0.9rem;
}

#registration .form .btn{
    margin-top: 20px;
}

#registration .form a.yellow{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: whitesmoke;
    font-weight: 600;
    border-radius: 15px;
    color:black;
    background-color: orange;
    transition: 0.3s ease;
}
#registration .form a.yellow:hover{
    background-color: royalblue;
    color: black;
}

#Adi{
    padding: 8vw 8vw 0 8vw;
    text-align: center;
}

#Adi .owner{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    grid-gap: 1rem;
    margin-top: 50px;   
}

#Adi .owner .ss{
    background-color: whitesmoke;
    padding: 30px 10px;
}

#Adi .owner .ss .link{
    margin-top: 10px;
}

.link i{
    padding: 10px 13px;
    border: 1px solid rgb(21, 21, 100);
    cursor: pointer;
    transition: 0.3s ease;
}

.link i:hover{
    background-color: royalblue;
    color: black;
    border: 1px solid rgb(21, 21, 100);
    cursor: pointer;
}

.width-25{
    width: 25%;
    float: left;
}

.footer{
    background-color: #232f3e;
    padding: 50px 0px;
}
.quicklink-heading{
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}
.quicklink-menu{
    list-style: none;
    padding-left: 10px;
    
}
.quicklink-menu li a {
    color: white;
    line-height: 2.5;
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
}
.get-in-touch{
    list-style: none;
    padding-left: 10px;
}
.get-in-touch li {
    color: white;
    line-height: 2.5;
    font-size: 15px;
    text-decoration: none;
}
.social-media{
    list-style: none;
    margin-top: 10px;
}
.social-media li{
    float: left;
    padding: 0px 8px;
}
.social-media li img{
    width: 50px;
}
.footer2-bacbor{
    background-color: #232f3e;
    padding: 10px 0px;
    
}
.footer2-content{
    color: white;
    text-align: center;
}
