@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

body {
    /* background-image: url("img/bg1.jpg");
    background-repeat: no-repeat;
    background-size: cover; */
    overflow-x: hidden;
}

/*  Starting of Navigation Bar */

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 2px 10px 2px 50px;
    width: 100%;
    border: 1px solid #D9D9D9;
    box-shadow: 0px 4px 4px rgb(0 0 26 / 25%);
    /* border-radius: 10px; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.navbar a {
    display: block;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    color: #000;
    /* font-weight: 500; */
    transition: all 0.2s ease;

}

.navbar a:hover {
    color: #106672;
    font-weight: 600;
    /* border: 1px solid #000; */
    transform: scale(1.3);
}

.navbar a img {
    width: 80px;
}

.logo {
    margin-right: 50px;
}

.list {
    list-style: none;
    display: flex;
    gap: 25;
}

#toggler,
.navbar label {
    display: none;

}

.navbar i {
    font-size: 34px;
}


/*  Ending of Navigation Bar */


/* Background image of home page */
.top-image-content {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("img/bg3_edit.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    margin-top: 40px;
}





.python-container {
    /* max-width: 1350px; */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: auto;
    /* background-color: darkolivegreen; */
}

.left-container {
    display: flex;
    /* justify-content: space-evenly; */
    flex-direction: column;
    width: 65%;
    height: auto;
    /* background-color: darkkhaki; */
    margin: 2px;
    color: #000;
}

.top-content {
    position: relative;
    right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    /* height: 80px; */
    /* background-color: lightblue; */
    margin: 40px auto 20px auto;
}

.top-content .profile-icon {
    position: relative;
    margin: 0 0px 0 30px;
    left: 10px;
    top: 2px;
    width: 20px;
    height: auto;
    font-size: 26px;
}

.top-content .teacher-data .admin {
    position: relative;
    top: 10px;
    font-size: 18px;
}

.top-content .teacher-data .teacher-name {
    position: relative;
    top: 6px;
    font-size: 18px;
}

.top-content-2 .teacher-data .star-icon {
    font-size: 15px;
}

.top-content-2 .teacher-data a {
    padding: 10px 20px;
    background-color: #106672;
    /* border: 1px solid #106672; */
    font-size: 16px;
    font-weight: 300px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}






/* Stating of overview Content */

.overview-data {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    width: 70%;
    /* height: 40px; */
    /* background-color: lightblue; */
    margin: 10px 0 20px 25px;
}

.overview-line {
    width: 67%;
    height: 9px;
    border: 1px solid #106672;
    border-radius: 5px;
    margin-left: 70px;
}

.overview-line .filled-line {
    width: 30%;
    height: 8px;
    border: 1px solid #106672;
    border-radius: 5px;
    background-color: #106672;
    margin-left: 32%;
    transition: all 0.5 ease;
}

.overview-data i {
    font-size: 30px;
    font-weight: 900;
}

.overview-data span {
    font-size: 20px;
}

.overview-data a {
    text-decoration: none;
    color: #000;
}



/* Starting of teacher Admin section */
.teacher-admin {
    margin: 70px 75px;
}

.teacher-admin span {
    font-size: 24px;
}

.teacher-admin i {
    padding-right: 10px;
}

/* Ending of teacher Admin section */




/* Starting of Share Now section */
.share-now-container {
    margin: 0px 75px;
}

.share-now-container span {
    font-size: 24px;
}

.share-now-container i {
    font-size: 32px;
}

.share-now-container .facebook {
    color: blue;
    margin-left: 30px;
    padding: 0px 5px;
}

.share-now-container .instagram {
    color: crimson;
    padding: 0px 5px;
}

.share-now-container .twitter {
    color: steelblue;
    padding: 0px 5px;
}

.share-now-container .linkedin {
    color: darkblue;
    padding: 0px 5px;
}

.share-now-container .google {
    color: rgb(156, 12, 12);
    padding: 0px 5px;
}

/* Ending of Share Now section */







/* Starting of Explore Our Top Section */
.course-heading {
    margin: 50px 0;
    text-align: center;
    font-size: 24px;
}

.course-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 10px;
}

.course-content {
    width: 350px;
    height: 380px;
    /* border: 1px solid gray; */
    border-radius: 10px;
    margin: 20px 5px;
    background: #FFFFFF;
    border: 1px solid #C4C4C4;
    border-radius: 10px;

    filter: drop-shadow(-5px -5px 4px rgba(0, 0, 0, 0.25)) drop-shadow(5px 5px 4px rgba(0, 0, 0, 0.25));

}

.course-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
}

.course-card img {
    width: 100px;
    border-radius: 5px;
    padding: 10px;
}

.course-content .course-card .uiux-img {
    width: 162px;
}

.course-card .course-name a {
    color: #000;
    font-size: 20px;
    font-weight: bolder;
    margin: 10px 0px 5px 0px;
    text-decoration: none;
}

.course-card .course-enroll-now {
    border: 2px solid #106672;
    border-radius: 6px;
    background-color: #106672;
    color: #fff;
    padding: 5px 20px;
    margin: 40px 0px;
}

