.banner__wrap {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 7rem 0;
	border-radius: 10px;
	overflow: hidden;
}

.banner__wrap:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.banner__text-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-left: 3rem;
	z-index: 2;
}

.banner__item {
	font-family: 'Unbounded', sans-serif;
	font-size: 2rem;
	font-weight: 400;
	color: #fff;
}

.youtube_button_block {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	z-index: 2;
}

.youtube_button_wrap {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	padding: 0.5rem;
	border: 1px solid #fff;
	border-radius: 100px;
}

.banner__wrap .youtube_button {
	color: #fff;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	-webkit-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
	cursor: pointer;
}

.banner__wrap .youtube_button:hover {
	color: #fff;
	background: var(--primary);
}

.youtube_button_text {
	font-size: 0.8rem;
	font-weight: 400;
	color: #fff;
	margin-left: 2rem;
	margin-right: 1rem;
}

@media screen and (max-width: 992px) {
	.banner__wrap {
		padding: 3rem 0;
	}

	.banner__text-wrap {
		width: 100%;
		-webkit-align-items: center;
		align-items: center;
		padding: 0;
	}

	.banner__item {
		font-size: 1.5rem;
	}

	.youtube_button_block {
		margin-top: 2rem;
	}
}

