#headLine {
	padding: 25px 0px;
}
#headLine .videoContent {
	overflow: hidden;
	border-radius: 10px;
	position: relative;
	display: block;
	transition: .3s;
}
#headLine .videoContent .mask {
	position: absolute;
    left: 0;
    top: 0;
    padding: 25px;
    width: 75%;
    height: 100%;
    display: flex;
    align-items: end;
}
#headLine .videoContent .mask .content {
    color: var(--primaryColor);
    transition: .3s;
    background-color: rgba(255,255,255,.6);
    backdrop-filter: blur(6.1px);
    -webkit-backdrop-filter: blur(6.1px);
    border-radius: 10px;
    border: solid 1px rgba(255,255,255,.6);
}
#headLine .videoContent .mask h2 {
	color: var(--primaryColor);
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    margin-top: 0px;
    margin-bottom: 5px;
}
#headLine .videoContent .mask article {
	color: var(--textColor);
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    font-style: italic;
}
#headLine .videoContent .content .row > div:first-child {
	padding-left: 30px;
	padding-right: 0px;
	padding-top: 10px;
	display: flex;
    align-items: end;
}
#headLine .videoContent .content .row > div:last-child {
	padding: 25px;
	align-items: center;
	display: flex;
}
#headLine .videoContent:hover {
	-webkit-box-shadow: 42px 38px 42px -38px rgb(0 0 0 / 58%);
    -moz-box-shadow: 42px 38px 42px -38px rgba(0,0,0,.58);
    box-shadow: 42px 38px 42px -38px rgb(0 0 0 / 58%);
}
#headLine .videoContent:hover .content {
	color: #ffffff;
    background-color: rgb(16 58 95 / 48%);
    backdrop-filter: blur(6.1px);
    -webkit-backdrop-filter: blur(6.1px);
    border-radius: 10px;
    border: solid 1px rgb(16 58 95 / 0%);
}
#headLine .videoContent:hover .content * {
	color: #ffffff;
}
@media screen and (max-width: 992px) {
	#headLine {
	    padding: 10px 0px;
	}
	#headLine .videoContent .content .row > div:last-child {
		padding: 10px 20px
	}
	#headLine .videoContent .mask {
	    width: 80%;
	}
	#headLine .videoContent .mask h2 {
		font-size: 14px;
		line-height: 14px;
	}
	#headLine .videoContent .mask article {
		font-size: 11px;
		line-height: 11px;
	}
	#headLine .videoContent .mask {
	    padding: 17px 10px;
	}
}