.transportation {
	display: flex;
	flex-direction: column;
	gap: 60px;
	padding: 40px 0;
}

.transportation-title {
	margin: 0;
	font-family: Literata;
	font-weight: 700;
	font-size: 48px;
	line-height: 125%;
	color: #1b593e;
}

.transportation-list {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	justify-content: space-between;
	column-gap: 20px;
	row-gap: 40px;
}

.transportation-item {
	display: flex;
	flex-direction: column;
	max-width: 190px;
	width: 190px;
	justify-content: space-between;
}

.transportation-item__title {
	margin: 0;
	font-family: Literata;
	font-weight: 500;
	font-size: 18px;
	line-height: 125%;
	color: #1b593e;
	margin-top: 10px;
}

.transportation-item__btn {
  text-decoration: none;
	background-color: #52b788;
	color: #fff;
	font-family: Montserrat;
	font-weight: 700;
	font-size: 14px;
	line-height: 100%;
	margin-top: 40px;
	display: flex;
	align-items: end;
  padding: 10px 20px;
  border-radius: 4px;
  width: fit-content;
}

@media (max-width: 768px) {
	.transportation-item {
		max-width: 100%;
		width: 100%;
	}
}

@media (max-width: 494px) {
	.transportation-item {
		align-items: center;
	}
}
