.our_courses{
    margin-bottom: 150px;
}
.courses{
    gap: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    > .card{
        width: 400px;
        margin-top: 30px;
        > .card-img-top{
            height: 250px;
            object-fit: contain;
        }
        > .card-body{
            > h5{
                font-size: 25px;
                color: #131313;
            }
            > ul{
                > li{
                    gap:  8px;
                    display: flex;
                    align-items: center;
                    >p{
                        margin: 0%;
                        font-size: 16px;
                    }
                }
            }
        }
    }
}
.courses_btn{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.course_btns{
    display: flex;
    align-items: center;
    justify-content: center;
    > p{
        margin: 0%;
    }
}
.anroll_btn{
    background-color: #883e4f;
}

/* details details page start */
.course-details{
    gap: 50px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    > .course-img{
        width: 30%;
        > img{
            width: 100%;
            height: 250px;
            object-fit: contain;
        }
        > .left-btn{
            gap: 10px;
            width: 100%;
            padding: 10px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin-top: 20px !important;
            text-align: center;
            >i{
                margin-top: -3px;
            }
            >p{
                margin: 0%;
            }
        }
        > ul{
            margin-top: 30px;
            > li{
                gap: 10px;
                display: flex;
                margin-top: 12px;
                align-items: center;
                > img{
                    width: 20px;
                }
                >p{
                    margin: 0%;
                    font-size: 19px;
                }
            }
        }
    }
}
.details{
    width: 70%;
    padding-left: 30px;
    >h5{
        font-size: 30px;
        margin-top: -5px;
    }
    >p{
        font-size: 25px;
        margin: 0%;
    }
    > ul{
        >li{
            gap: 8px;
            margin-top: 10px;
            display: flex;
            align-items: center;
            >p{
                margin: 0%;
                font-size: 19px;
            }
        }
    }
}
/* details details page end */
