@import url(/css/navigation.css);

:root {
    box-sizing: border-box;
    font-size: 16px;
    font-family: 'proxima-nova', sans-serif;
    --text-primary: #424242;
    --text-secondary: #302348;
    --text-tertiary: rgba(248, 152, 33, 1);
    --text-white: #FFFFFF;
    --text-blue: #00B4DE;
    --text-grey: #707070;
    --underline-grey: #eaeaea;
    --bg-primary: #F8F8F8;
    --bg-secondary: #302348;
    /* --bg-tertiary: #a87bc9; */
    --bg-tertiary: rgba(248, 152, 33, 1);
    --bg-uh-thefourth: rgba(156, 209, 200, 1);
    
    --text-secondary-halftone: rgba(48, 35, 72, .4);
    
    --transition-speed: 200ms;
    /* Dark Purple - #8A56AC */
    --clr-primary-400: 263 55% 52%;
    --clr-secondary-400: 217 19% 35%;
    --clr-secondary-500: 219 29% 14%;
    --clr-neutral-100: 0 0% 100%;
    --clr-neutral-200: 210 46% 95%;
    --clr-neutral-300: 0 0% 81%;

    /* Farmlands Branded Flex */
    --clr-flex-primary: rgba(1, 86, 62, 1);
    --clr-flex-secondary: rgba(248, 152, 33, 1);
    --clr-flex-primary-opaque: rgba(1, 86, 62, .8);
    --clr-flex-secondary-opaque: rgba(248, 152, 33, .8);
    --clr-flex-text: #2b2b2b; 
    --clr-flex-link: #fff;


    /* BC Branded Flex */
    /* --clr-flex-primary: rgba(255, 255, 255, 1);
    --clr-flex-secondary: rgba(168, 123, 201, 1);
    --clr-flex-primary-opaque: rgba(255, 255, 255, .6);
    --clr-flex-secondary-opaque: rgba(168, 123, 201, .8);
    --clr-flex-text: #424242;
    --clr-flex-link: #424242; */

    --modal-corners: 1rem;
  
    --ff-primary: "proxima-nova", Arial, sans-serif;
    --ff-secondary: "proxima-nova", Arial, sans-serif;
  
    --fs-standard: 1rem;
    --fw-400: 500;
    --fw-700: 600;
  
    --fs-300: 0.6875rem;
    --fs-400: 0.8125rem;
    --fs-500: 1.25rem;
}



body {
    font-family: var(--ff-primary);
    font-size: 16px;
    color: var(--text-primary);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    border: none;
    /* background-image: url('../assets/bg-thedude-fade.jpg'); */
    background-size: contain;
    /* background-attachment: fixed; */
    background-position-x: center;
    background-repeat: no-repeat;
}

body.home {
    background-image: url('../assets/bg-thedude-fade.jpg');
    background-size: contain;
    /* background-attachment: fixed; */
    background-position-x: center;
    background-repeat: no-repeat;
}

.knowledge-is-power-sm {
    display: none;
}

@media (max-width:767px) {
    body {
        background-size: auto 800px;
    }
}

@media (max-width:767px) {
    body.home {
        background-position: center top 3rem;
    }
}


ul {
    margin:0;
    padding:0;
    border:none;
    overflow:hidden;
}

img, svg {
    vertical-align: middle;
}

h2 {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin: 3rem 0 0 0;
    padding: 0;
    border: none;
    line-height: 1.rem;
}

h3 {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 3rem 0 0 0;
    padding: 0;
    border: none;
} 


p {
    font-weight: normal;
    font-size: 1rem;
}

p.lead {
    margin-bottom:2rem;
    font-weight: 800;
}

p.centered {
    text-align: center;
    margin: 4rem 0 4rem 0;
}

.card {
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.card-img-top {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.card-title {
    margin-top: 1rem;
    margin-bottom: 1rem;
}


button {
    border-radius: .4rem;
    border:none;
    background-color: rgba(48,35,72,1);
    color: #ffffff;
    margin: 0 0 2rem 0;
    padding: .5rem 1rem .5rem 1rem;
}

.btn-lg {
    background-color: #302348;
    border: none;
    font-size: 1rem;
}

.hero-button, .hero-button:visited {
    background-color: rgba(48,35,72,1);
    color: #fff;
    text-decoration: none;
}

.hero-button:hover {
    background-color: rgba(48,35,72,.8);
    color: #fff;
    text-decoration: none;
}

form.form-group {
    max-width: 800px;
}

input.form-control,
textarea.form-control {
    background-color: #f0f0f0;
    margin:.4rem 0 1.4rem 0;
}

article {
    position: relative;
    display: flex;
    flex-direction: column;
}


main a, main a:visited {
    color: var(--text-tertiary);
    text-decoration: none;
}

main a:hover {
    color: var(--text-tertiary);
    text-decoration: underline;
    opacity: .5;
}


main {
    margin-left: 0rem;
    border: none;
    background-size:contain;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center top;
}

.hero-article {
    font-family: "proxima-nova", sans-serif !important;
    background: url('../assets/images/home-tile-flex-chevrons.png') center top no-repeat, url('../assets/images/hero-background-flex.jpg') center top no-repeat;
    background-size: contain, cover;

    display: flex;
    align-items: center;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    border-radius: .5rem;
    border: 1px solid #D6D6D6;
    box-shadow: 2.5rem 3.75rem 3rem -3rem hsl(var(--clr-secondary-400) / 0.25);
    position: relative;
    color: #fff;
}

.hero-article a { 
    color: #fff; 
    text-decoration: none; 
    display: block;
    margin-top: 1rem; 
    background-color: var(--clr-flex-secondary); 
    border-radius: 10rem;
    width: 200px;
    text-align: center;
    font-weight: 200;
    text-transform: uppercase;
    padding: .5rem 0 .5rem 0; 
}
.hero-article a:visited { color: #fff; }
.hero-article a:hover { color: #fff; text-decoration: none; background-color: var(--clr-flex-secondary-opaque); }

.hero-gridhub {
    box-shadow: 2.5rem 3.75rem 3rem -3rem hsl(var(--clr-secondary-400) / 0.25);
    background: none;
}

.hero-article h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    font-family: "proxima-nova", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
}

.hero-article h3 span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--clr-flex-secondary);
    font-family: "proxima-nova", Arial, Helvetica, sans-serif;
    display: block;
    line-height: 1rem;
}

.hero-article-alt {
    background-color: #fff;
    background-image: url('../assets/images/bc-gridhub-tile-alt.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    border-radius: .5rem;
    border: 1px solid #D6D6D6;
    min-height: 12rem;
}

.hero-article-alt h3 {
    font-size: 1.2rem;
    font-weight: 300;
    color: #fff;
    font-family: "Eurostile", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
}

.hero-article-alt h3 span {
    font-size: .8rem;
    font-weight: 100;
    display: block;
    line-height: 2rem;
}

.hero-laptop {
    position: absolute;
    width: 30rem;
    left: 58%;
    top: -25px;
}

.hero-laptop-gridhub {
    position: relative;
    width: 500px !important;
}


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

    .hero-laptop { display: none;} 

    .hero-article {
        background: url('../assets/images/hero-background-flex.jpg') center top no-repeat;
        background-size: cover;
    }
}



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

    main { 
        margin-left: 0rem;
        margin-top: 0rem;
    }

    .hero-article {
        background: url('../assets/images/hero-background-flex.jpg') center top no-repeat;
        background-size: cover;
    }

}

@media screen and (min-width:768px) {
    main { 
        margin-left: 0rem;
        margin-top: 0rem;
    }


    .hero-laptop { display: none;} 

    .hero-article {
        background: url('../assets/images/home-tile-flex-chevrons.png') right top no-repeat, url('../assets/images/hero-background-flex.jpg') center top no-repeat;
        background-size: contain, cover;
    }

}


