/*
 * Inhoud
 *
 * -Main banner
 * -Pagina hoogte
 * --Main banner
 * -Responsive
 * --Main banner
 * Main banner
 * -Faq
 * -Solved case
 * -News article
 * -Banner small
 *
 */

/* Main banner */
.sp-banner {
    margin: 0 -50px;
}
.main-banner {
    height: 100vh;
    overflow: hidden;
    background-image: url("/Public/img/nlcoBannerMain.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    margin: 0 auto;
}
.main-banner .outer-container {
    display: flex;
    margin: 0 auto;
    height: 100%;
    max-width: 1280px;
    width: 100%;
    position: relative;
    align-items: center;
    padding-top: 140px;
}
.main-banner .inner-container {
    display: block;
}
.main-banner .banner-header {
    position: relative;
    color: var(--secondary-color);
    padding: 18px 0;
    font-size: 60px;
    font-family: 'Ubuntu-light', sans-serif;
    font-weight: lighter;
    z-index: 1;
    background: rgb(0 38 58 / 80%);
    display: inline;
    white-space:pre-wrap;
    box-shadow: -30px 0 0 rgb(0 38 58 / 80%), 30px 0 0 rgb(0 38 58 / 80%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    line-height: 103px;
    margin-left: 30px;
}
.main-banner .banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.main-banner .banner-action {
    display: block;
    position: relative;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: bold;
    padding: 18px 30px;
    margin: 0;
}
.main-banner .btn-secondary {
    margin-top: 60px;
    margin-left: 120px;
    display: flex;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.main-banner .btn-secondary:hover {
    background-color: var(--default-color);
    border-color: var(--default-color);
}

/* Image */
.outer-image {
    overflow: hidden;
    margin: 0;
    padding-bottom: 100%;
    height: 0;
    position: relative;
}
.outer-image img {
    height: 100% !important;
    width: auto !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.outer-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    z-index: 1;
}
.image-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 100%;
}

/* Content */
.content-title h1,
.content-title h2 {
    color: var(--primary-color);
    font-size: 40px;
    font-weight: bold;
    font-family: 'Ubuntu-bold', sans-serif;
    margin-bottom: 40px;
}
.content-title h3 {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Ubuntu-bold', sans-serif;
    margin-bottom: 15px;
}
.content {
    margin-bottom: 40px;
}
.content p,
.content strong,
.content li {
    font-size: 20px;
    font-weight: lighter;
    font-family: 'Ubuntu-light', sans-serif;
    line-height: 32px;
}
.content strong {
    font-weight: bold;
    font-family: 'Ubuntu-bold', sans-serif;
}


/* Action buttons */
.action-buttons {
    margin-top: 60px;
}
.action-buttons .btn-primary {
    margin-right: 30px;
}

/* Ad */
.ad {
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 16px;
}
.ad::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    height: 9px;
    width: 9px;
}

/* Pagina hoogte */
@media (max-height: 650px) {
    /* Main banner */
    .main-banner .outer-container {
        align-items: flex-start;
        padding-top: 140px;
    }
    .main-banner .banner-header {
        font-size: 40px;
        line-height: 81px;
    }
    .main-banner .banner-action {
        font-size: 24px;
    }
    .main-banner .btn-secondary {
        margin-top: 30px;
        font-size: 20px;
    }
}
@media (max-height: 500px) {
    /* Main banner */
    .main-banner .outer-container {
        padding-top: 120px;
    }
    .main-banner .banner-header {
        font-size: 30px;
        line-height: 70px;
    }
    .main-banner .banner-action {
        font-size: 18px;
        padding: 9px 15px;
    }
    .main-banner .btn-secondary {
        font-size: 18px;
        margin-left: 30px;
        text-align: center;
        padding: 9px 15px;
    }
}

/* Responsive */
@media (max-width: 1599px) {
    /* Main banner */
    .main-banner .outer-container {
        padding-top: 100px;
    }
}
@media (max-width: 1499px) {
    /* Main banner */
    .main-banner .inner-container {
        padding: 0 40px;
    }
}
@media (max-width: 1399px) {
    /* Buttons */
    .action-buttons .btn-primary {
        margin-right: 15px;
        margin-bottom: 15px;
    }
}
@media (max-width: 1199px) {
    /* Main banner */
    .sp-banner {
        margin: -25px;
    }
    .main-banner .inner-container {
        max-width: 900px;
    }
}
@media (max-width: 991px) {
    /* Main banner */
    .main-banner .inner-container {
        max-width: 600px;
    }
    .main-banner .banner-header {
        font-size: 40px;
        line-height: 81px;
    }
    .main-banner .banner-action {
        font-size: 24px;
    }

    /* Image */
    .outer-image {
        padding-bottom: 400px;
    }
    .outer-image img {
        height: auto !important;
        min-height: 400px;
        width: auto !important;
        min-width: auto;
        max-width: 150%;
    }
}
@media (max-width: 768px) {
    /* Main banner */
    .main-banner .banner-action {
        font-size: 20px;
        padding: 9px 15px;
    }
    .main-banner .btn-secondary {
        font-size: 20px;
        padding: 10px 15px;
        margin-top: 30px;
        margin-left: 60px;
    }
}
@media (max-width: 576px) {
    /* Main banner */
    .sp-banner {
        margin: -20px;
    }
    .main-banner .outer-container {
        align-items: flex-start;
        padding-top: 140px;
    }
    .main-banner .inner-container {
        padding: 0 20px;
    }
    .main-banner .banner-header {
        font-size: 30px;
        line-height: 70px;
    }
    .main-banner .banner-action {
        font-size: 18px;
    }
    .main-banner .btn-secondary {
        font-size: 18px;
        margin-left: 30px;
        text-align: center;
    }

    /* Content */
    .content-title h1,
    .content-title h2 {
        font-size: 30px;
    }
    .content p,
    .content strong {
        font-size: 18px;
    }

    /* Image */
    .outer-image {
        padding-bottom: 300px;
    }
    .outer-image img {
        min-height: 101%;
        min-width: auto;
        max-width: 200%;
    }
    .outer-image::after {
        width: 75px;
        height: 75px;
    }
}

/* Faq */
.bg-green .sp-faq {
    --default-color: #fff;
    --primary-color: #00263A;
    --secondary-color: #fff;
}
.sp-faq .list-item {
    margin-bottom: 20px;
}
.sp-faq .content-header {
    font-size: 40px;
    font-family: 'Ubuntu-bold', sans-serif;
    font-weight: bold;
    color: var(--default-color);
    margin-bottom: 40px;
}
.sp-faq .sp-dropdown-list {
    list-style: none;
    padding: 0;
}
.sp-faq .list-item-title {
    display: flex;
    font-family: 'Ubuntu-bold', sans-serif;
    font-weight: bold;
    cursor: pointer;
}
.sp-faq .list-item-title .btn-arrow {
    height: 30px;
    width: 30px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    border-radius: 50px;
}
.sp-faq .btn-icon {
    width: 10px;
    height: auto;
}
.sp-faq .list-item.active .btn-arrow .btn-icon {
    transform: rotate(90deg);
}
.sp-faq .faq-title {
    padding-left: 20px;
    line-height: 32px;
    font-size: 20px;
    color: var(--default-color);
}
.sp-faq .list-item-content {
    margin: 15px 0 40px 50px;
    display: none;
}
.sp-faq .list-item.active .list-item-content {
    display: block;
}
.sp-faq .list-item-content p,
.sp-faq .list-item-content ul {
    margin: 0;
    font-weight: normal;
    font-style: normal;
    font-family: 'Ubuntu-light', sans-serif;
    font-size: 20px;
    color: var(--default-color);
}
.sp-faq .list-item-content li,
.sp-faq .list-item-content p i {
    font-style: inherit;
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
}

@media (max-width: 1199px) {
    .sp-faq .list-item {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--default-color);
    }
    .sp-faq .list-item-title {
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
    }
    .sp-faq .faq-title {
        padding-left: 0;
        text-align: left;
        width: 100%;
    }
    .sp-faq .list-item-content {
        margin-left: 0;
    }
}
@media (max-width:576px) {
    .sp-faq .content-header {
        font-size: 30px;
    }

    .sp-faq .faq-title,
    .sp-faq .list-item-content p,
    .sp-faq .list-item-content ul {
        font-size: 18px;
    }
}

