@charset "utf-8";
.movie_section {
		padding: 80px 40px 120px;
}
.movie_inner {
		padding: 0
}
@media(max-width: 767px) {
		.movie_section {
				padding: 80px 20px 80px;
		}
}
.movie_thumb {
		max-width: 900px;
		margin: 0 auto;
		position: relative;
		overflow: hidden;
}
.movie_thumb::before {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 75px);
		left: calc(50% - 75px);
		width: 150px;
		height: 150px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.95);
		box-sizing: border-box;
		pointer-events: none;
		z-index: 10;
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.movie_thumb::after {
		content: '';
		display: block;
		position: absolute;
		top: calc(50% - 18px);
		left: calc(50% - 10px);
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 18px solid transparent;
		border-bottom: 18px solid transparent;
		border-left: 31px solid #000;
		border-right: 0;
		z-index: 10;
		pointer-events: none;
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
		.movie_tile_item:hover .movie_thumb::before {
				transform: scale(1.3);
		}
}
.movie_thumb img {
		width: 100%;
		height: auto;
		transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.movie_thumb_in {
		position: relative;
}
.movie_thumb_in::after {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.3);
		pointer-events: none;
		z-index: 1;
}
@media (hover: hover) {
		.movie_thumb:hover img {
				transform: scale(1.06)
		}
}
@media (max-width: 767px) {
		.movie_tile_item {
				width: 100%;
				margin-bottom: 40px;
		}
}
#movieOverLay {
		background: rgba(255, 255, 255, 0.95);
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		display: none;
}
.movie_close {
		position: absolute;
		right: 50px;
		top: 30px;
		width: 50px;
		height: 50px;
		cursor: pointer;
		background: #FFF100;
		border-radius: 50%;
}
.movie_close .movie_close_bar {
		position: absolute;
		width: 20px;
		height: 2px;
		top: 24px;
		left: 15px;
}
.movie_close .movie_close_bar:first-child {
		transform: rotate(-45deg);
}
.movie_close .movie_close_bar:last-child {
		transform: rotate(45deg);
}
.movie_close_bar::after {
		content: '';
		display: block;
		width: 20px;
		height: 2px;
		background: #000;
		position: absolute;
		top: 0;
		left: 0;
		transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
		transform: scaleX(0);
}
.movie_close .movie_close_bar:first-child::after {
		transition-delay: 0.2s;
		transform-origin: right center;
}
.movie_close .movie_close_bar:last-child::after {
		transition-delay: 0.35s;
		transform-origin: left center;
}
.movie_close.isActive .movie_close_bar::after {
		transform: scaleX(1);
}
.movie_popup_player {
		width: 70%;
		margin: auto;
		position: absolute;
		aspect-ratio: 16 / 9;
		object-fit: cover;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 10;
}
#player_box {
		width: 100%;
		height: 100%;
}
@media(max-width: 1500px) {
		.movie_close {
				right: 30px;
		}
		.movie_popup_player {
				width: 80%;
		}
}
@media (max-width: 767px) {
		.movie_popup_player {
				width: 100%;
				aspect-ratio: 16 / 9;
				object-fit: cover;
				margin: auto;
		}
		.movie_close {
				top: 15px;
				right: 15px;
		}
}
.movie_tile_item_thumb .playBtn {
		stroke-dasharray: 400;
		stroke-dashoffset: 400;
		transform: rotate(-90deg);
		transform-origin: 50% 50%;
		cursor: pointer;
		transition: all 0.2s;
		fill: rgba(0, 0, 0, 0);
		width: 64px;
		height: 64px;
		position: absolute;
		top: calc(50% - 32px);
		left: calc(50% - 32px);
		border: 1px solid #000;
		border-radius: 50%;
}
@media (hover: hover) {
		.playBtn:hover {
				animation: playBtn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
				fill: rgba(0, 0, 0, 0);
		}
}
@media(max-width: 767px) {
		.movie_thumb::before {
				top: calc(50% - 25px);
				left: calc(50% - 25px);
				width: 50px;
				height: 50px;
		}
		.movie_thumb::after {
				top: calc(50% - 6px);
				left: calc(50% - 4px);
				border-style: solid;
				border-top: 6px solid transparent;
				border-bottom: 6px solid transparent;
				border-left: 10px solid #000;
				border-right: 0;
		}
}