@charset "utf-8";

.Others__subTitle {
	text-align: center;
}

.SupportOthersSection__movies {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.SupportOthersSection__movies .mv_thumb {
	margin-top: 4rem;
	margin-right: 1rem;
	margin-left: 1rem;
	width: 30%;
	cursor: pointer;
}

.SupportOthersSection__movies .mv_thumb img {
	width: 100%;
}

.SupportOthersSection__movies .mv_title {
	text-align: center;
	line-height: 1.5;
}

.SupportOthersSection__movies .mv_thumb:hover .mv_title {
	color: #00acc8;
}

.SupportOthersSection__boxFooter {
	margin-top: 2rem;
}

.SupportFaqSection ul, .SupportFaqSection ol {
	list-style-position: inside;
}

/* View Pop */
.movie_view_pop {
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	z-index: 999;
	visibility: hidden;
	opacity: 0;
	transition: all 0.8s;
}

.movie_view_pop.visible {
	visibility: visible;
	opacity: 1;
}

.movie_view_pop .wrapper {
	width: 80vw;
	height: 80vh;
	margin: 2rem auto;
	position: relative;
}

.movie_view_pop iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.movie_view_pop .close {
	position: absolute;
	top: 0;
	right: -60px;
	z-index: 9999;
	height: 40px;
	width: 40px;
	cursor: pointer;
}

.movie_view_pop .border1, .movie_view_pop .border2 {
	width: 40px;
	height: 2px;
	background: #fff;
}

.movie_view_pop .border1 {
	transform: rotate(45deg) translate(13px, 13px);
}

.movie_view_pop .border2 {
	transform: rotate(135deg) translate(12px, -12px);
}

@media (max-width: 768px) {
	.SupportOthersSection__movies {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.SupportOthersSection__movies .mv_thumb {
		margin-top: 2rem;
		width: auto;
	}
	.movie_view_pop {
		padding: 20px 0;
	}
	
	.movie_view_pop .wrapper {
		width: 100vw;
		height: 40vh;
	}
	
	.movie_view_pop .close {
		right: 1rem;
		top: -50px;
	}
}

@media (max-width: 374px) {
	.SupportOthersSection__movies .mv_thumb {
		margin-right: 0.5rem;
		margin-left: 0.5rem;
	}
	
	.SupportOthersSection__movies .mv_title {
		font-size: 10px;
	}
}