@media screen and (min-width:999px) {
    main { 
        margin-left: 0rem;
        margin-top: 0rem;
    }
    .hero-article {
        background: url('../assets/images/home-tile-flex-chevrons.png') right top no-repeat, url('../assets/images/hero-background-flex.jpg') center top no-repeat;
        background-size: contain, cover;
    }
    
}


@media screen and (min-width:1200px) {
    .hero-laptop { display: block;}
    .hero-article {
        background: url('../assets/images/home-tile-flex-chevrons.png') center top no-repeat, url('../assets/images/hero-background-flex.jpg') center top no-repeat;
        background-size: contain, cover;
    }
}



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

    main { 
        margin-left: 0rem;
        margin-top: 0rem;
    }

    .hero-laptop { display: block;}
    .hero-article {
        background: url('../assets/images/home-tile-flex-chevrons.png') center top no-repeat, url('../assets/images/hero-background-flex.jpg') center top no-repeat;
        background-size: contain, cover;
    }
}









main.services { background-image: url("../assets/images/header-mountain-top.jpg"); }
main.energy { background-image: url("../assets/images/header-southern-motorway-long-exposure.jpg"); }
main.partners { background-image: url("../assets/images/header-wheat-field.jpg"); }
main.articles { background-image: url("../assets/images/header-lake-tree-orange.jpg"); }
main.about-us { background-image: url("../assets/images/header-surfer.jpg"); }
main.contact-us { background-image: url("../assets/images/header-kaka.jpg"); }
main.terms { background-image: url("../assets/images/header-wheat-field.jpg"); }
main.privacy { background-image: url("../assets/images/header-wheat-field.jpg"); }
main.first-class { background-image: url("../assets/header-first-class.jpg"); }
main.gridhub { background-image: url("../assets/images/header-beach.jpg"); }



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

    main.services { background-position: left -46rem top 0px; }
    main.energy { background-position: left -20rem top 0px;   }
    main.partners { background-position: left 0rem top 0px;  }
    main.articles { background-position: left -50rem top 0px; }
    main.about-us { background-position: left -53rem top 0px; }
    main.contact-us { background-position: left -40rem top 0px; }
    main.terms { background-position: left 0rem top 0px;}
    main.privacy { background-position: left 0rem top 0px;}
    main.first-class { background-position: left -52rem top 0px; }

}



.dark {
    color: var(--text-white) !important;
}

.center-image { text-align: center; margin: 2rem 0 2rem 0; }
.center-image img { width: 80%; }

.journey-intro {
    background: url('/assets/images/bc-logo-large-angle.png');
}

.gridhub-page {
    background-image: url('../assets/images/gridhub-page-header.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top -10%;
}

.gridhub-page h1 {
    font-size: 4rem !important;
    font-weight: 500;
    color: #fff;
    font-family: "Eurostile", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    margin: 2rem 0rem 0rem 20rem
}

.gridhub-page h1 span {
    font-size: 1.8rem !important;
    font-weight: 300 !important;
    margin: 1rem 0 0 0;
    line-height: 0;
}
.gridhub-page h1 img {
    display: block;
    width: 12rem;
}

.flex-bg {
    background-image: url('../assets/images/flex-page-bg.jpg') !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    background-color: var(--text-white);
}

.flex-logos {
    display: flex;
    margin: 4rem 0 -1rem 0;
    padding: 0 0 0 0 !important;
    width: auto;
    text-align: left;
}

.flex-logos img {
    width: 6rem;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}


.flex-page {
    background-color: var(--clr-flex-primary-opaque);
    color: var(--clr-flex-text);
    border-radius: 0 0 2rem 2rem;
    padding: 0 4rem 4rem 4rem;
    font-family: "proxima-nova", sans-serif !important;
}

.flex-page h1 {
    font-size: 4rem !important;
    font-weight: 800 !important;
    font-style: bold;
    color: var(--clr-flex-text) !important;
    font-family: "proxima-nova", Arial, Helvetica, sans-serif !important;
    text-transform: uppercase;
    margin: 0rem 0rem 0rem 0rem
}

.flex-page h2 {
    color: var(--clr-flex-secondary) !important;
    font-weight: 0800 !important;
    font-family: "proxima-nova", Arial, Helvetica, sans-serif !important;
}

.flex-page h1 span {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    margin: 0rem 0 0 0;
    line-height: 0;
    color: var(--clr-flex-secondary);
}
.flex-page h1 img {
    display: block;
    width: 12rem;
}

.flex-page a { 
    color: var(--clr-flex-link) !important; 
    text-decoration: underline;
}

.flex-page a:hover { 
    color: var(--clr-flex-link) !important; 
    text-decoration: none; 
    opacity: .8;
}

.flex-page .bulletpoints li {
    line-height: .5rem;
}

.flex-page .bulletpoints li::marker {
    color: var(--clr-flex-text);
}

.flex-page .main-image {
    width: auto;
    margin: 0rem -4rem 2rem -4rem;
    background-color: var(--text-white);
    display: block;
    height: 200px;
    background-image: url('../assets/images/flex-page-hero-image.jpg');
    background-position: center;
    background-size: cover;
    border-top: 1px solid var( --text-white);
    border-bottom: 1px solid var( --text-white);
}

.flex-ecosystem {
    text-align: center; 
    margin:0 -4rem 0 -4rem; 
    padding: 1rem;
    /* background-color: rgba(0, 0, 0, .6); */
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
    margin: 2rem 0 2rem 0;
    border: 0px solid #c4c4c4;
}

.feature-grid div {
    padding: 1rem;
    border: 0px solid #c4c4c4;
}

.feature-grid div i {
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}
.feature-grid div b {
    color: var(--clr-flex-secondary);
}




a.banner-gridhub {
    position: relative;
    display: block;
    border: 1px solid var(--clr-flex-primary);
    border-radius: 1rem;
    padding: 1rem 20rem 1rem 2rem;
    margin: 2rem 0 2rem 0;
    font-family: "proxima-nova", sans-serif !important;
    font-size: 1rem;
    background-color: var(--clr-flex-primary);
    color: var(--text-white) !important; 
    text-decoration: none;
    background: url('../assets/images/home-tile-flex-chevrons.png') right top no-repeat, url('../assets/images/hero-background-flex.jpg') center top no-repeat;
    background-size: contain, cover;
}

a.banner-gridhub h3 {
    font-size: 2rem !important;
    font-weight: 800;
    color: var(--text-white);
    font-family: "proxima-nova", Arial, Helvetica, sans-serif !important;
    text-transform: uppercase;
    margin: 1rem 0 1rem 0 !important;
    padding: 0 0 0 0;
}

a.banner-gridhub h3 span {
    font-size: .8rem;
    font-weight: 800;
    display: block;
    line-height: .5rem;
    color: var(--clr-flex-secondary);
}

a.banner-gridhub img {
    position: absolute;
    right: -80px;
    top: 20px;
    width: 50%;
}

a.banner-gridhub img.blue-phone {
    width: 200px !important; 
    right:-20px;
}


a.banner-gridhub:hover { text-decoration: none; opacity: .8; }

footer {
    background-color: rgba(156,209,200,0.3);
    margin-left: 0rem;
    margin-top: 4rem;
    padding: 1rem;
    color: var(--text-primary);
}

footer span {
    font-size: .8rem !important;
}

footer a, footer a:visited { color: var(--text-primary); text-decoration: none;  }
footer a:hover { color: var(--text-tertiary); text-decoration: none; }

@media screen and (max-width:1364px) {
    footer { 
        margin-left: 0rem;
    }
}

@media screen and (max-width:499px) {
    
    footer { 
        flex-direction: column;
    }

    footer a {
        margin-top: 1rem;
        display: inline-block;
    }


    a.banner-gridhub {
        background: url('../assets/images/hero-background-flex.jpg') center top no-repeat;
        background-size: cover;
        /* background: url('../assets/images/home-tile-flex-chevronss.png') right top no-repeat, url('../assets/images/hero-background-flex.jpg') center top no-repeat;
        background-size: contain, cover; */
    }




}

/* custom named classes -------- */


.spacer-page-bottom {
    display: block;
    height: 10rem;
}

b.required {
    color: red;
    font-size: .8rem;
    padding-left:.2rem;
}

.hide-me { display: none; }
.temp-item { font-weight: 600; font-style: italic; color: red; }

p.quote {
    font-size: 1.4rem;
    font-weight: 800;
    font-style: italic;
    text-align: center;
    padding-left:5rem;
    padding-right:5rem;
}

.bc-value-chain {
    width:100%;
    margin:2rem 0 2rem 0;
}

.knowledge-is-power {
    width:50%;
}


.bulletpoints {
    margin-left:0rem;
    list-style-type: disc;
}

.bulletpoints li {
    margin-bottom:1rem;
    margin-left:2rem;
}

.bulletpoints li::marker {
    color: var(--text-tertiary);
}

.diagram {
    border:1px solid #c4c4c4; 
    padding:2rem; 
    background-color: #ffffff;
    text-align: center;
}

.container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
    width: 100%;
    padding-right: 8rem !important;
    padding-left: 8rem !important;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width:1199px) {
    .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
        width: 100%;
        padding-right: 1rem !important;
        padding-left: 1rem !important;
        margin-right: auto;
        margin-left: auto;
    }
}


