.resource{
    padding-bottom: 50px;
    .section_header {
        padding-bottom: 20px;

        h4 {
            font-size: 26px;
            font-weight: 500;
            color: $black;
            border-bottom: 2px solid $primaryColor;
            display: inline-block;
            padding: 10px 0;
        }
    }
    .resource_wrapper{
        padding-top: 20px;
        .resource_img{
            height: 330px;
            width: 100%;
            background-color: #f3f3f3;
            display: flex;
            justify-content: center;
            align-items: center;
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .resource_text{
            h4{
                font-size: 18px;
                color: $primaryColor;
                font-weight: 400;
                line-height: 28px;
            }
            h5{
                font-size: 32px;
                color: $black;
                font-weight: 500;
                line-height: 42px;
            }
            p{
                font-size: 15px;
                color: $text;
                font-weight: 400;
                line-height: 25px;
            }
            .resource_btn{
                 margin-top: 40px;
                a{
                    font-size: 16px;
                    color: $white;
                    font-weight: 500;
                    padding: 12px 25px;
                    background-color: $primaryColor;
                    border-radius: 5px;
                }
            }
        }
    }
}