

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


:root {


    --pbc-blue: #02192A;
    --pbc-sky-blue: #EBFEFF;
    --pbc-sky-blue-light:#F0FBFC;
    --pbc-aqua-dark: #83FBFE;
    --pbc-grey-blue: #8b97a0;
    --pbc-grey: #707070;
    --pbc-mint-green:#a5cfd1;
    --pbc-grey-border: #DFDFE0;
    --pbc-grey-light: #B9B9B9;
    --pbc-grey-light-light: rgba(193, 193, 193, 0.21);
    --pbc-grey-shadow: #0000001a;
    --pbc-bg-grey: #F4F4F4;
    --pbc-font-regular: Graphik-Regular;
    --pbc-font-light: Graphik-Light;
    --pbc-font-medium: Graphik-Medium;

    --pbc-primary-blue: #02192A;
    --pbc-secondary-blue: #83fbfe;
    --pbc-electric-blue: #83fbfe;
    --pbc-dark-electric-blue: #1A3232;
    --pbc-light-electric-blue: #D9FDFE;
    --pbc-bubbles: #EBFEFF;
    --pbc-bright-gray: #EFECE9;

    --percent-side-desktop: 9.2vw;
    --percent-side-mobile: 6vw;

    --header-padding: 56px;
    --pagesize-mobile: calc(100vh - var(--header-padding) - 20px);
    --card-width-mobile: calc(100vw - var(--percent-side-mobile)*2)
}

@font-face {
    font-family: "Graphik-Light";
    src: url("./fonts/Graphik-Light-Web.woff") format("woff"),
         url("./fonts/Graphik-Light-Web.woff2") format("woff2");
}

@font-face {
  font-family: "Graphik-Regular";
  src: url("./fonts/Graphik-Regular-Web.woff") format("woff"),
        url("./fonts/Graphik-Regular-Web.woff2") format("woff2");
  font-weight: normal;
}
@font-face {
  font-family: "Graphik-Medium";
  src: url("./fonts/Graphik-Medium-Web.woff") format("woff"),
        url("./fonts/Graphik-Medium-Web.woff2") format("woff2");
  font-weight: bold;
}





b {
    font-family: var(--pbc-font-medium);
}

span.inactive {
    position: absolute;
    top: 40px;
    z-index: 50;
    background-color: var(--mweu-blue);
    color: var(--pbc-sky-blue);
    padding: 5px 33px;
    left: 0;
    font-size: 2.2rem;
    font-family: var(--pbc-font-medium);
}


h1 {
    font-size: 3.9rem;
    font-weight: normal;
    letter-spacing: -0.15rem;
    line-height: 1.2;
}




p.font-light{
    font-family: var(--pbc-font-light);
}

p.font-regular{
    font-family: var(--pbc-font-regular);
}

p.font-medium{
    font-family: var(--pbc-font-medium);
}

img {
    height:auto;
    width: 100%;
}

.mobile_hide{
    display:none;
}

@media screen and (min-width: 1024px) {
    .mobile_hide{
        display:block;
    }


}


/*--------------------------------------------------------------
# BUTTON
--------------------------------------------------------------*/

.btn-highlight {
    background-color: var(--pbc-aqua-dark)!important;
}



.pbc-hero-img {

}

.landing--header {
    position: absolute;
    background-color: var(--mweu-blue);
    color: white;
    max-width: calc(100vw - 2*var(--percent-side-mobile));
    border-radius: 0 4.5rem 4.5rem 0;
    top: 10%;
}

.landing--header_content{
    display:flex;
    flex-direction: column;
    margin: 0 var(--percent-side-mobile) 0 var(--percent-side-mobile);
}

.landing--header-headline{
    padding-bottom: 2rem;
    font-family: var(--pbc-font-regular);
}

.landing--subtitle{
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.landing--image {
    min-height: var(--pagesize-mobile);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: end;
    flex-direction: column;
}

.landing--gradient{
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(0,103,116,0.8) 0%, rgba(25,131,142,0.5) 20%, rgba(0,0,0,0) 35%);
}

.landing--btn {
    /* z-index needs to be 2 to be in front of the gradient. */
    z-index: 2;
    position: absolute;
    bottom: -40vh;
    left: var(--percent-side-mobile);
}

.landing--powered_by_pbc,.landing--city-logo,.landing--city_logo_text,.landing--city_logo_wrapper{
    display: none;
}

/*fix for very high zoom levels*/
@media screen and (max-width: 200px) {
    .landing--image{
        height: 200vh;
    }
}

@media screen and (min-width: 1024px) {
    .landing--image{
        height:100vh;
    }

    .landing--header {
        top: unset;
        margin-left: var(--percent-side-desktop);
        position: absolute;
        padding: 1rem 0 0 0;
        left: 0;
        bottom: 20vh;
        width: auto;
        max-width: calc(50vw - var(--percent-side-desktop) - 5vw);
        line-height: 4.5rem;
        border-radius: 3rem;
        z-index: 3;
    }

    .landing--header-headline{
        padding: 0;
    }

    .landing--subtitle{
        position: unset;
        font-size: 4.2rem;
        padding-bottom: 2rem;
        z-index: 3;
    }

    .landing--btn {
        position: relative;
        bottom: 0;
        left: 0;
    }

    .landing--header_content{
        margin: 0 4rem;
    }

    .landing--gradient {
        z-index: 2;
    }

    .landing--subtitle_button_wrapper{
        width: calc(50vw - var(--percent-side-desktop));
        position: absolute;
        left: calc(50vw - var(--percent-side-desktop));
        bottom: 0;
    }

    .landing--city_logo_wrapper{
        display: block;
        position: absolute;
        z-index: 2;
        bottom: 2rem;
        right: var(--percent-side-desktop)
    }

    .landing--city_logo_text{
        display: block;
        height: 50px;
        line-height: 50px;
        vertical-align: center;
        horiz-align: center;
        color: white;
        font-size: 1.4rem;
        margin-right: 3rem;
        font-family: var(--pbc-font-light);
    }

    .landing--city-logo{
        display: block;
        height: 50px;
        padding: 0 0;
        width: fit-content;
    }

    .landing--powered_by_pbc{
        display: block;
        position: absolute;
        left: var(--percent-side-desktop);
        bottom: 2rem;
        height: 50px;
        line-height: 50px;
        padding: 10px 0;
        width: fit-content;
        z-index: 3;
    }
}





















 TODO:Deprecated