/* Solved case */
.sp-solvedCase {
    padding: 0 25px;
}
.sp-solvedCase .news-block {
    cursor: pointer;
    background-color: var(--primary-color);
    padding: 50px;
    display: block;
    position: relative;
    overflow: hidden;
    min-height: 463px;
    max-height: 443px;
    margin: -25px;
    box-sizing: border-box;
    border-collapse: collapse;
}
.sp-solvedCase .news-block::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: 115px;
    height: 115px;
    background: var(--secondary-color);
}
.sp-solvedCase .col-md-4:nth-child(n+4) {
    margin-top: 40px;
}
.sp-solvedCase .news-block span.news-smallTitle {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 19px;
    display: block;
    font-family: 'Ubuntu-light', sans-serif;
}
.sp-solvedCase .news-block h4.news-title {
    color: var(--secondary-color);
    font-family: 'Ubunto-bold', sans-serif;
    font-weight: bold;
    font-size: 28px;
    line-height: 42px;
    margin-top: 19px;
    margin-bottom: 27px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.sp-solvedCase .news-block .news-button-box {
    position: absolute;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    bottom: 0;
    left: 115px;
    height: 115px;
    right: 0;
}
.sp-solvedCase .news-block .news-button-box a.news-button {
    border: 1px solid var(--secondary-color);
    font-size: 24px;
    font-family: 'Ubunto-bold', sans-serif;
    font-weight: bold;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--secondary-color);
}
.sp-solvedCase .news-block a.news-title-link {
    text-decoration: none;
}
.sp-solvedCase .news-block:hover .news-button-box a.news-button {
    background: var(--de-color);
    color: var(--secondary-color);
    border-color: var(--default-color);
}