.main-container {
    height: 100vh;
}

.main-content {
    z-index: 1000;
}

.main-content h1 {
    display: block;
    height: 180px;
    padding: 2rem 0 0 0;
    font-size: 2rem;
    font-weight: 800;
    color: #302348;
    font-family: "proxima-nova", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.main-content h1 span {
    display: block;
    font-size: .8rem;
    margin-bottom: -5px;
}


.main-content h2 {
    font-family: var(--ff-secondary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: var(--text-tertiary);
    margin: 3rem 0 1rem 0;
}

.main-content h3 {
    font-family: var(--ff-primary);
    font-weight: 600;
    /* text-transform: uppercase; */
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 3rem 0 1rem 0;
}

.main-content h4, .bc-team-member h5 {
    font-family: var(--ff-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    color: var(--text-tertiary);
    margin: 3rem 0 0 0;
}

.bc-role {
    color: #424242;
    font-size: .8em;
}

.main-content .intro {
    display:flex;
    padding: 4rem 2rem 2rem 2rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    font-family: "Eurostile", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    background-image: linear-gradient(#A87BC9, #543E65);
}

p.font-weight-bold {
    font-weight: 600;
}

.main-content .content-right {
    padding:0 2rem 0 2rem;
}

.main-content .content-left {
    padding:0 5rem 0 0;
}

.main-content .content-right .lead {
    margin-bottom:1rem;
}

.main-content .content-right .side-content {
    margin:0 0 2rem 0;
    font-size: .8rem;
}

.main-content .content-right .image-container {
    text-align: center;
}

.main-content .card {
    border: none;
    display: flex;
}

.main-content .card img {
    display: none;
}

.main-content .card .card-title {
    border-bottom: 1px solid var(--underline-grey);
    padding-bottom: .5rem;
    font-family: var(--ff-secondary);
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.main-content .card .card-title .bc-service-icon {
    font-size: 1.5rem;
    color: var(--text-tertiary) !important;
}

.main-content .card.news {
    border: 1px solid #e9e9e9;
    border-radius: 0;
    display: flex;
}

.main-content .card.news img {
    display: inline;
    border-radius: 0;
}

.main-content .card.news .card-title {
    border-bottom: none;
    padding-bottom: 0rem;
    font-family: var(--ff-primary);
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 200;
    display: block;
    
}

.main-content .card.news .card-title span {
    border-bottom: none;
    padding-bottom: .5rem;
    font-family: var(--ff-primary);
    text-transform:none;
    color: var(--bg-tertiary);
    font-weight: 500;
    font-size: .8rem;
    display: block;
}


/* FLEX PAGE STYLING  ------------------------------------  */

.flex-bg {
    background-image: none !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    background-color: var(--text-white);
}

.flex-logos {
    display: flex;
    margin: 4rem 0 -1rem 0;
    padding: 0 0 0 0 !important;
    width: auto;
    text-align: left;
}

.flex-logos img {
    width: 6rem;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
}


.flex-callout {
    background-image: url('../assets/images/flex-green-background.jpg'); 
    background-position: center top; 
    background-repeat: no-repeat; 
    background-size: cover; 
    border-top: 1px solid #fff;
}

.flex-quote {
    background-color: var(--clr-flex-secondary);
    color: var(--clr-flex-text);
    margin: 0 0 0 0;
    font-family: "proxima-nova", sans-serif !important;
    font-size: 1.2rem;
}

.flex-page {
    background-color: transparent;
    color: var(--clr-flex-text);
    border-radius: 0 0 0 0;
    padding: 3rem;
    margin: 0 auto;
    font-family: "proxima-nova", sans-serif !important;
}

.flex-content {
    background-image: url('../assets/images/flex-content-background.jpg'); 
    background-position: center bottom; 
    background-repeat: no-repeat; 
    background-size: contain; 
    border-top: 1px solid #fff;
    padding: 3rem 3rem 16rem 3rem;
    margin-bottom: -4rem;
}

.flex-list {
    margin: 0 0rem 2rem 0rem;
    padding: 3rem;
    color: var(--clr-flex-text);
    font-family: "proxima-nova", sans-serif !important;
}

.flex-list ul li {
    line-height: 1.3rem;
    margin-bottom: .5rem;
}

.flex-page-heading {
    background-image: url('../assets/images/flex-hero-chevron.png');
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 3rem 3rem 3rem 3rem;
}

.flex-page h1,
.flex-page-heading h1 {
    font-size: 4rem !important;
    font-weight: 800 !important;
    font-style: bold;
    color: var(--clr-flex-primary) !important;
    font-family: "proxima-nova", Arial, Helvetica, sans-serif !important;
    text-transform: uppercase;
    margin: 0rem 0rem 3rem 0rem;
    height: auto !important;
    line-height: 1;
}

.flex-page h2,
.flex-list h2 {
    color: var(--clr-flex-secondary) !important;
    font-weight: 800 !important;
    font-family: "proxima-nova", Arial, Helvetica, sans-serif !important;
}

.flex-list h2 {
    margin-top: 0rem;
}

.flex-page-heading h1 span,
.flex-page h1 span {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    margin: 0rem 0 0 0;
    line-height: 1;
    color: var(--clr-flex-secondary);
    display: block;
    height: auto !important;
}

.flex-page h1 img {
    display: block;
    width: 12rem;
}


.flex-page-heading h2 {
    font-size: 1rem !important;
    font-weight: 800 !important;
    margin: 0 0 .5rem 0;
    line-height: 1.5rem;
    color: var(--clr-flex-secondary);
}

.flex-page a { 
    color: var(--clr-flex-link) !important; 
    text-decoration: underline;
}

.flex-page a:hover { 
    color: var(--clr-flex-link) !important; 
    text-decoration: none; 
    opacity: .8;
}

.flex-page .bulletpoints li {
    line-height: 1.3rem;
    color: #fff;
}

.flex-page .bulletpoints li::marker {
    color: #fff;
}

.flex-list li::marker {
    color: var(--clr-flex-text);
}

.flex-page .main-image {
    width: auto;
    margin: 0rem -4rem 2rem -4rem;
    background-color: var(--text-white);
    display: block;
    height: 200px;
    background-image: url('../assets/images/flex-page-hero-image.jpg');
    background-position: center;
    background-size: cover;
    border-top: 1px solid var( --text-white);
    border-bottom: 1px solid var( --text-white);
}

.flex-ecosystem {
    text-align: center; 
    margin:0 -4rem 0 -4rem; 
    padding: 1rem;
    /* background-color: rgba(0, 0, 0, .6); */
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 1rem;
    margin: 2rem 0 2rem 0;
    border: 0px solid #c4c4c4;
}

.feature-grid div {
    padding: 1rem;
    border: 0px solid #c4c4c4;
}

.feature-grid div i {
    display: block;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}
.feature-grid div b {
    color: var(--clr-flex-secondary);
}

.flex-cta-button {
    border-radius: 50%;
    background-color: var(--clr-flex-secondary);
    box-shadow: #c4c4c4;
    color: #fff;
    font-size: 1rem;
    position: fixed;
    bottom: 4rem;
    right: 2rem;
    z-index: 1800;
    text-align: center;
    display: block;
    width: 200px;
    height: 200px;
    box-shadow: 5px 5px 8px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 1rem 1rem 2rem 1rem;
}

.flex-cta-button h3 {
    font-weight: bold;
    color: #fff;
}

.flex-cta-button .chevron {
    position: absolute;
    top: 2rem;
    left: 2rem;
    opacity: .3;
    font-size: 9rem;
    color: #fff;
}

.flex-enquiry {
    border: 0; 
    display: flex; 
    margin: 0 auto; 
    width: 100%; 
    height: 1200px; 
    padding: 0;
    background-color: #2b2b2b;
}

.flex-enquiry  {
    margin: 0 0 -4rem 0 !important;
    background-color: #eaeaea !important;
}

a.enquiry-link {
    color: #fff !important;
    text-decoration: none;
    background-color: var(--clr-flex-secondary);
    border-radius: 10rem;
    padding: .5rem 2rem .5rem 2rem;
    margin: 2rem 0 2rem 0;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 800;
    display: block;
    text-align: center;
}

a.enquiry-link:hover {
    color: #fff;
    text-decoration: none;
    background-color: var(--clr-flex-secondary-opaque);
}


/* RESPONSIVE STYLES ------------------------ */


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


    .flex-page-heading {
        background-image: url('../assets/images/flex-hero-chevron.png');
        background-position: right;
        background-size: contain;
        background-repeat: no-repeat;
        padding: 6rem 3rem 6rem 3rem;
    }
    .feature-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 1rem;
        margin: 2rem 0 2rem 0;
        border: 0px solid #c4c4c4;
    }
    
}


@media screen and (max-width:1024px) {
    .flex-page-heading {
        background-image: url('../assets/flex-hero-chevron-transparent.png');
        background-position: right;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 0rem 3rem 6rem 3rem;
    }
    
}


@media screen and (max-width:779px) {
    .flex-page-heading {
        background-image: url('../assets/flex-hero-chevron-transparent.png');
        background-position: right;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 0rem 3rem 6rem 3rem;
    }
    .feature-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
        margin: 2rem 0 2rem 0;
        border: 0px solid #c4c4c4;
    }
    
}

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

    .flex-cta-button {
        border-radius: 1rem;
        background-color: var(--clr-flex-secondary);
        box-shadow: #c4c4c4;
        color: #fff;
        font-size: 1rem;
        position: fixed;
        bottom: 4rem;
        margin: 0 0 0 0;
        z-index: 1800;
        text-align: left;
        width: 300px;
        height: auto;
        box-shadow: 5px 5px 8px 5px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: left;
        padding: 1rem;
    }
    
    .flex-cta-button h3 {
        font-weight: bold;
        color: #fff;
        margin: 0 0 0 0;
    }
    
    .flex-cta-button .chevron {
        position: absolute;
        top: .5rem;
        left: 14rem;
        opacity: .3;
        font-size: 4rem;
        color: #fff;
    }


}

.tile-bc-flex {
    border: 1px solid #eaeaea;
    border-radius: .5rem;
    display: block;
    margin:0 0 1rem 0;
    padding: 1rem 1rem 1rem 1rem;
    background-image: url('../assets/images/tile-background-bc-flex.jpg'); 
    background-position: center bottom; 
    background-repeat: no-repeat; 
    background-size: contain; 
    font-family: "Proxima-Nova", Arial, Helvetica, sans-serif;
    font-size: .8rem;
    line-height: .9rem;
}

.tile-bc-flex span {
    background-color: var(--clr-flex-secondary-opaque);
    color: #fff;
    font-size: 1rem;
    line-height:1rem;
    border-radius: .8rem;
    display: block;
    text-align: center;
    padding: .7rem 0 .7rem 0;
    margin: 8rem 0 0 0;
    text-transform: uppercase;
    font-weight: 800;
}

.tile-bc-flex h4 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--clr-flex-primary);
    font-family: "Proxima-Nova", Arial, Helvetica, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
}

