

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: sans-serif;
}

h1 {

    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(35, 35, 85);
}
span {
    font-size: .9rem;
    color: #757373;
}

h6{

    font-size: 1.1rem;
    color: rgb(24, 24, 49)
}
/* navigation */

nav {

    position: fixed;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 8vw;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
    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 a {

    text-decoration: none;
    color: rgb(21, 21, 100);
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

nav .navigation ul a:active,
nav .navigation ul a:hover{

    color: #fdc93b;
}

/* Home */

#home {

    background-image: linear-gradient(rgba(9,5,54,0.3), rgba(5,4,46,0.7)),
    url(images/back.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.2rem;
    letter-spacing: 1px;
}
#home p {

    width: 50%;
    color: #fff;
    font-size: 0.9rem;
    line-height: 25px;
}
#home a {

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

}
#home .btn {

    margin-top: 15px;
   
    

}
#home a.blue {

    color: #fff;
    background-color: rgb(21, 21, 100);
    transition: 0.3s ease;
    

}
#home a.blue:hover {

    color: rgb(21, 21, 100);
    background-color:#fff;
}

#home a.yellow {

    color: #fff;
    background-color: #fdc93b;
    transition: 0.3s ease;
}
#home a.yellow:hover {

    color: #fdc93b;
    background-color:#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));
    gap: 1.2rem;
    margin-top: 50px;
 
}

#features .fea-box {

    background-color: #f9f9ff;
    text-align: start;

}
#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);
   

}



/* Course */

#course {

    padding: 8vw 8vw 8vw 8vw;
    text-align: center;
}
#course .course-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.2rem;
    margin-top: 50px;


}

#course .courses  {

    text-align: start;
    background: #f9f9ff;
    height: 100%;
}
#course .courses img {

    width: 100%;
    height: 60%;
    background-size: cover;
    background-position: center;
    position: relative;
}
#course .courses details {

    padding: 15px 15px 0 15px;
}
#course .courses .details i {

    color: #fdc93b;
    font-size: .9rem;
}
#course .courses .cost {

    background-color: rgb(74, 74, 136);
    color: #fff;
    line-height: 70px;
    width: 70px;
    height: 70px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    bottom: 100px;

}
/* registration */

#registration {
    padding: 6vw 8vw 6vw 8vw;
    background-image: linear-gradient(rgba(99,112,168,0.5),
     rgba(81,91,233,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(225,225,255,0.25);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 5px;
    margin: 0 5px 10px 5px;
    border: 2px solid rgba(225,225,255,0.25);
    font-size: 1.1rem;
    font-weight: 600;
}
#registration .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);

}

#registration .form input {

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

    color: #644d4d;
    font-weight: 500;
    font-size: 0.9rem;
}
#registration .form .btn {

    margin-top: 20px;
}

#registration .form a.yellow {

    color: #fff;
    background-color: #fdc93b;
    transition: 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px ;
 
    font-weight: 600;
    border-radius: 5px;
}

#registration .form a.yellow:hover {
    color: #fff;
    background-color: rgb(21, 21, 100) ;
}

/* expert */

/* #experts {

    padding: 8vw 8vw 0 8vw;
    text-align: center;
}
#expects .expert-box {

    display: -ms-inline-grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 50px;

    display: grid;
    column-gap: 50px;
}
#expects .expert-box .profile {

    background: #fafaf1;
    padding: 30px 10px;
} */



/* 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;

}
#contact .getin  .getin-details  .pro-links i {

    margin-right: 8px;
}
#contact .form {
    width: 60%;
    background: #f7f6fa;
    padding: 40px;
    border-radius: 10px;
}
#contact .form h4 {
    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: rgba(21, 21, 100);
    border-radius: 5px;
    outline: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    color:#fff


}
#map {

    width: 100%;
    height: 70vh;
    margin-bottom: 8vw;
}

#map iframe{

    width: 100%;
    height: 100%;
}
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;
    transition: 0.3s ease;
}

footer li:hover {

    color: rgb(241, 240, 245);
}

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: 12px 15px ;
    background-color: #fff;
    font-weight: 600;
    /* border-radius: 5px; */
}
footer .subscribe a.yellow {

    color: #2c2c2c;
    background-color: #fdc93b;
    transition: 0.3s ease;
}
footer .subscribe a.yellow:hover {

    color: #fdc93b;
    background-color:#fff
}

footer .copyright {

    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: ceter;
    width: 100%;
    flex-wrap: wrap;
}

footer .copyright  p {

    color: #fff;
}
footer .copyright .pro-links {

    margin-top: 10px;

}

footer .copyright .pro-links i {

    padding: 10px 13px;
    background: #2c4066;
   
    cursor: pointer;
    transition: 0.4s ease;

}

footer .copyright .pro-links i:hover{

    background: #fdc93b;

    color: #fff;
    /* border: 1px solid rgb(21, 21, 100); */
    
}


@media (max-width: 768px ) {

    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: -220px;
        width: 220px;
        background: #fff;
        height: 100vh;
        background: rgb(17, 20, 104, 0.45);
        backdrop-filter: blur(4.5px);
        border: 1px solid rgba(225,225,255,0.18);
        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 20px 40px;
        margin-left: 0;
    }

    nav .navigation ul li a {
         color: #fff;

    }
    #home {
        
        padding-top: 0px;
    }

    #home p {

        width: 90%;
    }

    #features {

        padding: 8vw 4vw 0 4vw;
    }

    #course {

        padding: 8vw 4vw 0 4vw ;
    }

    #registration {

        margin-top: 8vh;
        padding: 6vw 4vw 6vw 4vw;
    }
    #registration .reminder .time {
        display: flex;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    footer .copyright .pro-links {

        margin-top: 20px;
    }

    /* Course-inner */

    #course-inner {

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 8vw 4vw;
    }

    
    #course-inner .overview {

        width: 100%;
    }

    
    #course-inner .overview .course-img {

        width: 100%;
        height: 100%;
    }

    #course-inner .enroll {
        margin-top: 25px;
    }
    #contact {

        padding: 8vw 4vw;
    }
    #contact .getin {
        width: 250px;
    }

    

    }

    @media (max-width: 475px) {


        #registration {

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        #registration .reminder .time {

            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            margin-bottom: 20px;
        }

        /* course_inner */

       #course-inner .overview .course-head .course-name {

        width: 50%;
       }
       #course-inner .overview .course-head .course-name h2 {

        font-size: 22px;
       }
       #course-inner .overview .course-head span {

        font-size: 22px;
       }

       #course-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%;
}
           
       
    }


    @media (max-width: 376px) {
  
        footer input {
            width: 100%;
            margin-bottom: 20px;
        }
    }
