/* desktop */

.types-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.4rem;
}

.types-grid .item img {
	width: 100%;
	height: 25.2rem;
	margin-bottom: 2rem;
	border-radius: 1.2rem;
}

.types-grid .item .title {
	font-size: 2.4rem;
	font-weight: 600;
	margin-bottom: 1.2rem;
}

/* tablet */

@media (max-width: 1200px) {
	.types-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.4rem;
	}

	.types-grid .item img {
		height: 20.1rem;
	}
}

/* mobile */

@media (max-width: 650px) {
	.types-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.types-grid .item img {
		height: 19.1rem;
		margin-bottom: 1.6rem;
	}

	.types-grid .item .title {
		font-size: 2rem;
		margin-bottom: 1.2rem;
	}
}
