.header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #fff;
}

.header__video .plyr {
    z-index: 0;
    border-radius: 12px;
    aspect-ratio: 2.38;
}

.header__video .plyr__poster{
	background-size: cover;
}
.header__video .plyr__controls {
    display: none;
}

.header__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header__bottom {
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 1rem;
}

.header__title {
    background: white;
    border-radius: 8px;
}

.header__title h1 {
    white-space: nowrap;
}

.header__imagelinks {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5vw;
}

.header__imagelink {
    overflow: hidden;
    flex-basis: 100%;
    border-radius: 8px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
    aspect-ratio: 1.66;
}

.header__imagelink img {
    /*filter: brightness(80%);*/
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .header__imagelinks {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .header__title {
        flex-basis: 100%;
    }
}

@media screen and (max-width: 414px) {
    .header__title {
       flex-basis: 100%
    }
}

