.course{
    padding: 30px 0;
    .course_content{
        .section_heading{
            text-align: center;
            i{
                font-size: 38px;
                color: $primaryColor;
            }
            h4{
                font-size: 28px;
                font-weight: 500;
                color: $black;
                text-transform: uppercase;
                padding: 15px 0 0 0;
                span{
                    color: $primaryColor;
                }
            }
            p{
             text-align: center;
             font-size: 15px;
             font-weight: 400; 
             line-height: 24px;
             color: $text;
             padding: 20px 120px;
         }
        }

        .course_wrap{
          .course_card{
            .course_img{
                height: 240px;
                width: 100%;
                img{
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                }
            }
            .course_text{
                padding: 12px;
                text-align: center;
                 h4{
                    font-size: 20px;
                    color: $black;
                    font-weight: 500;
                 }
                 p{
                    font-size: 14px;
                    color: $text;
                    font-weight: 400;
                    text-align: center;
                 }
                 .course_btn{
                    a{
                        padding: 10px 20px;
                        font-size: 13px;
                        font-weight: 400;
                        background-color: $primaryColor;
                        border-radius: 3px;
                        color: $white;
                    }
                 }
            }
          }
        }
    }
}