.awardsBox {
    .awardsHeading {
        padding-right: 100px;
        display: flex;
        border-bottom: 2px solid #000000;

        h4 {
            padding: 10px 20px;
            border-radius: 15px 15px 0 0;
            color: #fff;
        }

        &::after {
            width: 70px;
            height: 80px;
            position: absolute;
            content: "";
            background: url(../images/awards-img/awardCup.png) no-repeat center top;
            background-size: 100%;
            right: -17px;
            bottom: 0px;
        }
    }

    .awardsContent {
        min-height: 120px;
        background-image: linear-gradient(180deg, #FFFFFF 20%, #ffffff10 100%);
        border-top: 1px solid var(--greenText2);
    }
}

.gridImg {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;

    .column {
        flex: 20%;
        max-width: 25%;
        padding: 5px 8px;

        a {
            display: inline-block;            
            .aboutImgOut{
                height: 100%;
            }
        }

        img {
            margin-bottom: 10px;
        }
        &:first-child{
            a{
                height: 100%;
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center center;
                }
            }
        }
        &:nth-child(2), &:nth-child(4){
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            a{
                height: 48.5%;
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center center;
                }
            }
        }
        &:nth-child(3){
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            a{
                height: 31%;
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center center;
                }
            }
        }
    }
}

@media(max-width: 991px) {
    .awardsBox {
        & .awardsHeading {
            h4 {
                width: 70%;
            }

            &::after {
                width: 48px;
                height: 57px;
                right: 0;
            }
        }

        .awardsContent {
            min-height: auto;
        }
    }
}

@media(max-width: 767px) {
    .awardsBox {
        & .awardsHeading {
            h4 {
                width: 96%;
                font-size: 20px;
            }
        }
    }

    .gridImg {
        .column {
            flex: 50%;
            max-width: 50%;
        }
    }
}

@media(max-width: 575px) {

    .gridImg {
        .column {
            flex: 100%;
            max-width: 100%;
        }
    }
}

@media(max-width: 480px) {
    .awardsBox {
        & .awardsHeading {
            padding-right: 58px;
            h4 {
                width: 100%;
                font-size: 18px;
                padding: 8px 10px;
            }

            &::after {
                width: 34px;
                height: 40px;
            }
        }

        .awardsContent {
            margin-bottom: 10px !important;
        }
    }
}