.indexgrid{
	display: grid;
	grid-template-columns: repeat( 12, 1fr );
	grid-auto-rows: auto;
	grid-auto-flow: dense;
	align-items: center;
	gap: 150px 20px;
}
.indexgrid a.item{
	color: inherit;
	text-decoration: none;
}
.indexgrid .item:nth-child( 6n + 2 ){
	grid-row: span 2;
}
.indexgrid .item:nth-child( 6n + 3 ){
	grid-row: span 2;
}
.indexgrid .item:nth-child( 6n + 4 ){
	grid-row: span 2;
}
.indexgrid .item:nth-child( 6n + 5 ){
	grid-row: span 2;
}

.indexgrid .image{
	overflow: hidden;
}
.indexgrid .image img{
	transition: transform .3s ease;
}
.indexgrid a:hover .image img{
	transform: scale(1.1);
}

.indexgrid .text{
	max-width: 466px;
}
.indexgrid a{
	text-decoration: none;
}
.indexgrid .has-small-font-size{
	margin: 20px 0 5px;
}

@media (min-width: 992px){
	.indexgrid .item:nth-child( 6n + 1 ){
		grid-column: 2/6;
	}
	.indexgrid .item:nth-child( 6n + 2 ){
		grid-column: 7/13;
	}
	.indexgrid .item:nth-child( 6n + 3 ){
		grid-column: 1/6;
	}
	.indexgrid .item:nth-child( 6n + 4 ){
		grid-column: 8/12;
	}
	.indexgrid .item:nth-child( 6n + 5 ){
		grid-column: 3/7;
	}
	.indexgrid .item:nth-child( 6n + 6 ){
		grid-column: 8/13;
	}
}

@media (max-width: 991px){
	.indexgrid{
		grid-template-columns: repeat( 2, 1fr );
		gap: 100px 60px;
	}
}

@media (max-width: 767px){
	.indexgrid{
		grid-template-columns: 1fr;
		gap: 60px 0;
	}
}