.ee{
	position: fixed;
	overflow-y: scroll;
	width: 50%;
	height: 100%;
	top: 0;
	right: 0;
	border-top: 1px solid var(--color-green);
	
}

.ww{
	position: fixed;
	overflow-y: scroll;
	width: 50%;
	height: 100%;
	top: 0;
	left: 0;
	border-top: 1px solid var(--color-green);
	border-right: 1px solid var(--color-green);
}



figure{
	width: 100%;
	padding: 5px;
	border-bottom: 1px solid var(--color-green);
	
}

.films-headline{
	width: 100%;
	color: white;
	background-color: var(--color-green);
	font-family: var(--alaska-exp);
	text-transform: uppercase;
	position: sticky;
	top: 0;
	left: 0;
	text-align: center;
	z-index: 10;

}

.films-headline:last-child{
	border-left: 1px solid white;
}

h4{
	text-transform: uppercase;
}

.details-movie{
	text-align: right;
}

 .film-cover{
	filter: grayscale(1);
	transition-duration: .5s;
}





.ee:hover .film-cover {
 filter: grayscale(0);
	transition-duration: .2s;
}


.ww:hover .film-cover {
 filter: grayscale(0);
	transition-duration: .2s;
}


@media only screen and (max-width: 1024px) {

  .ee,
  .ww{
      position: relative;
      width: 100%;
      height: auto;
      border-right: 0px;
      border-left: 0px;
  }

}