.institute {
  margin-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;
        }
    }

    .institute_bg {
        background-image: url(../images/institute.png);
        height: 280px;
        width: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        z-index: -1;
        &::after {
            position: absolute;
            content: '';
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: rgba(147, 34, 227, 0.418);
            z-index: -1;
        }
    }
    .institute_wrapper{
        margin-top: -110px;
        z-index: 3;
        .institute_card{
             text-align: center;
             background-color: gray;
             padding: 20px 10px;
             border-radius:  7px;
            img{
                width: 90px;
            }
            h4{
                font-size: 22px;
                color: $white;
                font-weight: 500;
                line-height: 30px;
                padding-top: 10px;
            }
            h5{
                font-size:15px;
                color: $white;
                font-weight: 400;
                line-height: 22px;
            }
        }
        .card_one{
            background-color: #14468C;
        }
        .card_two{
            background-color: #5F147A;
        }
        .card_three{
            background-color: #0D2F5D;
        }
        .card_four{
            background-color: #BF0D3E;
        }
    }
}