.home nav {
    background: transparent;
}

.home header {
    background: transparent;
}

.home.ditec-norway .uk-navbar-nav li a:hover {
    background: transparent;
    border: 1px solid #fff;
}

.home.ditec-denmark .uk-navbar-nav li a:hover {
    background: transparent;
    border: 1px solid #fff;
}

.home.mega-menu-active .uk-navbar-nav li a:hover {
    background: var(--card-background);
    border: 1px solid var(--card-border);
}

.hero-section {
    margin-top: -107px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    object-fit: cover;
    height: calc(100vh - 212px);
    height: calc(100svh - 212px);
}

.logged-in .hero-image img {
    height: calc(100vh - 242px);
    height: calc(100svh - 242px);
}

.hero-image::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.61) 0%, rgba(0, 0, 0, 0.15) 50.91%, rgba(0, 0, 0, 0.44) 100%);*/
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 51.66%, rgba(0, 0, 0, 0.68) 100%);
}

.hero-image h1 {
    position: absolute;
    bottom: 45px;
    color: #fff;
    z-index: 99;
    font-size: 2.2rem;
}

.hero-image span {
    display: block;
    font-weight: 400;
}

@media screen and (max-height: 760px) {

    .hero-image img {
        height: 550px;
    }

}

@media screen and (max-width: 880px) {

    .hero-section {
        margin-top: -104px;
    }
    
    .hero-image img {
        /*height: 100vh;
        height: 100svh;*/
        height: calc(100vh - 183px);
        height: calc(100svh - 183px);
    }

    .hero-image h1 {
        font-size: 1.5rem;
        bottom: 30px;
    }

    .ditec-denmark .hero-image h1 {
        font-size: 1.48rem;
    }

}

@media screen and (max-height: 330px) and (max-width: 880px) {

    .hero-image img {
        height: 330px;
    }

}