.course-card p {
    text-align: center;
}





/* Ending of Explore Our Top Section */























.right-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: 35%;
    height: auto;
    /* background-color: darkkhaki; */
    margin-top: 10px;
    padding: 15px;
}

.course-features {
    width: 330px;
    height: auto;
    border: 2px solid #333;
    padding: 10px;
    box-shadow: -4px -4px 4px rgba(0, 0, 0, 0.25), 4px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    margin: 0;
}

.course-features h2 {
    /* margin-bottom: 10px; */
}

.course-features table,
tr,
td {
    padding: 8px 16px 2px 12px;
    /* font-size: 18px; */
}

.course-features td i {
    font-size: 16px;
}

.recent-comments {
    width: 350px;
    /* height: 220px; */
    /* border: 2px solid gray; */
    margin: 20px 20px;
}

.recent-comments h1 {
    margin-bottom: 20px;
}

.recent-comments ul {
    margin-left: 30px;
    font-size: 16px;
}

.recent-comments li {
    padding-bottom: 10px;
}





.additional-free-courses {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    /* flex-wrap: wrap; */
    width: 350px;
    height: 400px;
    margin: 0px 0 20px 0;
}

.courses {
    display: flex;
    margin: 10px 0;
    /* border: 1px solid gray; */
    box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.3);
    height: 100px;
}

.courses .img-content img {
    width: 120px;
    height: 80px;
    margin-right: 10px;
    border-radius: 10px;
    padding: 5px 5px 0 5px;
}

.free-course-content h4 {
    padding: 10px 0;
}

.courses .free-course-content i {
    font-size: 20px;
}



.form-data {
    width: 349px;
    height: auto;
    /* border: 1px solid gray; */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    border-radius: 6px;
    margin: 30px 0px;
}

.form-data h3 {
    background-color: #106672;
    border-radius: 6px 6px 0 0;
    text-align-last: center;
    height: 40px;
    padding: 10px;
}

input[type=text] {
    margin: 10px 15px;
    padding: 10px;
    background-color: #fff;
    width: 90%;
    border-radius: 4px;
    font-size: 15px;
}

textarea {
    margin: 10px 15px;
    padding: 10px;
    width: 90%;
    border-radius: 4px;
    font-size: 15px;
}

input[type=submit] {
    padding: 10px 50px;
    margin: 10px 30%;
    background-color: #106672;
    border-color: #106672;
    border-radius: 5px;
}






.find-out-more-content {
    width: 349px;
    /* border: 2px solid black; */
    /* height: 350px; */
    border-radius: 10px;
    padding: 50px 20px;
    background-image: url('img/blog-img5.jpg');
    background-size: cover;
    margin: 20px 0px;
}

.find-out-more-content h1 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.find-out-more-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.find-out-more-btn {
    margin-top: 50px;
}

.find-out-more-content a {
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    margin: 40px 60px;
    text-align: center;
    border: #106672 2px solid;
    background-color: #106672;
    padding: 10px;
}


.certificate-image img {
    width: 420px;
}









/* Smaller Mobile Phones */
@media screen and (max-width: 480px) {
    .top-image-content {
        margin: 0;
        padding: 0;
    }

    .menu {
        width: 100%;
        max-height: 0;
        overflow: hidden;
    }

    .list {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .navbar label {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    #toggler:checked~.menu {
        max-height: 100%;
    }

    .top-content {
        width: 100%;
        right: 0;
        justify-content: space-between;
    }

    .top-content .profile-icon {
        margin: 0px;
        left: 0px;
        font-size: 24px;
    }

    .top-content .teacher-data .admin {
        font-size: 16px;
    }

    .top-content .teacher-data .teacher-name {
        font-size: 16px;
        font-weight: 600;
    }

    .top-content-2 .enroll-now-btn a {
        padding: 10px;
        font-size: 14px;
        font-weight: 500;
    }

    .share-now-container i {
        font-size: 24px;
    }

}


/* Large Smartphones and Tablets */
@media screen and (max-width: 768px) {
    .menu {
        width: 100%;
        max-height: 0;
        overflow: hidden;
    }

    .list {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .navbar label {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    #toggler:checked~.menu {
        max-height: 100%;
    }

    .top-content {
        width: 100%;
        right: 0;
        justify-content: space-around;
        margin: auto;
    }

    .top-content .profile-icon {
        margin: 0px;
        left: 0px;
        font-size: 24px;
    }

    .teacher-admin {
        margin: 40px 25px;
    }

    .share-now-container {
        margin: 0px 25px;
    }

    .overview-line {
        margin-left: 30px;
    }

}


/* Large Tablets and laptops */
@media screen and (max-width: 1000px) {
    .navbar {
        padding: 2px 10px 2px 40px;
    }

    .navbar a img {
        width: 70px;
    }

    .navbar a {
        margin: 0 10px;
        font-size: 1rem;
    }

    .python-container {
        display: block;
        width: 100%;
        margin: auto auto;
    }

    .left-container {
        margin: 50px auto;
        width: 100%;
    }

    .right-container {
        margin: 50px auto;
        width: 100%;
    }

}