.project{
    padding-bottom: 20px;
    padding-top: 40px;
 .project_content{
   .section_header{
       text-align: center;
       h5{
           font-size: 30px;
           color: $black;
           font-weight: 600;
           display: inline-block;
           span{
               color: $primaryColor;
           }
       }
    }
   .project_wrapper{
        padding-top: 30px;
        .project_card{
             margin-bottom: 12px;
             background-color: #fff;
             box-shadow: 0px 1px 1px 1px #00000021;
             padding: 15px;
             border-radius: 10px;
            .project_img{
                 height: 220px;
                 width: 100%;
                 img{
                   height: 100%;
                   width: 100%;
                   object-fit: cover;
                 }
            }
            .project_text{
                background-color: $white;
                padding-top: 10px;
               h4{
                   font-size: 16px;
                   font-weight: 400;
                   color: $primaryColor;

               }
               h5{
                   font-size: 20px;
                   font-weight: 500;
                   color: $black;
                   line-height: 30px;
               }
             p{
               font-size: 14px;
               color: $text;
               line-height: 22px;
             }
            }
        }
   }
 }
}