.table {
margin-bottom: 0px;
}
.prakalpa {
	background: antiquewhite;
}


.caption:hover {
	color: #d80000;
}

.cntr1 {
	display: grid;
    grid-template-columns: repeat(4, 272px);
    grid-template-rows: repeat(1, 0.5fr);
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: -50px;
    justify-content: center;
}

.cntr2 {
	display: grid;
    grid-template-columns: 25% 50% 25%;
    grid-template-rows: repeat(1, 1.5fr);
    gap: 10px;
    padding-bottom: 20px;
    margin-left: 60px;
    margin-right: 60px;
}

.cntr3 {
	display: grid;
    grid-template-columns: repeat(3, 272px);
    grid-template-rows: repeat(1, 1fr);
    gap: 10px;
    padding-bottom: 20px;
    justify-content: center;
}


.caption {
	position: absolute;
    bottom: 3px;
    width: 195px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 0;
    border-radius: 30px;
    text-decoration: underline;
}
.img-map {
	display: block;
    height: auto;
    max-width: 80%;
    border-radius: 6px;
}


.img-prakalpa {
	display: block;
    height: auto;
    max-width: 100%;
    box-shadow: 0 0 10px 0px #ff7500;
    border-radius: 23px;
}

.itm {
    width: 201px;
    position: relative;
    justify-self: center;
    align-self: center;
    padding: 3px;
    transition: all 1s cubic-bezier(0.175, 0.885, 0, 1);
}

.itm:hover {
    transform: scale(1.1, 1.1);
  	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
    color: #ff7f7f;
}

.itm-middle {
	display: flex;
    justify-content: center;
    align-items: center;
}
.itm4 { 
	grid-row: 1 / span 3; 
	grid-column: 2;
    justify-self: center;
    align-self: center;
}


@media (max-width: 945px) {
    .cntr1 {
        grid-template-columns: 50% 0% 50%;
	    margin-left: 0px;
	    margin-right: 0px;
        gap: 0px;
    }
    
    .cntr2 { display: none; }
	
    .cntr3 {
        grid-template-columns: 50% 0% 50%;
	    margin-left: 0px;
	    margin-right: 0px;
        gap: 0px;
        margin-top:30px;
    }
    
    .itm {
    	width: 156px;
        margin-bottom: 10px;
	}
    .caption {
    	width: 150px;
}
.item2 { grid-row: 1; grid-column: 2; }

.item7 { grid-row: 1; grid-column: 1; }
.item8 { grid-row: 1; grid-column: 3; }
.item9 { grid-row: 2; grid-column: 2; }


}