#landingpage-intro{ background-color: var(--brandcol-xdark); color: var(--white); text-align: center;}
#landingpage-work{ background-color: var(--brandcol-light);}
#landingpage-brands{ background-color: var(--brandcol-xlight); color: var(--brandcol-dark); text-align: center; }

.endblock-cta{ text-align: center; margin-top: var(--section-padding-half); font-weight: 700;}

/*============ Landing Intro ============*/
.landing-headline{
    width: 1080px;
    margin: 0 auto;
}

.landing-headline .b-text{
    color: var(--brandcol-accent);
}

/*============ Landing Video ============*/
.landing-video{
    position: relative;
    overflow: hidden;
    overflow-x: hidden;
    padding-top: 56.25%;
    width: 90vw;
    margin: 0 auto;
}

.landing-video iframe{
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-x: hidden;
}

.landing-video-loading{
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    overflow-x: hidden;
    padding-top: 56.25%;
    width: 90vw;
    margin: 0 auto;
    margin-top: 3.15%;
    background-color: var(--brandcol-xdark);
}

.landing-video-loading-container{
    margin: 0 auto;
    object-fit: cover;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*============ Landing About ============*/
.landing-about{
    position: relative;
    background-color: var(--brandcol-dark);
}

.landing-about h3{
    margin-bottom: 20px;
}

.landing-about-copy{
    width: 650px;
}

.landing-about-col{
    margin-top: 60px;
    display: grid;
    grid-column-gap: 50px;
    grid-template-columns: 205px 180px 275px; 
}

.landing-about-col h4{
    margin-top: 10px;
    transition: opacity 0.25s ease;
}

.landing-about-col h4:not(.list-label):hover{
    opacity: 0.5;
    transition: opacity 0.25s ease;
}

.landing-about-col .list-label{
    margin-top: 0px;
    margin-bottom: 15px;
    color: var(--brandcol-accent);
}

.landing-about-col-1-list{
    display: grid;
    grid-column-gap: 0px;
    grid-template-columns: 100%; 
}

.landing-about-col-2-list{
    display: grid;
    grid-column-gap: 0px;
    grid-template-columns: 100%; 
}

.landing-about-col-3-list{
    display: grid;
    grid-column-gap: 0px;
    grid-template-columns: 100%; 
}

.landing-about-image {
    position: absolute;
    width: fit-content;
    top: 50%;
    right: 0;
    transform: translate(0%, -50%);
    z-index: -1;
}

.landing-about-image img{
    z-index: -1;
    width: 35vw;
    height: 100%;
    max-width:100%;
    /*filter: grayscale();
    -webkit-filter: grayscale();*/
    opacity: .7;
}

.landing-roundel{
    position: absolute;
    right: -50px;
    top: -50px;
    z-index: 5;
    width: 200px;
    height: 200px;
    animation: rotation 60s infinite linear;
    border-radius: calc(10vw / 2);
}

.landing-roundel img{
    height: 100%;
    width: 100%;
    opacity: 1;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(359deg);
      }
}

/*============ Landing Work ============*/  

#landing-work h3{
    margin-top: 50px;
}  

