.programs-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	position: relative;
	margin: 0;
	float: left;
	width: 100%;
}

.programs-page-program-description {
	float: left;
	width: 100%;
	display: inline-block;
	padding-bottom: 35px;
	display: none;
}

.program {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-preferred-size: calc(50% - 20px);
	flex-basis: calc(50% - 20px);
	max-width: calc(50% - 20px);
	position: relative;
	margin: 0px 10px 30px 10px;
	text-align: center;
	border-radius: 3px;
	font-size: 1em;
}

.programs-page-title {
	text-align: center;
}

.one-festival-title {
	display: inline-block;
	width: 100%;
	float: left;
	font-family: OpenSans-Light;
	text-align: center;
	margin-bottom: 20px;
	font-weight: bold;
}

.programs-program-name {
	width: 100%;
	color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
	text-align: center;
}

.programs-program-name.black-text-color {
	color: black;
  text-shadow: 1px 1px 5px white;
}

.program .programs-category-name {
	display: none;
}

.programs-photo {
	height: 250px;
	margin: 0 auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	position: relative;
}

.programs-description-on-photo {
	height: 100%;
	width: calc(100% - 40px);
	position: absolute;
	padding: 20px;
	display: table;
	z-index: 10;
	background-color: black;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	transition: transform 0.7s cubic-bezier(.25,.8,.25,1);
	-webkit-transform: scale(0);
	transform: scale(0);
}

.program:hover .programs-description-on-photo {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.programs-description-on-photo-inner {
	width: 100%;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}

.programs-description-on-photo .programs-description {
	max-height: 150px;
	margin: auto;
	overflow: hidden;
}

.programs-description img {
	display: none;
}

.programs-page-program-title, .programs-page .films-sorter {
	display: none;
}

@media (max-width: 789px) {
	.program {
		-ms-flex-preferred-size: calc(100% - 20px);
		flex-basis: calc(100% - 20px);
		max-width: calc(100% - 20px);
	}
}
