/* @group Main header
------------------------------------ */
.main-header {
    position: relative;
    isolation: isolate;
    height: 100vh;
    min-height: 50rem;
}
.main-header .row {
    height: 100%;
}
.main-header .col-content {
    margin: -4rem 0 0;
}
.main-header .outer-image::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
    background-blend-mode: multiply;
}
.main-header .outer-image {
    background-color: var(--light-green);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.main-header h1 {
    display: inline-block;
    position: relative;
    font-family: var(--playfair-font);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    font-size: 5.5rem;
    margin-bottom: 1rem;
}
.main-header h1 .icon-bird {
    position: absolute;
    top: 0.2vh;
    right: -0.2vh;
    color: var(--beige);
    font-size: 3.4vh;
    z-index: 2;
    display: inline-block;
}
.main-header p {
    font-style: normal;
    font-weight: 450;
    font-size: 1.6rem;
    line-height: 1.2em;
    letter-spacing: 0.125em;
}
.main-header h1,
.main-header p {
    color: var(--beige);
}
.main-header .action {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    text-align: center;
}
.main-header .action a {
    color: var(--beige);
    text-align: center;
    font-family: var(--rubric-font);
    font-style: normal;
    line-height: normal;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: .25em;
    max-width: 10rem;
    display: inline-block;
}
@media only screen
and (min-width : 961px) {
    .main-header {
        height: auto;
        isolation: unset;
    }
    .main-header .col-content {
        margin: 0;
        width: 162vh;
        padding: 0 0 0 18.7vh;
    }
    .main-header .action {
        right: 31vh;
        bottom: 8vh;
        left: auto;
        text-align: left;
    }
    .main-header .action a {
        text-align: left;
        font-size: 1.4vh;
        letter-spacing: .18em;
        max-width: none;
    }
    .main-header .action a i {
        display: block;
        font-size: 2.6vh;
    }
    .main-header h1,
    .main-header p {
        max-width: 58vh;
    }
    .main-header h1 {
        font-size: 8.9vh;
        margin-bottom: 1.79vh;
    }
    .main-header p {
        text-align: left;
    }
    /* Shapes */
    .main-header .shape-top {
        position: absolute;
        top: 0;
        right: -17.9vh;
        width: 26.85vh;
        height: 26.85vh;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url('../../img/layout/frontpage/update/square-intro-top.svg');
        z-index: 2;
    }
    .main-header .shape-bottom {
        position: absolute;
        bottom: 0;
        right: -17.9vh;
        width: 26.85vh;
        height: 17.9vh;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url('../../img/layout/frontpage/update/square-intro-bot.svg');
        z-index: 2;
    }
    /* Hovers */
    .main-header .action a:hover {
        opacity: .7;
    }
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
    
    .main-header .outer-image video,
    .main-header .outer-image img {
        position: relative;
        z-index: 1;
    }
    .main-header .outer-image video {
        object-position: 83% center;
    }
    .main-header .action {
        width: 100%;
        text-emphasis: center;
        padding-bottom: 8rem;
    }
    .main-header .action i {
        margin-top: 1rem;
        display: block;
        font-size: 4rem;
    }
    .main-header .action i::before {
        content: "\e904";
    }
}

/* @end */


/* Animations */
.main-header .outer-image video,
.main-header .col-content h1,
.main-header .col-content p,
.main-header .action {
    opacity: 0;
}   
.main-header .outer-image.animateActive video,
.main-header .col-content.animateActive h1,
.main-header .col-content.animateActive p {
    animation: fade var(--fade-animation) forwards;
}
.main-header .action.animateActive {
    animation: fade var(--fade-animation) forwards;
}
.main-header .outer-image.animateActive video { animation-delay: .3s; }
.main-header .col-content.animateActive h1 { animation-delay: .7s; }
.main-header .col-content.animateActive p { animation-delay: 1.2s; }
.main-header .action.animateActive { animation-delay: 1.4s; }

@media only screen
and (min-width : 961px) {
    .main-header .action.animateActive {
        animation: fadeLeft var(--fade-animation) forwards;
    }
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {

}
