* {
    padding: 0;
    margin: 0;
    outline: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
    margin: 0;
    padding: 0;
}

a:hover {
    text-decoration: none;
}

/* =========================================
                Common css End
    ======================================= */



/* COURSE START */


#courses_part{
    padding: 60px 0;
}
#courses_part .course_content {
    background: #ffffff;
    padding: 0px 0 77px 0px;
    border-radius: 7px;
    box-shadow: 0px 3px 5px -1px;
    margin: 20px 0;
}
#courses_part .course_content img {
    width: 100%;
    height: 251px;
    border-radius: 10px;
}
#courses_part .course_content p {
    color: rgb(31 41 55);
    font-size: 18px;
    font-weight: 700;
    margin: 14px;
    position: relative;
}
#courses_part .course_content p::after {
    position: absolute;
    content: '';
    left: 0;
    top: 47px;
    width: 100%;
    height: 1px;
    background: rgb(197, 192, 192);
}
#courses_part .course_content a {
    background: rgb(234 179 8);
    padding: 7px 29px;
    color: #ffffff;
    text-align: center;
    float: right;
    font-size: 14px;
    font-weight: 500;
    border-radius: 7px;
    margin: 22px 14px 2px 3px;
    transition: all linear .1s;
}
#courses_part .course_content a:hover {
    background: rgb(0, 221, 255);
    padding: 7px 29px;
    color: #ffffff;
    font-size: 15px;
    box-shadow: inset 0px 0px 22px -5px #7b02ff !important;
}