/* @group Image Header
------------------------------------ */

.image-header{
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.image-header:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(3, 18, 38, 0.5) 0%, rgba(0, 0, 0, 0) 23.19%), linear-gradient(0deg, rgba(0, 21, 49, 0.35), rgba(0, 21, 49, 0.35));
}

.image-header:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4.6rem;
    background-color: #7EDACC;
    z-index: 1;
}

.image-header__content{
    text-align: center;
}

.image-header__content h1{
    text-transform: uppercase;
    color: #7EDACC;
    margin-bottom: 1.3rem;
}

.image-header__content h5{
    color: #fff;
}

.image-header__top{
    position: absolute; 
    top: 11.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 5;
    display: flex;
    justify-content: center;
}

.image-header__top .col-12-8{
    text-align: center;
}

.image-header__img{
    height: 100%;
}

/* Lines */

.image-header__lines--mobile,
.image-header__lines--desktop{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 1;
}

.image-header__lines--desktop{
    display: none;
    height: 100%;
    object-fit: cover;
}

@media only screen and (min-width : 961px) {
    .image-header__lines--mobile{
        display: none;
    }

    .image-header__lines--desktop{
        display: block;
        height: 96rem;
        width: 140rem;
    }

    .image-header__top {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .image-header__content{
        width: 49rem;
        margin-inline: auto;
    }
    .home .image-header__content{
        width: 100%;
        margin-inline: auto;
    }
    
    .image-header__content h1{
        margin-bottom: 2rem;
    }
}

@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
    .image-header .image-header__top .col-12-8 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
}

/* @end */
