.banner {
	color: #fff;
	object-fit: contain;
	min-height: 700px;
	position: relative;
}
.banner-movie {
	min-height: 480px;
}
.banner-movie .banner__contents {
	padding: 150px 0 50px;
}
.banner:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 9rem;
	background-image: linear-gradient(
		0deg,
		transparent,
		rgba(37, 37, 37, 0.2),
		rgba(37, 37, 37, 0.5) 50%,
		rgba(37, 37, 37, 1)
	);
	width: 100%;
	z-index: 1;
}
.banner__contents {
	margin-left: 50px;
	padding-top: 250px;
	position: relative;
	z-index: 2;
}
.banner__title {
	font-size: 3rem;
	font-weight: 800;
	padding-bottom: 0.3rem;
}
.banner__description {
	width: 45rem;
	line-height: 1.3;
	font-size: 1rem;
	max-width: 560px;
	font-weight: normal;
	padding-bottom: 1rem;
}
.banner__button {
	display: inline-block;
	cursor: pointer;
	color: #fff;
	outline: none;
	border: none;
	font-weight: 700;
	font-size: 16px;
	border-radius: 5px;
	padding: 10px 25px;
	margin-right: 1rem;
	background-color: rgba(51, 51, 51, 0.5);
	text-decoration: none;
}
.banner__button svg {
	margin-right: 8px;
}
.banner__button:hover {
	color: #000;
	background-color: #e6e6e6;
	transition: all 0.2s;
}
.banner--fadeBottom {
	height: 30.4rem;
	background-image: linear-gradient(
		180deg,
		transparent,
		rgba(37, 37, 37, 0.61),
		#111
	);
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: 1;
}
.slick-slider {
	overflow: hidden;
}
@media (max-width: 768px) {
	.banner__contents {
		margin-left: 20px;
		padding-top: 150px;
	}
	.banner {
		min-height: 450px;
	}
	.banner__title {
		font-size: 1.8rem;
	}
	.banner__description {
		font-size: 0.9rem;
		max-width: 100%;
		width: 100%;
	}
	.network_logo img {
		max-height: 50px;
	}
	.banner__button {
		font-size: 14px;
		padding: 10px 15px;
	}
}
.d-flex {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
