/* -- Header -- */

.single-services header {
    position: absolute;
    width: 100%;
}

.single-services nav {
    background: transparent;
}

.single-services header {
    background: transparent;
}

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

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

.single-services .menu-item-object-services a {
    background: 0;
    border: 1px solid #fff;
}

.single-services.mega-menu-active .menu-item-object-services a {
    background: var(--card-background) !important;
    border: 1px solid var(--card-border) !important;
}

/* -- Hero -- */

.services-hero {
    position: relative;
    z-index: 99;
}

.services-hero img {
    height: 100vh;
    height: 100svh;
    width: 100%;
    object-fit: cover;
}

.services-hero-content-container {
    position: relative;
}

.services-hero-content {
    position: absolute;
    bottom: 42px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    z-index: 99;
    left: 0;
    right: 0;
}

.services-hero-title {
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.services-hero-text {
    max-width: 480px;
}

.services-hero-text p {
    margin-bottom: 10px;
}

.services-hero-price, .service-hero-price-multiple {
    font-size: 1.1rem;
    font-weight: 600;
}

.services-hero-breadrumbs {
    padding-top: 30px;
}

.service-hero-price-multiple {
    display: flex;
    gap: 28px;
}

@media screen and (min-width: 960px) {

    .services-hero::before {
        background: linear-gradient(180deg, rgb(0 0 0 / 80%) 0%, rgba(0, 0, 0, 0.00) 100%);
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 400px;
    }
    
    .services-hero::after {
        background: linear-gradient(180deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 80%) 100%);
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 460px;
    }

}

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

    .single-services header {
        position: relative;
    }

    .services-hero-flex-order {
        display: flex;
        flex-direction: column;
    }

    .services-hero-flex-order .services-hero {
        order: 2;
    }

    .services-hero-flex-order .services-hero-breadrumbs-container {
        order: 1;
    }

    .services-hero-breadrumbs {
        padding-top: 0px;
    }

    .services-hero img {
        height: unset;
        border-radius: 16px;
    }

    .services-hero-content {
        padding-top: 26px;
        position: relative;
        bottom: unset;
    }

    .services-hero-title {
        font-size: 1.75rem;
    }

    .services-hero-price {
        font-size: 1.15rem;
    }

    .service-hero-price-multiple {
        flex-direction: column;
        gap: 6px;
        font-size: 1.05rem;
    }

}