/* Generic sub page banner  */
.subpage-banner {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    background-color: #b1b1b1;
    color: #000;
    align-items: center;
    background-image: url(/user/themes/probing/images/banner-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

/*
.subpage-banner:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .4;
    background-image: url(../images/banner-background.jpg);
    background-repeat: no-repeat;
    background-position: 105% -73px;
    background-size: initial;
}
*/

.subpage-banner__container {
    width: var(--site-width);
    display: flex;
    align-items: flex-start;
    padding-left: var(--site-margin-sides);
    padding-right: var(--site-margin-sides);
    flex-direction: column;
    position: relative;
    top: 10px;
}

.subpage-banner__pre-heading {
    font-size: 18px;
    font-weight: 500;
    line-height: 46px;
    color: #000000a1;
}

.subpage-banner__heading {
    font-size: 50px;
    padding-top: 11px;
    line-height: 48px;
    font-weight: 700;
}

.subpage-banner__description {
    font-size: 18px;
    width: 50%;
    line-height: 26px;
    padding-top: 22px;
}

.subpage-banner__description a, .subpage-banner__description a:link, .subpage-banner__description a:active, .subpage-banner__description a:visited {
    color: #a9e0ff;
    /* border: 1px; */
    background-color: #3f85a0b5;
    padding: 2px 6px;
    margin-left: 1px;
    border-radius: 3px;
    white-space: nowrap;
}

.subpage-banner__description a:hover {
    color: #ffffff;
    background-color: #3f85a0;
}

/* Subpage article banner */
.support-article header {
    background-color: #1e1e1e;
}

.subpage-article-banner {
    width: 100%;
    height: 370px;
    display: flex;
    color: #000;
    border-bottom: 1px solid #b7b7b7;
    justify-content: center;
    background-color: #b5b5b5;
}

.subpage-article-banner.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0, 0, 0, 0.4); /* juster opacity her */

    z-index: 1;
}

.subpage-article-banner__container {
    width: var(--site-width);
    display: flex;
    padding-left: var(--site-margin-sides);
    padding-right: var(--site-margin-sides);
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.subpage-article-banner__back-link, .subpage-article-banner__back-link:link, .subpage-article-banner__back-link:active, .subpage-article-banner__back-link:visited {
    display: flex;
    align-items: center;
    border: 1px solid #000;
    padding: 10px 22px 9px 18px;
    border-radius: 3px;
    color: #000;
    margin-bottom: 28px;
    fill: #000;
}

.subpage-article-banner__back-link:hover {
    color: #fff;
    fill: #fff;
    background-color: #0088c8;
    border-color: #0088c8;
}

.subpage-article-banner__back-link svg { 
    width: 21px;
    transform: scaleX(-1);
}

.subpage-article-banner__back-link-text {
    position: relative;
    top: 2px;
    margin-left: 9px;
    font-size: 16px;
}

.dark .subpage-article-banner__heading {
    color: #fff;
}

.subpage-article-banner__heading {
    font-size: 48px;
    font-weight: 600;
    margin-top: 126px;
    margin-bottom: 25px;
    line-height: 50px;
}

.dark .subpage-article-banner__breadcrumbs {
    color: #fff;
}

.subpage-article-banner__breadcrumbs {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 19px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.dark .subpage-article-banner__breadcrumbs a:link, .dark .subpage-article-banner__breadcrumbs a:active, .dark .subpage-article-banner__breadcrumbs a:visited {
    color: #ffffffa1;
}

.dark  .subpage-article-banner__breadcrumbs a:hover {
    color: #fff;
}


.subpage-article-banner__breadcrumbs a:link, .subpage-article-banner__breadcrumbs a:active, .subpage-article-banner__breadcrumbs a:visited {
    color: #000000bf;
}

.subpage-article-banner__breadcrumbs a:hover {
    color: #fff;
}

.subpage-article-banner__breadcrumbs svg {
    width: 36px;
    position: relative;
    top: -3px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    margin-right: 10px;
}

@media screen and (max-width:1000px) {
    .subpage-banner:before {
        display: none;
    }

}

@media screen and (max-width:900px) {
    .subpage-article-banner {
        height: 350px;
    }
}

@media screen and (max-width:700px) {
    .subpage-banner {
        height: 500px;
    }

    .subpage-banner__container {
        padding-left: var(--site-mobile-margin-sides);
        padding-right: var(--site-mobile-margin-sides);
    }

    .subpage-banner__pre-heading {
        font-size: 20px;
    }

    .subpage-banner__heading {
        font-size: 10vw;
        padding-top: 9px;
        line-height: 11vw;
        font-weight: 700;
    }

    .subpage-banner__description {
        width: 100%;
    }

    .subpage-article-banner__container {
        padding-left: var(--site-mobile-margin-sides);
        padding-right: var(--site-mobile-margin-sides);       
    }

}
