.section_2 {
    position: relative;
    padding-bottom: 370px;

    &::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-image: url(../images/showcasing/bannar-img.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: bottom;
    }

    .imgBox {
        width: 100%;
        height: 800px;
        position: relative;
        z-index: 2;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
        }
    }

    .arHead {
        position: relative;
        z-index: 2;
    }
}

.section_3 {
    background-color: #e3e9e1;
    position: relative;

    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        background-image: url(../images/showcasing/circle.png);
        background-repeat: no-repeat;
        background-size: 500px;
        width: 100%;
        height: 100%;
    }
}

.showcaseCard {
    background-color: #fff;
    border-radius: 12px;
    padding: 15px;
    position: relative;

    &::before {
        content: '';
        position: absolute;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        border: 2px solid #fff;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(to right, #008449, #e7e519, #b2d235);
    }

    &::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 30px;
        left: 0;
        bottom: -30px;
        background-image: url(../images/showcasing/shadow.png);
        background-repeat: no-repeat;
        background-size: contain;
    }

    .showcaseImg {
        width: 100%;
        height: 250px;
        margin-bottom: 12px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            border-radius: 12px;
        }
    }

    p {
        text-align: center;
    }
}



/* Responsive */

@media(max-width: 991px) {
    .section_2 {
        padding-bottom: 170px;
    }
}

@media only screen and (max-width: 767px) {
    .showcaseCard {
        .showcaseImg {
            height: auto;
        }
    }
}