.videobanner {
	position: relative;
}

.videobanner a {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-100%);	
	text-align: center;
	height: 100px;
	width: 100px;
	background: url("img/sun_blue.svg") 0 0 no-repeat;
	background-size: cover;
}
.videobanner a::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid #FFF;
}
.videobanner a:hover::before {
	border-left-color: var(--red);
}

.videobanner a span {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%,0);
	display: block;
	padding: 10px;
	white-space: nowrap;
	color: #FFF;
}
.videobanner .text {
	color: #FFF;
	position: absolute;
	bottom: 60px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	--title-color: #FFF;
	font-size: 20px;
	font-weight: normal;
	text-shadow: 0 0 4px rgba(0,0,0,0.3);
	z-index: 1;
}

@media (max-width: 560px) {
	.videobanner .text {
		display: block;	
		padding-right: 60px;
	}
	.videobanner a span {
		display: none;	
	}
	
	.videobanner a {
		position: absolute;
		top: auto;
		left: auto;
		right: 10px;
		bottom: 60px;
		transform: none;
		text-align: center;
		height: 60px;
		width: 60px;
		z-index: 2;
	}
}
