File: /var/www/quadcode-jobs/resources/sass/components/_about-video.scss
.about-video {
overflow: hidden;
display: flex;
flex-direction: column;
padding-top: 0;
padding-bottom: 0;
&__inner {
position: relative;
flex-grow: 1;
}
&__video-wrap {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
video {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
object-fit: cover;
}
}
&__overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
&:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
background: rgba(19, 44, 63, .6);
}
}
&__title {
position: relative;
z-index: 10;
margin-bottom: 3rem;
font-size: var(--typo-headline);
font-weight: 600;
color: var(--color-text-light);
}
&__control {
position: relative;
z-index: 10;
cursor: pointer;
}
}