:root {
    --light: #FEF9F4;
    --blue: #B1F1E7;
    --black: #1D1E21;

    --bs-body-line-height: 1.4;
    --bs-gutter-x: 1rem;
}

@font-face {
    font-family: "Lausanne";
    src: url("Lausanne-Regular.woff") format('woff');
}

html{
    font-size: 22px;
    min-width: 350px;
    scroll-behavior: smooth;
}

.navTarget::before{
    content: "";
    display: block;
    height: 130px;
    margin: -130px 0 0;
}



body{
    font-family: "Lausanne", sans-serif;
    color: var(--black);
    background: var(--light);
}

h1, h2, h3, h4, h5{
    line-height: 1;
}

.container{
    max-width: 1116px;
}

.huge{
    font-size: 4rem;
}


/* ADD MEDIA QUERY when space available */
/*
.flowLeft{
    margin-left: -100px;
}
*/

main{
    position: relative;
    max-width: 100%;
    overflow: hidden;
}


header{
    top: 0;
    position: sticky;
    left:0;
    right: 0;
    z-index: 1000;
    background: var(--light);
    padding: 20px 0;
}

#headerContent{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 18px;
}

#mainNav{
    display: flex;  
    flex-wrap: wrap;
    padding: 0;
    margin: 0 -15px;
    list-style: none;
    color: var(--black);
}
#mainNav a{
    display: block;
    color: inherit;
    text-decoration: none;
    text-align: center;
    
    padding: 10px 15px;
    box-shadow: 0;
    border-radius: 25px;
}

#mainNav a:hover{
    box-shadow: 0 0 0 2px var(--black);
}

#openMenu{
    display: none;
    background: var(--light);
    width: 50px;
    height: 50px;
    padding: 0;
    box-shadow: 0;
    border-radius: 50%;
    border: 0;
}
#openMenu:hover{
    box-shadow: 0 0 0 2px var(--black);
}

#logo{
    position: relative;
    display: flex;
    width: 225px;
    height: 70px;

    /** align items to bottom **/
    -webkit-align-items: flex-end;
    align-items: flex-end;
    justify-content: space-between;
    color: var(--black);
    padding-bottom: 18px;
}
#logoSB{
    display: block;
    width: 50%;
}
#logoBM{
    display: block;
    width: 55%;
    transform: translateY(12%) translateX(3%);
}
#logoSub{
    position: absolute;
    bottom: 0px;
    right: 0;
    font-size: 7.7px;
}

#SBslider{
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}
#SBSmask{
    position: relative;
    z-index: 1;
    background-image: url('./sb-negatief.svg');
    background-repeat: no-repeat;
    background-size:  100%;
    background-color: var(--light); 
    animation: openUp 3s forwards;
    width: 100%;
    aspect-ratio: 228/107;
}


@keyframes openUp {
    from    { background-color: var(--light); }
    to      { background-color: transparent; }
}

#SBSmask svg{
    position: absolute;
    top: 1px;
    opacity: 1;
    height: 100%;
    left: -47vw;
}

#SBSslides{
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
}
#SBSslides * {
    height: 100%;
}
#SBSslides .splide__slide{
    background-size: 100% auto;
}

.sbStyle{
    fill: var(--black);
}

#ourstory{
    background-color: var(--blue);
    margin-top: -1px;
    padding: 5rem 0;
}

#ourstoryLogo{
    position: relative;
    display: inline-block;
    width: auto;
    margin-bottom: 2rem;
    text-align: left;
}

#ourstoryLogo img{
    position: relative;
    width: 200px;
    background: var(--blue);
    z-index: 1;
}

#ourstoryLogo::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    right: 0;
    height: 2px;
    background: var(--black);
    z-index: 0;
}

#ventures{
    padding-top: 3rem;
    padding-bottom: 3rem;
}

#caseCarouselNav{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 100;
}

#SBSslides .carousel-item{
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.navBtn{
    display: inline-block;
    position: relative;
    background: var(--light);
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    border: 2px solid var(--black);
}
.navBtn::after{
    content: '';
    position: absolute;
    top: 15px;
    left: 18px;
    width: 15px;
    height: 15px;
    border-left: 2px solid var(--black);
    border-top: 2px solid var(--black);
    transform: rotate(-45deg);
}
    
.navBtn.next::after{
    transform: rotate(135deg);
    left: 12px;
}

.navBtn:hover{
    
    background-color: var(--black);
}
.navBtn:hover::after{
    border-color: var(--light);
}