@media (max-width: 1499px) {
    .sp-solvedCase .news-block .news-button-box a.news-button {
        font-size: 18px;
        padding: 20px 30px;
    }
}
@media (max-width: 1199px) {
    .sp-solvedCase .col-sm-4 {
        width: 50%;
        padding: 50px;
    }
    .sp-solvedCase .news-block {
        padding: 25px;
        min-height: 433px;
    }
    .sp-solvedCase .news-block .news-button-box a.news-button {
        padding: 15px 20px;
    }
}
@media (max-width: 991px) {
    .sp-solvedCase .news-block::after {
        height: 65px;
        width: 65px;
    }
    .sp-solvedCase .news-block .news-button-box {
        height: 65px;
        left: 65px;
    }
}
@media (max-width: 768px) {
    .sp-solvedCase .col-sm-4 {
        width: 100%;
        padding: 50px;
    }
    .sp-solvedCase .news-block::after {
        height: 115px;
        width: 115px;
    }
    .sp-solvedCase .news-block .news-button-box {
        height: 115px;
        left: 115px;
    }
    .sp-solvedCase .news-block .news-button-box a.news-button {
        font-size: 20px;
        padding: 20px 30px;
    }
}
@media (max-width: 576px) {
    .sp-solvedCase {
        padding: 0;
    }
    .sp-solvedCase .col-sm-4 {
        width: 100%;
        padding: 50px 25px;
    }
    .sp-solvedCase .news-block {
        padding: 25px;
        min-height: 375px;
    }
    .sp-solvedCase .news-block::after {
        height: 65px;
        width: 65px;
    }
    .sp-solvedCase .news-block .news-button-box {
        height: 65px;
        left: 65px;
    }
    .sp-solvedCase .news-block .news-button-box a.news-button {
        font-size: 18px;
        padding: 15px 20px;
    }
    .sp-solvedCase .news-block h4.news-title {
        font-size: 24px;
    }
}


/* News article */
.sp-newsArticle {
    display: flex;
    justify-content: center;
    padding: 50px;
    height: calc(100vh - 477px);
}
.sp-newsArticle .sp-content-container {
    width: 1080px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sp-newsArticle h3 {
    font-family: 'Ubunto-bold', sans-serif;
    font-weight: bold;
    font-size: 24px;
}
.sp-newsArticle .news-smallTitle {
    font-size: 16px;
    margin-bottom: 19px;
    display: block;
    font-family: 'Ubuntu-light', sans-serif;
}
.sp-newsArticle .content-header {
    font-size: 40px;
    font-family: 'Ubunto-bold', sans-serif;
    color: var(--primary-color);
    margin: 0 0 10px 0;
    line-height: 1;
}
.sp-newsArticle .sp-content-container p,
.sp-newsArticle .sp-content-container li {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 20px;
    font-family: 'Ubuntu-light', sans-serif;
    font-weight: lighter;
}
.sp-newsArticle .sp-content-container li {
    margin-bottom: 0;
}
.sp-newsArticle .content-button {
    display: flex;
    justify-content: flex-end;
}
.sp-newsArticle .inner-content {
    overflow-wrap: break-word;
}

@media (max-width: 576px) {
    .sp-newsArticle .content-header{
        font-size: 30px;
    }
    .sp-newsArticle .sp-content-container p {
        font-size: 18px;
    }
}


/* Banner small */
.sp-banner-small {
    max-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0 -50px;
}
.page-content .sp-banner-small {
    margin: 0;
}
.sp-banner-small img {
    width: 100% !important;
    height: auto !important;
}

@media (max-width:1199px) {
    .sp-banner-small {
        margin: -25px;
    }
}
@media (max-width:991px) {
    .sp-banner-small {
        max-height: 350px;
    }
}

/* Quotes */
.sp-quotelist {
    padding: 60px 0;
}
.sp-quotelist .sp-dropdown-list {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 150px;
    padding-left: 35px;
}
.sp-quotelist .sp-dropdown-list::after {
    content: "";
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 0;
    width: 1px;
    background-color: var(--primary-color);
}
.sp-quotelist .sp-dropdown-list .quote-title {
    font-size: 24px;
    font-family: 'Ubunto-light', sans-serif;
    color: var(--primary-color);
    font-weight: lighter;
    line-height: 50px;
}
.sp-quotelist .quote-button {
    padding-left: 150px;
    margin-top: 80px;
}
.sp-quotelist .quote-button .quote-btn {
    padding: 15px 35px;
    color: var(--secondary-color);
    background: var(--primary-color);
    font-size: 27px;
    text-decoration: none;
    font-family: 'Ubuntu-Bold';
    font-weight: bold;
    display: block;
}