
.new-white-section{
    background-color:var(--new-white-color)!important;
}

/*.grid {
    display: grid;*//*
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 400px;
    height: 400px;*/
    /*gap: 0;*/ /* no gap for seamless look */
    /*border: 1px solid #ccc;*/ /* optional outer border */
/*}*/

.card-index {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
    font-size: 1.2rem;
    border: 4px solid var(--new-primary-color);
    box-sizing: border-box;
}

/* Curve only outer edges of each card */
.top-left {
    border-top-left-radius: 0px;
    border-right: none;
    border-bottom: none;
}

.top-right {
    border-top-right-radius: 0px;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    border-bottom-left-radius: 0px;/* 30px*/
    border-top: none;
    border-right: none;
}

.bottom-right {
    border-bottom-right-radius: 0px;
    border-top: none;
    border-left: none;
}

.smcontent-bg1 {
    width: 100%;
    height: 200px; /* set some fixed height for demo */
    overflow: hidden;
}

.smcontent-bg1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

    @media (max-width:576px) {
    /* Curve only outer edges of each card */
    .top-left {
        border-top-left-radius: 30px;
        border-right: 30px;
        border-bottom: 30px;
    }

    .top-right {
        border-top-right-radius: 30px;
        border-left: 30px;
        border-bottom: 30px;
    }

    .bottom-left {
        border-bottom-left-radius: 30px;
        border-top: 30px;
        border-right: 30px;
    }

    .bottom-right {
        border-bottom-right-radius: 30px;
        border-top: 30px;
        border-left: 30px;
    }
    .card-index {
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: justify;
        font-size: 1.2rem;
        border: 4px solid var(--new-primary-color);
        box-sizing: border-box;
    }
}
