.pg_title, .text {
	text-align: center;
}

#choice_cont {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  column-gap: 50px;
  margin-top: 60px;
}
	
	@media screen and (max-width : 992px) {
		#choice_cont { flex-direction: column; row-gap: 50px; }
	}
			
	.choice_item {
		width: calc(100% / 3);
		text-align: center;
		padding: 40px;
		border: 5px solid;
	}
	
	@media screen and (max-width : 992px) {
		.choice_item { width: 100%; }
	}
	
		.brescia {
			border-color: var(--third_color);
		}
		
		.milano {
			border-color: var(--fourth_color);
		}
		
		.crema {
			border-color: var(--fifth_color);
		}
		
			.city, .cinema_name {
				font-size: 30px;
				font-weight: 700;
				text-transform: uppercase;
				margin-top: 30px;
				line-height: 30px;
			}
		
			.btt_choose {
				width: 150px;
				margin: 30px auto 0 auto;
			}
			
			.brescia .btt_choose {
				background: var(--third_color);
			}
			
			.milano .btt_choose {
				background: var(--fourth_color);
			}
			
			.crema .btt_choose {
				background: var(--fifth_color);
			}