.caseContent{
    margin-top: 1rem;
    padding-left: 1rem;
}

.caseName{
    border-bottom: 2px solid var(--black);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

#principles{
    margin: 5rem 0;
}

#principleContent{
    position: relative;
    padding-right: 150px;

    /*border-bottom: 2px solid var(--black);*/
    padding-bottom: 40px;
    margin: 1rem 0 0;

}
#principleContent p{
    margin:0;
}

#pcNav{
    position: absolute;
    bottom: -25px;
    right: 0;
    z-index: 1;
}

#caseCarousel .splide__slide{
    padding-right: var(--bs-gutter-x);
}

#principleCarousel{
    border-top: 2px solid var(--black);
    /*padding-top: 40px;*/
}

.pciContent{
    display: flex;
    padding: 2rem;
    min-height: 300px;
    height: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
}
.pciContent h5{
    margin-bottom: 1.5rem;
    font-size: 2rem;
}
.pciContent > *{
    display: block;
    width: 100%;
    margin: 0;
    font-size: 18px;
    line-height: 25px;
}

.pciContent.light{  background-color: var(--blue); }
.pciContent.white{  background-color: #fff; }
.pciContent.dark{   background-color: var(--black);
                color: var(--light); }



@media screen and (min-width: 1200px) {
    #caseCarousel .splide__slide{
        padding-right: calc( ( 100vw - 1100px ) / 2 );
    }
    #principleCarousel{
        margin-left: calc( ( 100vw - 1100px ) / 2 );
    }

    .pciContent{
        
        padding: 50px 80px;
    }
}

/*
@media screen and (max-width: 767px) {
    #principleCarousel{
        padding-top: 0;
    }
}
*/




            

#approach{
    margin-bottom: 5rem;
}

#approachList{
    margin: 2rem 0 0 0;
    padding: 0;
}

#approachList li{
    margin:5px 0;
    padding:0 0 0 30px;
    list-style: none;
    position: relative;
}

#approachList li::before{
    content: '';
    position: absolute;
    left: 0;
    top: .2rem;
    height: 1rem;
    width: 20px;
    background: url('/assets/angel.svg') no-repeat left center;
}

#disciplinesAngel{
    
    text-align: center;
}

#disciplinesAngel img{
    margin: 10vh auto 0vh;
    height: 5rem;
    transform-origin: center;
}

#contact{
    background: linear-gradient( 90deg, var(--black) 0,  var(--black) 50%, var(--blue) 51%);
}

#contactInfo{
    padding: 3rem;
    background-color: var(--blue);
}
#contactInfo a{
    color: inherit;
    text-decoration: none;
}

#contactInfo a:hover{
    text-decoration: underline;
}

.dlContainer ul{
    display: block;
    margin: 0;
    padding: 0;
}
.dlContainer li{
    margin: 0 0 10px 0;
    padding: 0;
    list-style: none;
}

.dlContainer li::before{
    content: '';
    position: relative;
    display: inline-block;
    width: 36px;
    height: 18px;
    top: 2px;
    background: url('/assets/angel_light.svg') no-repeat;
    background-size: auto 100%; /* fit height */
    background-position: left center;
    transform-origin: center;
}

.dlContainer ul.left li::before{
    transform: rotate(180deg);
}


@media  (max-width: 992px){
    html{
        font-size: 18px;
    }
    #openMenu{
        display: block;
    }
    #mainNav{
        padding: 30px 0;
        position: absolute;
        top: 0;
        right: 15px;
        flex-direction: column;
        max-width: 0;
        overflow: hidden;
        background: var(--light);
        transition-duration: .2s;
    }

    #mainNav li{
        height: 45px;
        margin: 5px 30px;
        padding: 0;
    }

    body.showMenu #mainNav{ 
        max-width: 400px;
        transition-duration: .5s;
    }



    #contact{
        background: var(--blue);
    }
    #contactInfo{
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
}

@media (max-width: 768px){
    html{
        font-size: 16px;
    }
    .huge{
        font-size: 3rem;
    }
    
}


@media (max-width: 767px){
    header{
        padding: 10px 0;
    }

    #principleContent{
        padding-right: 0;
    }
    #principleCarousel{
        padding-top: 0;
    }
    /*
    #pcNav{
        position: relative;
        margin-top: 1rem;
        bottom: 0;
        right: 0;
        text-align: right;
    }
    */
}