.tile-bc-flex h4 span {
    display: block;
    font-size: .7rem;
    color: var(--clr-flex-secondary);
    line-height: .8rem;
    background-color: transparent;
    padding: 0;
    margin: -8px 0 0 0;
    text-align: left;
}

a.tile-flex-link { opacity: 1; text-decoration: none; color: var(--text-grey) !important; }
a.tile-flex-link:hover { opacity: .8; text-decoration: none; color: var(--text-grey);  }






.fifty { width: 50%; }
.onehundred { width: 100%; }
.responsive-image { width: 60%;}
.responsive-image-large { width: 80%;}



.gridhub-bg {
    background-image: none; 
}


@media screen and (max-width:1199px) {
    /* ------------------------------------------------------------------------------------------------------------- */

    .gridhub-page { background-image: none; }

    .gridhub-page h1 { width: auto; margin: 4rem; padding: 0 0 0 0; font-size: 3rem !important; height: auto; }
    .gridhub-page h1 span { font-size: 1rem !important; }
    .gridhub-page h1 img { width: 6rem !important; }

    .gridhub-bg {
        background-image: url('../assets/images/gridhub-page-header.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top -10%;
    }

    a.banner-gridhub {
        position: relative;
        display: block;
        border: 1px solid var(--bg-tertiary);
        border-radius: 1rem;
        padding: 1rem 2rem 1rem 2rem;
        margin: 2rem 0 2rem 0;
        font-size: 1rem;
        background-color: #f0f0f0;
        color: var(--text-white) !important; 
        text-decoration: none;
    }
    
    a.banner-gridhub img {
        position: relative;
        width: 400px !important; 
        margin: -2rem 0 -1rem 0;
    }

    a.banner-gridhub img.blue-phone {
        position: relative;
        width: 200px !important; 
        margin: 0 0 32px 0;
    }
    
    


     /* ------------------------------------------------------------------------------------------------------------- */
    }

    @media screen and (max-width:992px) {
    /* ------------------------------------------------------------------------------------------------------------- */
    .main-content .content-right {
        padding:0 0 0 0;
    }
    
    .main-content .content-left {
        padding:0 5rem 0 0;
    }

    .gridhub-page { background-image: none; }

    .gridhub-page h1 { width: auto; margin: 4rem 3rem 0 4rem; padding: 0 0 0 0; font-size: 3rem !important; height: auto; }
    .gridhub-page h1 span { font-size: 1rem !important; }
    .gridhub-page h1 img { width: 6rem !important; }

    .gridhub-bg {
        background-image: url('../assets/images/gridhub-page-header.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top -5%;
    }


     /* ------------------------------------------------------------------------------------------------------------- */
    }
    
    
    
    
    
    
    
    @media screen and (max-width:779px) {
    /* ------------------------------------------------------------------------------------------------------------- */
    
    /* ------------------------------------------------------------------------------------------------------------- */
     }
    
    
    
    
    
    
    
    
     @media screen and (max-width:768px) {
    /* ------------------------------------------------------------------------------------------------------------- */
    
    .main-content .content-left {
        padding:0 0 0 0;
    }

    .side-banner {
        width: 50%;
    }

    .gridhub-page { background-image: none; }

    .gridhub-page h1 { width: auto; margin: 4 3rem 0 3rem; padding: 0 0 0 0; font-size: 2rem !important; height: auto; }
    .gridhub-page h1 span { font-size: .8rem !important; }
    .gridhub-page h1 img { width: 6rem !important; }

    .gridhub-bg {
        background-image: url('../assets/images/gridhub-page-header.jpg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top 0;
    }

    /* ------------------------------------------------------------------------------------------------------------- */
    }


    @media screen and (max-width:499px) {
        /* ------------------------------------------------------------------------------------------------------------- */
        .main-content {
            padding: 0rem;
        }
        
        .main-content .content-right {
            padding:4rem 0 0 0;
            margin-top:4rem;
            border-top: 1px solid var(--bg-secondary);
        }
    
        .main-content .content-right .intro{
            display: none;
        }
        
        .main-content .content-left {
            padding:0 0 0 0;
        }
    
        .side-banner {
            width: 50%;
        }

        .responsive-image { width: 100%;}

        .gridhub-page { background-image: none; }

        .gridhub-page h1 { width: auto; margin: 0 3rem 0 3rem; padding: 0 0 0 0; font-size: 2rem !important; height: auto; }
        .gridhub-page h1 span { font-size: .8rem !important; }
        .gridhub-page h1 img { width: 6rem !important; }

        .gridhub-bg {
            background-image: url('../assets/images/gridhub-page-header.jpg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center top 0;
        }


        .tile-bc-flex span {
            margin: 12rem 0 0 0;
        }
    
        /* ------------------------------------------------------------------------------------------------------------- */
        }









/* MAST HEAD ------------------------- */


.hero-area {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
}

.home-masthead {
    height:60vh;
    display: flex;
    align-items: center;
}

/* .homepage-logo { width: auto; } */
.homepage-logo {
    width:500px;
    height: 100px;
    margin-bottom: 0rem;
    background-image: url("../assets/blackcurrent-main-logo@4x.png");
    background-size:contain;
    background-repeat: no-repeat;
    text-indent: -5000px;
    border:0px solid red;
}

.home-tiles {
    height:auto;
}

.home-masthead h2 {
    margin:2rem 0 0 0;
}

.home-masthead p {
    margin:1rem 0 0 0;
}

.home-masthead .content-right {
    display: flex;
  justify-content:flex-end;
  align-items:flex-end;
}

@media (max-width:1199px) {
    .home-masthead { margin:8rem 2rem 8rem 2rem; height:auto; }
    .home-masthead .content-right { display: none; }
    .home-masthead .content-left{  padding:0 ; }
    .homepage-logo { width: 50%; }

    .knowledge-is-power-sm {
        width:50%;
        display: inline !important;
        float:right;
        margin:2rem 0 2rem 0;
    }
}


@media (max-width:767px) {
    .home-masthead { margin:6rem 2rem 4rem 2rem; height:auto; }
    .homepage-logo { width: 80%; }

}

.home-masthead .cta-link {
    display:inline-block;
    background-color: var(--bg-secondary);
    color: var(--text-white);
    padding: .5rem 1rem .5rem 1rem;
    margin:2rem 0 0 0;
    border-radius: 10px;
    text-decoration: none;
    font-style: italic;
}

.home-masthead .cta-link:hover {
    background-color: #9893A2;
}





/* ------------------------- */


        


/* HOMEPAGE GRID ------------------------ */


.tiles {
    border-radius: .5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 2.5rem 3.75rem 3rem -3rem hsl(var(--clr-secondary-400) / 0.25);
}

.tiles:hover {
    opacity: .9;
}

.tiles h2 {
    margin: 1rem 0 1rem 0;
    color: #fff;
}

.tiles h2 span {
    font-size: 1rem !important;
    display: block;
}

.tiles p {
    font-size: .9rem;
}

a.tile-link { display:block; position: absolute; opacity: 1; top:0px; left:0px; right:0px; bottom:0px; border:0px solid white;}

.tiles .ghost-brand {
    position:absolute;
    top:0;
    right:0;
    width:90% !important;
    border-radius: 0%;
}

/* Put the Power back in your hands */
.tile1 {
    background-image: linear-gradient(to right, #4789AF , #7BAEC9);
    color:#fff;
    height: 12rem;
    max-height: 12rem;
    padding: 1rem 14rem 1rem 1rem;
}

.tio {
    display:inherit;
    position:absolute;
    bottom:0;
    right:0;
    width:13rem !important;;
    border-radius: 0%;
    opacity: 1;
    z-index: 100;
  }



/* Blackcurrent Portal Login */
.tile2 {
    align-items: end;
    background-image: linear-gradient(to bottom left, #E8C44A , #E15337  );
    color:#fff;
    overflow: hidden;
    font-family: 'Eurostile', Arial, sans-serif;
    text-transform: uppercase;
    height:12rem;
    max-height: 12rem;
}

.tile2 h2 { font-size: 2rem; font-weight: 600; margin-top: 5rem; }
.tile2 h2 span { font-weight: 100; display: block; font-size: .4rem; }
.tile2 h2 .login-arrow { font-size: 1.2rem;}

/* What is a Microgrid? */
.tile3 {
  /* background-image: linear-gradient(to bottom, #73B2A7 , #9CD1C8); */
  background-color: #fff;
  background-image: url('../assets/images/tile3-background-microgrid.png');
  background-position: center bottom;
  /* background-size: contain; */
  background-size: 105%;
  background-repeat: no-repeat;
  color:#302348;
  height: 25.6rem;
  /* height: 39rem; */
  max-height: 39rem;
  border: 1px solid #D3D7D6;
}

.tile3 h2 { font-size: 2rem; font-weight: 400; font-family: 'Eurostile', Arial, sans-serif; text-transform: uppercase; color:#302348;}
.tile3 h2 span { font-weight: 100; display: block; font-size: .4rem; }


/* Decarbonisation */
.tile4 {
  background-image: url('../assets/images/tile4-background-decarbonisation-child-with-plane.png'), linear-gradient(to bottom left, #64B9D6 , #BFD0D4);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  color:#302348;
  padding-right:12rem;
  height: 12rem;
  max-height: 12rem;
}

.tile4 h2 { color:#302348; }


/* Understanding Capacity */
.tile5 {
  background-image: url('../assets/images/pic-coffee-road.jpg');
  background-size: cover;
  color:#fff;
  max-height: 12rem;
  display: none;
}
.tile5 h2 { color:#fff; font-size: 1.4rem; margin-bottom: 1rem;}


/* Case Study - Environmental Monitoring - Victoria University*/
.tile7 {
  background-image: linear-gradient(to bottom left, #A87BC9 , #543E65  );
  /* background-image: url('../assets/images/pic-electrification.jpg'); */
  background-size: cover;
  color:#fff;
  height: 12rem;
  max-height: 12rem;
}



@media screen and (max-width:1364px) {
/* ------------------------------------------------------------------------------------------------------------- */
    .tiles h2 {
        margin-top:0rem;
    }

    .tile2 { padding-top:7rem; }
    .tile2 h2 { font-size: 1.8rem; }
    .tile4 { padding-left: 1rem; }
/* ------------------------------------------------------------------------------------------------------------- */
}


@media screen and (max-width:992px) {
/* ------------------------------------------------------------------------------------------------------------- */
    .center-column {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .tiles h2 {
    margin-top:1rem;
    height: auto;
    max-height:none;
    }

 .tile1 { height: auto; }
 .tile2 { height: 12rem;  width:48%;}
 .tile3 { height: auto; padding-right:55%; background-color: #fff; background-size: 50%; background-repeat: no-repeat; background-position: 100% 10%; background-image: url("../assets/images/tile3-background-microgrid.png"); }
 .tile4 { height: auto; padding-left: 1rem; }
 .tile5 { height: 12rem; width:45%; margin:0 1rem 0 1rem; }
 .tile6 { height: auto; }
 .tile7 { height: 12rem;  width:48%;}

 .tile7 .logo-vic-uni {
    max-width: 200px;
 }
 /* ------------------------------------------------------------------------------------------------------------- */
}







@media screen and (max-width:779px) {
/* ------------------------------------------------------------------------------------------------------------- */
.tile4 { 
    height: auto !important;
    max-height: none !important;
    background-position-x: 120%;
}
/* ------------------------------------------------------------------------------------------------------------- */
 }








 @media screen and (max-width:499px) {
/* ------------------------------------------------------------------------------------------------------------- */

.center-column {
    display: flex;
    flex-direction: column;
}

.tio {
    bottom:0;
    right:-40px;
    width:10rem !important;;
  }

.tile1 {
    padding-right: 6rem;
    height: auto;
    overflow: hidden;
}

.tile1 h2 {
    font-size: 1rem;
    margin-right: 0;
}

.tile2 { 
    width: auto;
    display: block;
}

.tile3 { height: auto; padding-right:0; padding-bottom:16rem; background-color: #fff; background-size: 80%; background-repeat: no-repeat; background-position: center bottom; background-image: url("../assets/images/tile3-background-microgrid.png"); }

.tile4 { 
    width: auto;
    display: block;
    height: auto !important;
    max-height: none !important;
    background-position: right bottom;
    background-position-x: 120%;
    padding: 1rem 1rem 16rem 1rem;
    background-size: contain;
}

.tile5 { 
    width: auto;
    display: block;
    margin: 0 0 1.5rem 0;
}

.tile7 { 
    width: auto;
    display: block; 
}
/* ------------------------------------------------------------------------------------------------------------- */
}



/* JOURNEY ------------------------ */

.temp-spacer-please-remove {
    height:20rem;
}

.journey-heading {
    /* background-color: var(--bg-tertiary); */
    /* color: var(--text-white); */
    width: 100%;
    border-top: 0px solid var(--bg-tertiary);
    /* background-image: linear-gradient( #E3F2F0, #ffffff ); */
    margin: 4rem 0 0 0;
    border-radius: 1rem;
}

.journey-heading .journey-hero {
    border-radius: 50%;
    background-color: white;
    background-image: url("/assets/images/bc-hang-loose-dude.jpg");
    background-size: 250%;
    background-repeat: no-repeat;
    background-position: center;
    border: .8rem solid #EAEAEA;
    width: 12rem;
    height: 12rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.journey-heading h2 {
    font-family: var(--ff-secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.8rem;
    color: var(--text-tertiary);
    margin: 0 0 1rem 0;
}

.journey-heading .journey-start {
    border-radius: 50%;
    background-color: white;
    border: .5rem solid #EAEAEA;
    width: 4rem;
    height: 4rem;
    margin-bottom: 0rem;
    color: var(--text-tertiary);
    margin: 0 auto;
}

.journey-heading .journey-start i {
    align-self: center;
    font-size: 8em;
}


.journey-container {
    position: relative;
    background-image: url('../assets/background_timeline.png');
    background-position: center top;
    background-repeat: repeat-y;
}

.journey {
    margin-top: 5rem;
}

.journey h2 {
    font-family: var(--ff-secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.8rem;
    color: var(--text-tertiary);
    text-align: right;
    margin-bottom: 1rem;
}

.journey h2 span {
    font-family: var(--ff-secondary);
    font-weight: 500;
    text-transform: uppercase;
    font-size: .8rem;
    color: var(--text-primary);
    text-align: right;
    display: block;
}

.journey-2 h2, .journey-4 h2,
.journey-2 h2 span, .journey-4 h2 span {
    text-align: left;
} 

.journey-final h2, .journey-final h2 span {
    text-align: center;
} 

/* img.journey-start {
    position: absolute;
    bottom:-90px;
    left:50%;
    margin:0 auto;
    transform: translate(-50%, -50%);
} */

.journey .journey-icon {
    border-radius: 50%;
    background-color: white;
    border: .5rem solid #EAEAEA;
    width: 4rem;
    height: 4rem;
    margin-bottom: 0rem;
    color: var(--text-tertiary);
    position: absolute;
    left:50%;
    margin:0 auto;
    transform: translate(-50%, -50%) !important;
}

.journey .journey-icon i {
    align-self: center;
}


img.journey-profile,
img.journey-analyze,
img.journey-track,
img.journey-change {
    position: absolute;
    left:50%;
    margin:0 auto;
    transform: translate(-50%, -50%) !important;
}

img.journey-end {
    position: relative;
    margin:0 auto;
}

.journey-1 {
    background-color: none;
    color: #000;
    min-height: 10rem;
    background-image: url('../assets/journey-profile.png');
    background-position: right top;
    background-repeat: no-repeat;
    background-size: contain;
    padding-right: 55%;
    padding-left:30%;
}

.journey-2 {
    background-color: none;
    color: #000;
    min-height: 10rem;
    background-image: url('../assets/journey-analyze.png');
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
    padding-right: 20%;
    padding-left:60%;
}

.journey-3 {
    background-color: none;
    color: #000;
    min-height: 10rem;
    background-image: url('../assets/journey-change.png');
    background-position: right top;
    background-repeat: no-repeat;
    background-size: contain;
    padding-right: 55%;
    padding-left:20%;
}

.journey-4 {
    background-color: none;
    color: #000;
    min-height: 10rem;
    background-image: url('../assets/journey-track.png');
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
    padding-right: 20%;
    padding-left:60%;
}

.journey-final {
    background-color: #fff;
    color: #000;
    min-height: 1rem;
    background-image: none;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
    padding-right: 0;
    padding-left:0;
    text-align: center !important;
}

@media screen and (max-width:991px) {
    
    .journey-1 {
        background-image: url('../assets/journey-profile.png');
        background-position: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        padding-right: 28rem;
        padding-left:1rem;
        border-radius: 1rem;
    }
    
    .journey-2 {
        min-height: 10rem;
        background-image: url('../assets/journey-analyze.png');
        background-position: -80px;
        background-repeat: no-repeat;
        background-size: cover;
        padding-right: 1rem;
        padding-left: 28rem;
        border-radius: 1rem;
    }
    
    .journey-3 {
        background-image: url('../assets/journey-change.png');
        background-position: 80%;
        background-repeat: no-repeat;
        background-size: cover;
        padding-right: 28rem;
        padding-left: 1rem;
        border-radius: 1rem;
    }
    
    .journey-4 {
        background-image: url('../assets/journey-track.png');
        background-position: -100px;
        background-repeat: no-repeat;
        background-size: cover;
        padding-right: 1rem;
        padding-left: 28rem;
        border-radius: 1rem !important;
        opacity:0.2;
    }

}


@media screen and (max-width:767px) {
    
    .journey-1 {
        background-image: url('../assets/images/journey-profile-sm.jpg');
        background-position: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        padding-right: 20rem;
        padding-left:1rem;
        border-radius: 1rem;
    }
    
    .journey-2 {
        min-height: 10rem;
        background-image: url('../assets/images/journey-analyze-sm.jpg');
        background-position: -80px;
        background-repeat: no-repeat;
        background-size: cover;
        padding-right: 1rem;
        padding-left: 20rem;
        border-radius: 1rem;
    }
    
    .journey-3 {
        background-image: url('../assets/images/journey-change-sm.jpg');
        background-position: 80%;
        background-repeat: no-repeat;
        background-size: cover;
        padding-right: 20rem;
        padding-left: 1rem;
        border-radius: 1rem;
    }
    
    .journey-4 {
        background-image: url('../assets/images/journey-track-sm.jpg');
        background-position: -100px;
        background-repeat: no-repeat;
        background-size: cover;
        padding-right: 1rem;
        padding-left: 20rem;
        border-radius: 1rem !important;
        opacity:0.2;
    }

    .journey-1 h2,
    .journey-2 h2,
    .journey-3 h2, 
    .journey-4 h2,
    .journey-1 h2 span,
    .journey-2 h2 span,
    .journey-3 h2 span, 
    .journey-4 h2 span {
    text-align: left;
    } 
}


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

    .journey-1 h2,
    .journey-2 h2,
    .journey-3 h2, 
    .journey-4 h2 {
    text-align: left;
    padding-top: 10rem;
    } 

    .journey-1,
    .journey-2,
    .journey-3, 
    .journey-4 {
    background-image: none;
    padding-left: 2rem;
    padding-right:2rem;
    }

}

/* HOMEPAGE CTA ------------------------ */

.bc-primary {
    background-color:none;
    color: #302348;
    padding:2rem;  
    border-radius: 1rem;
    border: 1px solid #EAEAEA;
}

.bc-primary h2 {
    margin:0 0 .5rem 0;
}

.primary-1 {
    background-image: url('../assets/images/cta-climate-control-lg.jpg');
    background-position: 80%;
    background-size: cover;
    background-repeat: no-repeat;
    padding-left:50%;
    padding-right: 4rem;
}

.primary-2 {
    background-image: url('../assets/cta-bonfire.jpg');
    background-position: 80%;
    background-size: cover;
    background-repeat: no-repeat;
    padding-right:50%;
    position: relative;
    z-index: 1000;
}


@media screen and (max-width:1364px) {
    /* ------------------------------------------------------------------------------------------------------------- */
    .primary-1 {
        background-image: url('../assets/images/cta-climate-control-lg.jpg');
        background-position: 120%;
        background-size: cover;
        background-repeat: no-repeat;
        padding-left:30%;
    }
    /* ------------------------------------------------------------------------------------------------------------- */
    }
    
    
    @media screen and (max-width:992px) {
    /* ------------------------------------------------------------------------------------------------------------- */
    .primary-1 {
        background-image: url('../assets/images/cta-climate-control-sm.jpg');
        background-position: top;
        background-size: contain;
        background-repeat: no-repeat;
        padding-left:0;
        padding: 12rem 2rem 2rem 2rem;
    }
     /* ------------------------------------------------------------------------------------------------------------- */
    }
    
    
    
    
    @media screen and (max-width:779px) {
    /* ------------------------------------------------------------------------------------------------------------- */
    .primary-1 {
        background-image: url('../assets/images/cta-climate-control-sm.jpg');
        background-position: top;
        background-size: contain;
        background-repeat: no-repeat;
        padding-left:0;
        padding: 12rem 2rem 2rem 2rem;
    }
    /* ------------------------------------------------------------------------------------------------------------- */
     }
    
    
    
    
    
    
    
    
     @media screen and (max-width:499px) {
    /* ------------------------------------------------------------------------------------------------------------- */
    
    .primary-1 {
        background-image: url('../assets/images/cta-climate-control-sm.jpg');
        background-position: top;
        background-size: contain;
        background-repeat: no-repeat;
        padding-left:0;
        padding: 8rem 2rem 2rem 2rem;
    }
    /* ------------------------------------------------------------------------------------------------------------- */
    }




/* CONTENT PAGES ------------------------ */


ul.bc-graphic-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 2rem 0 4rem 0;
}

ul.bc-graphic-list li {
    padding: 1.2rem;
    width: 25%;
    border-left: 1px solid #eaeaea;
}

ul.bc-graphic-list li:last-child {
    border-right: 1px solid #eaeaea;
    padding-right: 1.5rem;
}

ul.bc-graphic-list li span {
    display: block;
    text-align: center;
    color: var(--text-blue);
    font-size: 3rem;
    margin: 1rem 0 1rem 0;
}

ul.bc-graphic-list li h3 {
    display: block;
    text-align: center;
    color: var(--text-secondary);
    font-family: var(--ff-secondary);
    text-transform: uppercase;
    font-size: 1rem;
    margin: 1rem 0 1rem 0;
}

ul.bc-ppp-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    margin: 2rem 0 4rem 0;
}

ul.bc-ppp-list li {
    padding: 1.2rem;
    margin: 1rem;
    width: auto;
    background-image: linear-gradient(#9EC7E3, #ffffff);
}
ul.bc-ppp-list li:nth-child(2) {
    background-image: linear-gradient(#98C5A7, #ffffff);
}
ul.bc-ppp-list li:last-child {
    background-image: linear-gradient(#FCC2A3, #ffffff);
}

ul.bc-ppp-list li h3 {
    text-transform: uppercase;
    font-family: var(--ff-secondary);
    font-size: 1.5rem;
    text-align: center;
    margin: 1rem 0 1rem 0;
}

ul.bc-ppp-list li span {
    display: block;
    text-align: center;
    color: var(--text-secondary);
    font-size: 3rem;
    margin: 0 0 0 0;
}


ul.bc-graphic-list-vertical {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 2rem 0 4rem 0;
    width: 100%;
}

ul.bc-graphic-list-vertical li {
    padding: 1rem 1rem 0 1rem;
    width: auto;
    border-left: 0;
    align-content: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-grey);
}


ul.bc-graphic-list-vertical li span {
    display: inline-block;
    color: var(--text-blue);
    font-size: 2rem;
    margin: 0 2rem 0 0;
    align-self: stretch;
}



.image-full-width {
    width: 80%;
    margin: 2rem 0 2rem 0;
}

.blue-text {
    color: var(--text-blue);
}

.map {
    border:1px solid #c4c4c4;
    height:40rem;
}

.bc-team-member {
    border:none;
    border-radius:0;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 2rem;
    padding-top:0rem;
}

.bc-team-member.right { padding-left: 40%; background-position: left; background-repeat: no-repeat; background-size: contain; }
.bc-team-member.left { padding-right: 40%; background-position: right; background-repeat: no-repeat; background-size: contain;  }
.bc-team-member.pegs { background-image: url('/assets/images/team/temp-team-member.png'); }
.bc-team-member.matt { background-image: url('/assets/images/team/temp-team-member.png'); }
.bc-team-member.jurj { background-image: url('/assets/images/team/temp-team-member.png'); }
.bc-team-member.shan { background-image: url('/assets/images/team/temp-team-member.png'); }
.bc-team-member.adam { background-image: url('/assets/images/team/temp-team-member.png'); }
.bc-team-member.dave { background-image: url('/assets/images/team/temp-team-member.png'); }

ul.page-end-bulletpoints {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    margin: 2rem 0 2rem 0;
}

ul.page-end-bulletpoints li:first-child {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}
ul.page-end-bulletpoints li:last-child {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

ul.page-end-bulletpoints li {
    background-color: var(--bg-tertiary);
    font-family: var(--ff-secondary);
    text-transform: uppercase;
    color: var(--text-white);
    font-size: 1.6rem;
    line-height: 1rem;
    font-weight: 500;
    flex-grow: 1;
    width: 33%;
    border-left:1px solid white;
}

ul.page-end-bulletpoints li span {
    display: block;
    font-size: .8rem;
    margin-bottom: .5rem;
    font-weight: 500;
}

ul.page-end-bulletpoints li a,
ul.page-end-bulletpoints li a:visited {
    color: var(--text-white);
    width: 100%;
    height: 100%;
    border: 1px solid white;
    top: 0;
    bottom: 0;
    left: 0;
    right:0;
    display: block;
    padding: 1rem;
    text-decoration: none;
}

ul.page-end-bulletpoints li a:hover {
    opacity: .6;
}


@media screen and (max-width:499px) {
    ul.page-end-bulletpoints {
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-content: center;
        margin: 2rem 0 2rem 0;
    }
    ul.page-end-bulletpoints li {
        width: auto;
    }
}

div.vimeo-player {
    padding:56.25% 0 0 0;
    margin: 4rem 0 4rem 0;
    position:relative;
    border: 1px solid #e9e9e9;
}

iframe.vimeo {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}





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

}

@media screen and (max-width:992px) {
    /* ------------------------------------------------------------------------------------------------------------- */

    ul.bc-graphic-list {
        list-style: none;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0;
        margin: 2rem 0 4rem 0;
    }
    
    ul.bc-graphic-list li {
        padding: 1.2rem;
        margin-bottom: 2rem;
        width: 50%;
        border-left: 1px solid #eaeaea;
    }

    ul.bc-graphic-list li:nth-child(odd) {
        border-left: none;
    }
    
    ul.bc-graphic-list li:last-child {
        border-right: 0px solid #eaeaea;
        padding-right: 0rem;
    }

    ul.bc-ppp-list {
    
        flex-direction: column;
        justify-content:center;
        padding: 1rem;
        margin: 2rem 0 2rem 0;
    }
     /* ------------------------------------------------------------------------------------------------------------- */
    }



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

 }

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

}


/* ------------------------- */

.display { display: inline !important; }
.hide { display: none !important; }
.edges { border: 1px solid black;}



/* CLIMATE CHECKER / ROI TOOL ------------------------- */


main.climate-checker-launcher {
    width: 100vw;
    height: 100vh;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.modal-content {
    border-radius: var(--modal-corners);
    min-height: 42rem;
    display: flex;
    flex-direction: row;
    /* overflow: hidden; */
    border: none;
    background-color: transparent;
    transition: all 0.5s ease-in-out;
}

.modal-content h2 {
    font-family: 'Roboto', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

#dailyHoursDisplay, #daysPerYearDisplay, #myDeviceKw {
    font-size: 3rem;
    font-weight: 900;
}

a, a:hover, a:visited, a:active {
    color: var(--text-white);
    text-decoration: none;
}

a.exit-button {
    position: absolute;
    margin: 0 0 0 0;
    bottom: -.5rem;
    right: -.5rem;
    font-size: small;
    background-color:transparent;
    border: none;
    color: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: .3s;
    transition-timing-function: ease-in-out;
}

a.exit-button:hover {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.close-calculator-icon {
    /* color: rgba(255, 255, 255, .7); */
    border: 8px solid var(--bg-uh-thefourth);
    border-radius: 50%;
    font-size: 4rem;
    align-self: center;
    background-color: var(--bg-uh-thefourth);
}

.calculator-left {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    background-color: #fff;
    color: var(--text-primary);
    height: 50rem;
}

.calculator-left #intro-container {
    display: flex;
    align-content: flex-end;
    padding: 2rem;
    flex-wrap: wrap;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    border-right: 1px solid white;
    background-color: #fff;
    background-image: url('/assets/images/climate-checker-cover2.jpg');
    background-size: cover;
    color: var(--text-primary);
    transition: opacity 0.5s;
}

.calculator-right {
    width: 50%;
    background-color: var(--bg-uh-thefourth);
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--text-primary);
    padding: 4rem;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    background-image: url('/assets/images/climate-checker-bclogo-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    transform-origin: left;
    transition: width 1s ease-in-out;
    height: 50rem;
}

.right {
    width: 50%;
    background-color: var(--bg-uh-thefourth);
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--text-primary);
    padding: 6rem;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    background-image: url('/assets//images/climate-checker-bclogo-bg.png');
    background-size: cover;
    height: 50rem;
}

.calculator-right #begin-container {
  width: 800px;
  transition: opacity 0.5s;
}

.calculator-right #adjust-container {
  width: auto;
}

.calculator-right .action-indicator {
  background-color:  var(--bg-uh-thefourth);
  border-radius: 50%;
  width: 8rem;
  height: 8rem;
  position: absolute;
  align-self: center;
  margin-left: -8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.step-two-container {
display: block;
margin-left: 3rem;
}


#start-arrow {
  border-radius: 50%;
  border: 0px solid red;
  width: 8rem;
  height: 8rem;
  opacity: 0;
  position: absolute;
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

#loading-calculation {
  border-radius: 50%;
  border: 4px white solid;
  width: 8rem;
  height: 8rem;
  opacity: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;

  -webkit-animation: spin .5s linear infinite;
  -moz-animation:spin .5s linear infinite;
  animation: spin .5s linear infinite;
}

#reset-button {
  border-radius: 50%;
  border: 4px white solid;
  width: 8rem;
  height: 8rem;
  opacity: 0;
  background-color: #fff;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

#start-again {
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

#adjust {
  opacity: 0;
  display: none;
  width: 1500px;
  height: 100%;

}

#adjust div { display: flex; flex-direction: column; align-items: stretch; }
#adjust div:first-child { width: 70%; padding-right: 2rem; }
#adjust div:last-child { width: 30%; padding-left: 0; display: flex; align-self: center; order: 1px solid red; }

#adjust div:first-child h2 { margin: 0 0 0 0; }

.display-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: #fff;
}

.action-icon {
  font-size: 6rem;
  color: var(--bg-uh-thefourth);
  display: block;
}

.action-icon-white {
  font-size: 6rem;
  color: var(--text-white);
  display: block;
}

.bc-icon {
    font-size: 4rem;
    color: var(--text-white);
    display: block;
    background-image: url('/assets/images/climate-checker-bclogo-bg.png');
    width: 3rem;
    height: 3rem;
    position: absolute;
  }

.supports-hidden {
  transition: opacity 0.5s;
}

.fade-in {
  transition: opacity 0.5s;
}

.expand {
  width: 80%;
  transition: width .5s;
}

.contract {
  width: 50%;
  transition: width .5s;
}

/* Slider Styles */

.cc-label {
    font-weight: 500;
}
.cc-helper {
    font-weight: normal;
    font-size: .8rem;
    margin-top: -1rem;
}

.cc-stat { font-size: 4rem; font-weight: 600;}
.cc-stat span { color: var(--text-secondary-halftone) ; font-size: 1rem;}
.cc-stat .cc-icon { color: var(--text-secondary-halftone) ; font-size: 3rem; }
.cc-range { width: 20rem; margin-bottom: 2rem; }
#myDeviceKw {font-size: 4rem; font-weight: 600; color: var(--text-primary); width: 4rem;}


.cc-range::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 20px; /* Set a specific slider handle width */
  height: 20px; /* Slider handle height */
  background: var(--text-primary); /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.cc-range::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: var(--text-primary); /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.cc-input-fields {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.cc-input-fields label { font-weight: 600; padding-right: 2rem; }
.cc-input-fields input { width: 6rem; border-radius: .5rem; border-color: #fff; border: none; padding: .2rem 1rem .2rem 1rem; }

#adjust .cc-stat {
    margin:0 0 0 3rem;
  }
  
  #adjust .cc-stat input {
    margin: 0 0 0 0;
  }

/* temporary override */


