@charset "UTF-8";
/* CSS Document */

/* ------------------------------------------------------- */
/* --------------- Quick colours ------------------------- */
/* ------------------------------------------------------- */

body {
	--c3-color-red: #E81A3B;
	--c3-color-charcoal: #333333;
	--c3-color-slate: #5B5E7F;
	--c3-color-burgandy: #98002E;
	--c3-color-palecharcoal: #E7E7E7;
	--c3-color-gold: #D67900;
	--c3-color-jade: #009966;
	--c3-color-ocean: #008FD2;
}

/* ---- BDO Overrides ---- */

body:has(.c3_font_overide) {
    font-family: 'Proxima Nova';
}

header.hero-widget { display: none }
nav#local-nav { display: none }

/* Global Styles */

div.section-container:has(.c3_any_full_screen) {
	width: 100%;
	max-width: 100% !important;
	padding: 0px; /* Remember left and right pad is 4rem to match BDO site */
}

.c3_any_full_screen {
	display: block;
	position: relative;
	width: 100%;
	height: 100vh;
}

.section-container--lg {
    max-width: none !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}


h3.c3_h3_heading {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 50px;
    color: var(--c3-color-slate);
    margin-bottom: 20px;
    margin-top: 20px;
    padding-top: 0px;
    transition: margin-top 0.5s ease;
}

@media only screen and (max-width: 800px) {
    h3.c3_h3_heading {
        font-size: 30px;
    } 
}

div:has(#c3_nav_outer) {
    display: block;
    position: sticky;
    top: 140px;
    width: 100%;
    z-index: 5;
}

@media only screen and (max-width: 975px) {
    div:has(#c3_nav_outer) {
        top: 90px;
    }
}

#c3_nav_outer {
    display: block;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999999;
}



#c3_nav_outer::after {
    content: "";
    display: none;
    width: 25px;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

@media only screen and (max-width: 750px) {
    #c3_nav_outer::after {
        display: block !important;   
    }
}

#c3_nav {
    display: block;
    height: auto;
    background-color: var(--c3-color-charcoal);
    overflow: scroll;
    
}

#c3_nav::-webkit-scrollbar {
    display: none;
}

#c3_nav ul {
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}


#c3_nav li {
    display: inline-block;
    margin: 0px;
    margin-right: -46px;
    padding: 0px;
}

#c3_nav li a {
    display: block;
    color: #ffffff;
    padding: 20px;
    position: relative;
    background-color: var(--c3-color-charcoal);
    transition: all 0.5s ease;
    background-color: rgba(255,255,255,0.05);
    clip-path: polygon(26.25% 0%, 100% 0%, calc(100% - 26.25%) 100%, 0% 100%);
    width: 160px;
}

#c3_nav li:last-of-type a {
    clip-path: polygon(20% 0%, 100% 0%, calc(100% - 20%) 100%, 0% 100%);
    width: 210px;
}

#c3_nav li:nth-child(1) a { background-color: rgba(255,255,255,0.05); }
#c3_nav li:nth-child(2) a { background-color: rgba(255,255,255,0.075); }
#c3_nav li:nth-child(3) a { background-color: rgba(255,255,255,0.1); }
#c3_nav li:nth-child(4) a { background-color: rgba(255,255,255,0.125); }
#c3_nav li:nth-child(5) a { background-color: rgba(255,255,255,0.150); }

#c3_nav li a span {
    display: block;
    position: relative;
}

@media only screen and (max-width: 600px) {
    #c3_nav li a {
        padding: 15px;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 12px;
    }
}

#c3_nav li:last-of-type a {
    background-color: var(--c3-color-red);
    font-weight: 600;
}

#c3_nav.c3_nav_planet li:last-of-type a {
    background-color: var(--c3-color-jade);
}

#c3_nav.c3_nav_prosperity li:last-of-type a {
    background-color: var(--c3-color-ocean);
}

#c3_nav.c3_nav_principles li:last-of-type a {
    background-color: var(--c3-color-gold);
}

#c3_nav li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0%;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--c3-color-slate); 
    clip-path: polygon(26.25% 0%, 100% 0%, calc(100% - 26.25%) 100%, 0% 100%);
    transition: all 0.5s ease;
}

#c3_nav li:last-of-type a::before {
    clip-path: polygon(20% 0%, 100% 0%, calc(100% - 20%) 100%, 0% 100%);
}

#c3_nav li a:hover::before {
    left: 0%;
}




/*#c3_nav li a:hover {
   background-color: var(--c3-color-slate); 
}*/