﻿#vehicleMenu{
	margin-bottom:50px;
}
section {
	display: grid;
	/*grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));*/
	grid-template-columns: repeat(auto-fill, minmax(436px, 1fr));
	gap: 2rem;
}

	section > div {
		padding: 1rem 0;
		width: 99%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 1.5rem;
		background: #fff;
		border: 4px solid #e9f0f6;
		border-radius: 1rem;
		box-shadow: 0px 0px 10px 0px rgb(193 213 230 / 45%);
	}

		section > div > h6 {
			text-align: center;
			font-size: 19px;
			color: #000000;
			font-weight: 100;
			padding: 0 2rem 0 2rem;
			white-space: nowrap;
			text-overflow: ellipsis;
			overflow: hidden;
			width: 88%;
		}

		section > div > div {
			display: grid;
			grid-template-columns: 1fr 1fr 1fr;
			padding: 0 1rem;
			margin: 10px 0;
		}

			section > div > div > p {
				white-space: nowrap;
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: center;
				gap: 10px;
				text-align: center;
				color: #414141;
				font-weight: 600;
				font-size: 13px;
				padding: 0 1em;
			}

				section > div > div > p:nth-of-type(2) {
					border-right: 2px solid #80808024;
					border-left: 2px solid #80808024;
				}

				section > div > div > p > span {
					font-weight: 300;
				}

		section > div > p {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 100%;
			gap: 1rem;
		}

			section > div > p > a {
				background: var(--saa-yellow);
				color: var(--saa-blue);
				font-size: 13px;
				padding: 8px 2px;
				border-radius: 30px;
				font-weight: 500;
				width: 130px;
				white-space: nowrap;
				text-align: center;
			}

				section > div > p > a:last-of-type {
					background: var(--saa-blue);
					color: #fff;
				}



@media(max-width:1400px) {
}

@media(max-width:1200px) {
	section {
		grid-template-columns: repeat(auto-fill, minmax(431px, 1fr));
	}

		section > div > div > p {
			padding: 15px 10px;
		}
}

@media(max-width:992px) {
	section > div > div > p {
		padding: 15px 20px;
	}

	section > div > div > p {
		font-size: 17px;
	}
}

@media(max-width:768px) {
		section > div > div {
			grid-template-columns: 1fr;
		}

}

@media(max-width:576px) {
	section {
		grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
	}


			section > div > div > p:nth-of-type(2) {
				border: none;
				border-top: 2px solid #80808024;
				border-bottom: 2px solid #80808024;
			}

		section > div > h6 {
			font-size: 22px;
		}

		section > div > p > a {
			font-size: 13px;
			width: 100px;
		}
}