/*--------------------------------------------------------------
# HEADER (DESKTOP ONLY)
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# PROGRESS
--------------------------------------------------------------*/

.progress {
    display: flex;
    height: 2rem;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 3.0rem;
}

.progress-bar {
    /* width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 2px;
    border-radius: 3rem;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background: linear-gradient(0deg, var(--mweu-gradient-blue) 0%, var(--mweu-blue) 100%);
    transition: width 0.6s ease;
}

/*--------------------------------------------------------------
# Download
--------------------------------------------------------------*/

.download--section {
    width: fit-content;
    height: fit-content;
    margin-bottom: 1rem;
}

.download--links {
    position: relative;
    flex-direction: column;
}

.download--description {
    font-family: var(--pbc-font-light);
    margin-left: 2rem;
    margin-right: 2rem;
}

.download--section {
    position: relative;
    flex-direction: row;
}

.download--content{
    position: relative;
    display: flex;
    height: 100%;
    font-size: 1.7rem;
}

@media screen and (min-width: 1024px) {
    .download--links {
        position: relative;
        flex-direction: row;
    }

    .download--section {
        margin: 0;
        position: relative;
        top: 50%;
    }
}

/*--------------------------------------------------------------
# Card
--------------------------------------------------------------*/

.card--scrollbar-content {
    max-width: 80vw;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    overflow-x: auto;
    position: relative;
}

.card--wrapper {
    display: flex;
    overflow-y: auto;
    overflow-x: scroll;
    -ms-overflow-style: none;
    -ms-overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    height: 100%;
    position: relative;

}

.card--wrapper::-webkit-scrollbar {
  display: none;
}

.card--item {
    transition: all .3s cubic-bezier(0,0,.5,1);
    width: 75vw;
    height: 60vh;
    background-color: #fff;
    border-radius: 18px;
    color: var(--pbc-blue);
    overflow: hidden;
    position: relative;
    margin: 0 0.5rem;
    opacity: 60%;
    scroll-snap-align: center;
}

.card--item:hover {
    cursor: pointer;
}

.card--item.carousel--active{
    opacity: 100%;
}

.card--content-header {
    max-height: 90px;
    overflow: hidden;
}

.card--content-info {
    font-family: var(--pbc-font-light);
    height: 45px;
    overflow: hidden;
    box-sizing: content-box;
}

.card--content  {
    margin: 2rem 0 2rem 0;
    padding: 0 5% 0 5%;
}

.card--content-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.card--img_wrapper{
    width: 100%;
    height: 40%;
}

@media screen and (min-width: 576px) {
    .pbc-card-img {
        padding: unset;
    }

    .pbc-card-wrapper {
        flex-direction: row;
    }
    .pbc-card-wrapper {
        overflow-x: auto;
    }

    .pbc-card {
        min-width: 340px;
        min-height: 480px;
        margin-right: 20px;
        border-radius: unset;
    }

    .card--content-header {
        max-height: 100px;
        overflow: hidden;
    }

    .card--item {
        transition: unset;
        width: 40rem;
        height: 80vh;
        cursor: initial;
        margin: 0 2rem;
        opacity: 100%;

    }

    .card--img_wrapper{
        width: 100%;
        height: 50%;
    }
}

/*--------------------------------------------------------------
# Involvement
--------------------------------------------------------------*/
.pbc-card{
    background-color: #fff;
    box-shadow: 0 0 10px var(--pbc-grey-shadow);
}

.pbc-card-img {
    height: 50%;
    width: auto;
}

.inv--btn-wrapper{
    display: none;
}

@media screen and (min-width: 576px) {
    .inv--btn-wrapper {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }


    /*--------------------------------------------------------------
    # Involvement-Details
    --------------------------------------------------------------*/
    .inv_details--btn {
        font-size: 1.6rem;
    }

    .inv-details--wrapper {
        padding: 0 var(--percent-side-mobile);
    }

    .inv-details--header {

    }

    @media screen and (min-width: 576px) {
        .inv-details--wrapper {
            padding: 0;
            display: flex;
            flex-flow: wrap;
        }

        .inv-details--header {
            padding-left: var(--percent-side-desktop);
        }

        .inv-details--content {
            padding-left: var(--percent-side-desktop);
            min-height: 45vh;
            margin-bottom: 3rem;
        }

        .inv_details--img {
            max-width: 80%;
            max-height: 75vh;
            right: 0;
            object-fit: cover;
            height: auto;
            margin-bottom: 3rem;
        }

        .inv_details--img_wrapper {
            display: flex;
            position: relative;
            justify-content: right;
        }
    }


    h1 {
        font-size: 4.2rem;
    }

    h2 {
        font-size: 3.2rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    h4 {
        font-size: 2.2rem;
    }

}
