#promo_tab {
	margin: 60px 0;
}

	.promo_item {
		display: flex;
		flex-direction: column;
		padding: 30px;
		border-radius: 6px;
		row-gap: 30px;
	}
	
	@media screen and (min-width : 992px) {
		.promo_item { flex-direction: row; column-gap: 60px; align-items: center; }
	}

	.promo_item:nth-child(odd) {
		background-color: rgba(219,217,218,0.3);
	}

		.img_promo {
			width: 100%;
			border-radius: 6px;
		}
	
		@media screen and (min-width : 992px) {
			.img_promo { width: 300px; }
		}

		.promo_title {
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 1px;
			margin-bottom: 30px;
		}