/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400&display=swap');

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    margin: 0;
}

html body {
    font-family: 'Poppins', sans-serif;
    color: black;
}

/*=============== TOP NAVBAR ===============*/

.navbar {
    background-color: #fff;
}

form .search-button {
    width: 480px;
    background-color: #E5E5E5;
    color: #9F9F9F;
    border-radius: 25px;
}

form .search-text {
    background-color: #E5E5E5;
    border-radius: 50px;
}

/* Navbar Start For Free Button*/

.button-start-for-free {
    width: 200px;
    height: 50px;
    background: #00C9A8;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

/*=============== LANDING PAGE ===============*/
.cover-bg {
    position: relative;
    width: 100%;
    height: 500px;
    background: #b4e2d6;
    background: url('../images/Landing\ Page\ BG\ 1.png') no-repeat;
    background-size: 100%;
    border-radius: 5px 5px 0 0;
}

.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.heading {
    font-weight: 700;
    font-size: 30px;
    color: #3A3A3A;
}

.subheading {
    font-weight: 700;
    font-size: 20px;
    color: #3A3A3A;
}

.start-learning-button {
    width: 250px;
    height: 60px;
    background: #FFFFFF;
    font-size: 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

/*=============== COURSES ===============*/

.top-courses-title {
    font-size: 2em;
}

.align-view-all {
    text-align: right;
}

.button-view-all {
    width: 200px;
    height: 60px;
    border: 2px solid #00C9A8;
    background: #fff;
    color: #00C9A8;
    font-size: 20px;
    border-radius: 50px;
    cursor: pointer;
}

section .courses {
    background-color: #E5E5E5;
    border: none;
    border-radius: 20px;
}

.text-title {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #3A3A3A;
}

.instructor-name {
    padding-right: 5rem;
}


/*=============== TAKE THE NEXT STEP ===============*/

.p-text-next {
    margin-top: 200px;
    font-weight: 800;
    font-size: 25px;
    color: #3A3A3A;
}

.section-button-align {
    text-align: left;
}

.section-button-start {
    width: 250px;
    height: 60px;
    background: #00C9A8;
    color: #fff;
    font-size: 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

/*=============== Earn a certificate ===============*/
.p-class-certificate {
    font-weight: 500;
    font-size: 30px;
    color: #3A3A3A;
}

.skills-images {
    width: 163px;
    height: 173px
}

/*=============== StudyBhai For Organization ===============*/

.p-text-studybhai {
    margin-top: 200px;
    font-weight: 600;
    font-size: 34px;
    color: #3A3A3A;
}

.p-text-details {
    font-weight: 400;
    font-size: 24px;
    color: #3A3A3A;

}

.section-button-register {
    text-align: left;
}

.button-register-now {
    width: 250px;
    height: 60px;
    background: #00C9A8;
    color: #fff;
    font-size: 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

/*=============== FOOTER ===============*/

.language-button {
    width: 100px;
    height: 30px;
    color: #fff;
    background-color: transparent;
    background-repeat: no-repeat;
    border: 1px solid #9F9F9F;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
}

/*=============== MEDIA QUERIES ===============*/

/*  media screen for tab ( portrait ) */

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: portrait) {

    /*Landing Page Hero*/
    .cover-bg {
        height: 500px;
        background: #b4e2d6;
    }

    .centered {
        top: 50%;
    }

    /*Courses*/

    .top-courses-title {
        text-align: center;
    }

    .align-view-all {
        text-align: center;
    }

    /*Take the next step*/
    .p-text-next {
        margin-top: 50px;
        text-align: center;
    }

    .section-button-align {
        text-align: center;
    }


    /*StudyBhai For Organization*/
    .p-text-studybhai {
        margin-top: 50px;
        text-align: center;
    }

    .p-text-details {
        font-size: 20px;
        text-align: center;
    }

    .section-button-register {
        text-align: center;
    }

}


/*  media screen for tab (landscape)*/

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: landscape) {

    /* For landscape layouts only */

    /*Top Navbar Search Form*/
    form .search-button {
        width: 500px;

    }

    .cover-bg {
        height: 500px;
        background: #b4e2d6;
    }

    .centered {
        top: 30%;
    }
}

/*  media screen for mobile devices*/

@media only screen and (max-width: 600px) {

    /*Top Navbar Search Form*/
    form .search-button {
        width: 300px;

    }

    /*Landing Page Hero */
    .cover-bg {
        height: 700px;
        background: #b4e2d6;
    }

    .centered {
        top: 50%;
    }

    .heading {
        font-weight: 700;
        font-size: 30px;

    }

    .subheading {
        margin-top: 20px;
        font-weight: 600;
        font-size: 18px;
    }

    /*Courses*/

    .top-courses-title {
        text-align: center;
    }

    .align-view-all {
        text-align: center;
    }

    .instructor-name {
        padding-right: 8rem;
    }

    /*Take the next step*/
    .p-text-next {
        margin-top: 50px;
        text-align: center;
    }

    .section-button-align {
        text-align: center;
    }

    /*StudyBhai For Organization*/
    .p-text-studybhai {
        margin-top: 50px;
        text-align: center;
    }

    .p-text-details {
        font-size: 20px;
        text-align: center;
    }

    .section-button-register {
        text-align: center;
    }

}