/*Hide Header*/
.page-titles, .page__top-media, .breadcrumbs{
    display:none;
}
.page__content-wrapper{
    padding:0px;
}
body{
    --media-before-content: 0px !important;
}
/*Make Full Screen*/
.page{
    max-width:100% !important;   
}
/*Collapse Subnav to Mobile Style*/
.page{
    overflow:hidden;
    display: grid;
    grid:
    "subNav ." 3em
    "subNav content" 1fr / [c1] 1fr
    [c2] minmax(0, 1fr);
}
.subNav{
    justify-content: flex-end;
    flex-direction: row-reverse;
    float: left;
    max-width: 100%;
    height: fit-content;
}
.subNav > input{
    width: 145px;
    height: 3em;
    flex-direction: row-reverse;
    flex-shrink: 0;
    padding: 0;
    justify-content: space-evenly;
}
.subNav > :is(input, input:checked):after {
    content: ' ';
    display: inline-block;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    height: 12px;
    width: 12px;
    transition: transform .3s;
}
.subNav > input:after{
    transform: rotate(135deg) translateX(-2px) translateY(-2px);
}
.subNav > input:before {
    color: white;
    width: 75px;
    content: 'Navigation';
    padding-top: 1px;
}
.subnavBackgroundGradient{
    display:none;
}
.subNavList.nestedLinkList--d1.nestedLinkList--d1.nestedLinkList__manualDropDown:not(:checked){
    position: absolute;
    height:3em;
}
.subNavList.nestedLinkList--d1.nestedLinkList--d1.nestedLinkList__manualDropDown:checked{
    position: relative;
    animation: slideOut 0.3s 1 ease-out;
    height:3em;
}
.subNavList.nestedLinkList--d1.nestedLinkList--d1.nestedLinkList__manualDropDown:checked ~ .subNavList{
    translate: 0;
    position: relative;
}
.subNav .nestedLinkList__manualDropDown.nestedLinkList--d1{
    display: flex;
    opacity: 1;
}
.subNav .nestedLinkList__manualDropDown.nestedLinkList--d1:checked{
    height:3em;
    width: 3em;
}
.subNavList.nestedLinkList--d1.nestedLinkList--d1.nestedLinkList__manualDropDown:not(:checked) ~ .subNavList{
    translate: -100%;
    position: absolute;
    animation: KeepRel 0.3s;
}
.subNav .nestedLinkList__manualDropDown.nestedLinkList--d1:checked:before, .subNav .nestedLinkList__manualDropDown.nestedLinkList--d1:checked:after{
    position: absolute;
    width: 36px;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    transition: transform 0.6s;
    cursor: pointer;
    content: '';
}
.subNav .nestedLinkList__manualDropDown.nestedLinkList--d1:checked:after{
    transform: rotate(-45deg);
}
.subNav .nestedLinkList__manualDropDown.nestedLinkList--d1:checked:before{
    transform: rotate(45deg);
}
@keyframes slideOut {
    from {left: calc(-100%);}
    to {left: 0;}
}
@keyframes KeepRel {
    from {position: relative;}
    to {position: relative;}
}
/*Our Story Box Styles*/
.our-story p{
    margin-top:15px;
    margin-bottom:15px;
    font-size:24px;
    line-height:1.2em;
}
@media screen and (max-width:720px){
    .our-story p{
        font-size:3.33vw;
        line-height:1.2em;
    }
}
@media screen and (max-width:420px){
    .our-story p{
        font-size:15px;
        line-height:1.2em;
    }
}
.our-story h2{
    margin-top:0px;
    margin-bottom:15px;
    font-size:36px;
    line-height:1.2em;
    color:black;
    font-weight:bold;
}
@media screen and (max-width:720px){
    .our-story h2{
        font-size:5vw;
        line-height:1.2em;
    }
}
@media screen and (max-width:420px){
    .our-story h2{
        font-size:21px;
        line-height:1.2em;
    }
}
.our-story h3{
    margin-top:0px;
    margin-bottom:15px;
    font-size:24px;
    line-height:1.2em;
    color:black;
    font-weight:bold;
}
@media screen and (max-width:720px){
    .our-story h3{
        font-size:3.33vw;
        line-height:1.2em;
    }
}
@media screen and (max-width:420px){
    .our-story h3{
        font-size:15px;
        line-height:1.2em;
    }
}
.page__content-wrapper .our-story h3 a, .page__content-wrapper .our-story h3 a:active, .page__content-wrapper .our-story h3 a:visited{
    text-decoration:none;
    font-weight:normal;
    color:#30567d;
}
.page__content-wrapper .our-story h3 a:hover{
    text-decoration:underline;
    font-weight:normal;
    color:#30567d;
}
.our-story .content-boxes{
    height:auto;
    width:100%;
}
.our-story .contentBox {
    height:80vh;
    opacity:0;
    transition:opacity 0.8s;
}
.our-story .contentBox.show {
    opacity:1;
    z-index:1;
}
/*iOS has issues with displaying multiple videos*/
.ios .our-story .contentBox{
    display:none;
}
.ios .our-story .contentBox.show{
    display:block;
    animation-name:iosOurStoryFadeIn;
    animation-duration:0.8s;
}
/*If Android Every has issues loading multiple videos uncomment this out*/
/*.android .our-story .contentBox{
    display:none;
}
.android .our-story .contentBox.show{
    display:block;
    animation-name:iosOurStoryFadeIn;
    animation-duration:0.8s;
}*/
@keyframe iosOurStoryFadeIn{
    from{opacity:0;}
    to{opacity:1;}
}
.our-story .contentBoxBGVideo{
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
}
.our-story .contentBoxBGVideo video{
    position:absolute;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
/*Alignment Styles - These are the direct opposite of the declared style*/
.our-story .top-left .contentBoxBGVideo video{
    object-position:bottom right;
}
.our-story .center-left .contentBoxBGVideo video{
    object-position:center right;
}
.our-story .left-center .contentBoxBGVideo video{
    object-position:center right;
}
.our-story .bottom-left .contentBoxBGVideo video{
    object-position:top right;
}
.our-story .top-right .contentBoxBGVideo video{
    object-position:bottom left;
}
.our-story .center-right .contentBoxBGVideo video{
    object-position:center left;
}
.our-story .right-center .contentBoxBGVideo video{
    object-position:center left;
}
.our-story .bottom-right .contentBoxBGVideo video{
    object-position:top left;
}
.our-story .top-center .contentBoxBGVideo video{
    object-position:bottom center;
}
.our-story .bottom-center .contentBoxBGVideo video{
    object-position:top center;
}
.our-story .contentBoxBG{
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.our-story .top-left .contentBoxBG{
    background-position:bottom right;
}
.our-story .center-left .contentBoxBG {
    background-position:center right;
}
.our-story .left-center .contentBoxBG {
    background-position:center right;
}
.our-story .bottom-left .contentBoxBG {
    background-position:top right;
}
.our-story .top-right .contentBoxBG {
    background-position:bottom left;
}
.our-story .center-right .contentBoxBG {
    background-position:center left;
}
.our-story .right-center .contentBoxBG {
    background-position:center left;
}
.our-story .bottom-right .contentBoxBG {
    background-position:top left;
}
.our-story .top-center .contentBoxBG {
    background-position:bottom center;
}
.our-story .bottom-center .contentBoxBG {
    background-position:top center;
}
.our-story .contentBoxTable{
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    display:table;
}
.our-story .contentBoxTableCell{
    padding:50px;
    vertical-align:middle;
    text-align:center;
    display:table-cell;
}
@media screen and (max-width:720px){
    .our-story .contentBoxTableCell{
        padding:6.9vw;
    }
}
@media screen and (max-width:420px){
    .our-story .contentBoxTableCell{
        padding:15px;
    }
}
/*Alignment Styles*/
.our-story .top-left .contentBoxTableCell{
    text-align:left;
    vertical-align:top;
}
.our-story .center-left .contentBoxTableCell{
    text-align:left;
    vertical-align:middle;
}
.our-story .left-center .contentBoxTableCell{
    text-align:left;
    vertical-align:middle;
}
.our-story .bottom-left .contentBoxTableCell{
    text-align:left;
    vertical-align:bottom;
}
.our-story .top-right .contentBoxTableCell{
    text-align:right;
    vertical-align:top;
}
.our-story .center-right .contentBoxTableCell{
    text-align:right;
    vertical-align:middle;
}
.our-story .right-center .contentBoxTableCell{
    text-align:right;
    vertical-align:middle;
}
.our-story .bottom-right .contentBoxTableCell{
    text-align:right;
    vertical-align:bottom;
}
.our-story .top-center .contentBoxTableCell{
    text-align:center;
    vertical-align:top;
}
.our-story .bottom-center .contentBoxTableCell{
    text-align:center;
    vertical-align:bottom;
}
/*Our Story Content Box Styles*/
.our-story .contentBoxContent{
    position:relative;
}
/*Extra padding when top and bottom aligned*/
.our-story .top-left .contentBoxContent{
    padding-top:10vh;
}
.our-story .bottom-left .contentBoxContent {
    padding-bottom:10vh;
}
.our-story .top-right .contentBoxContent {
    padding-top:10vh;
}
.our-story .bottom-right .contentBoxContent {
    padding-bottom:10vh;
}
.our-story .top-center .contentBoxContent {
    padding-top:10vh;
}
.our-story .bottom-center .contentBoxContent {
    padding-bottom:10vh;
}
.our-story .contentBox.show .contentBoxContent{
    animation-name:contentBoxFlowUp;
    animation-duration:0.8s;
}
@keyframes contentBoxFlowUp{
    from{ opacity:0; top: 100px; }
    to{ opacity:1; top:0px; }
}
.our-story .contentBoxContent img{
    max-width:100%;
}
.our-story-text-box{
    font-size: 24px;
    line-height: 1.2em;
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 75px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
@media screen and (max-width:1024px){
    .our-story-text-box{
        padding: 50px;
    }
}
@media screen and (max-width:720px){
    .our-story-text-box{
        font-size:3.33vw;
        line-height:1.2em;
        padding:6.9vw;
    }
}
@media screen and (max-width:420px){
    .our-story-text-box{
        font-size:15px;
        line-height:1.2em;
        padding:15px;
    }
}
/*Skip Link Styles*/
#ChapterSelect{
    text-align: center;
    max-width: 800px;
    font-size: 24px;
    line-height: 1.2em;
    color: rgba(0, 0, 0, 1);
    margin-left: auto;
    margin-right: auto;
    margin-top:0px;
    margin-bottom:15px;
}
@media screen and (max-width:720px){
    #ChapterSelect{
        font-size:3.33vw;
        line-height:1.2em;
    }
}
@media screen and (max-width:420px){
    #ChapterSelect{
        font-size:15px;
        line-height:1.2em;
    }
}
.fixedSkipLinks{
    position: relative;
    width: 100%;
    font-size: 0px !important;
    line-height: 0px !important;
    max-width: 1660px;
    margin-left: auto;
    margin-right: auto;
    padding-left:30px;
}
@media screen and (max-width:1280px){
    .fixedSkipLinks{
        padding-left:15px;
    }
}
.fixedSkipLink{
    display: inline-block;
    vertical-align: top;
    width: calc(16.666% - 30px);
    margin-right: 30px;
}
@media screen and (max-width:1280px){
    .fixedSkipLink{
        width: calc(16.666% - 15px);
        margin-right: 15px;
    }
}
@media screen and (max-width:1024px){
    .fixedSkipLink{
        width: calc(25% - 15px);
        margin-right: 15px;
        margin-bottom:15px;
    }
}
@media screen and (max-width:640px){
    .fixedSkipLink{
        width: calc(33.333% - 15px);
    }
}
.fixedSkipLink img{
    margin:0px !important;
}
/*Chapter Title Styles*/
.our-story .ChapterTitle {
    display: inline-block;
    float: none;
    vertical-align: bottom;
    margin-left: 0px !important;
    margin-right: 0px  !important;
    position:absolute;
    top:100px;
    left:100px;
    max-width:calc(100% - 200px) !important;
}
@media screen and (max-width:1280px){
    .our-story .ChapterTitle {
        top:75px;
        left:50px;
        max-width: calc(100% - 100px) !important;
    }
}
@media screen and (max-width:720px){
    .our-story .ChapterTitle {
        top:75px;
        left:15px;
        max-width: calc(100% - 30px) !important;
    }
}
/*Navigation Buttoons and Styles*/
/*Back To Parent*/
.back-to-parent{
    position: fixed;
    width: 49px;
    height: 49px;
    display: none;
    box-shadow: -1px 1px 0 0 rgba(0, 0, 0, .2), 0 0 15px 0 rgba(0, 0, 0, .2);
    background-color: rgba(37, 97, 156, 0.9);
    z-index: 1;
    color: black;
    overflow: hidden;
    text-decoration: none;
    border-radius: 49px;
    line-height: 5em;
    font-size: 15px;
    top: 50px;
    left: 50px;
    transition: background-color .8s;
    animation-name: backToParent;
    animation-duration: 0.8s;
}
@media screen and (max-width:1280px){
    .back-to-parent{
        top:15px;
        left:15px;
    }
}
.back-to-parent:hover{
    background-color:white;
}
.back-to-parent.show{ display:inline-block; }
@keyframes backToParent{
    0% {
        opacity: 0;
        margin-top: -15px;
    }
    100% {
        opacity: 1;
        margin-top: 0px;
    }
}
.back-to-parent .left-arrow{
    position: absolute;
    top: 17px;
    left: 19px;
    width: 14px;
    line-height: 6em;
    height: 14px;
    border-bottom: 2px white solid;
    border-left: 2px solid white;
    transform: rotate(45deg);
    transition: border .8s;
    overflow:hidden;
}
.back-to-parent:hover .left-arrow{
    border-bottom: 2px rgba(37, 97, 156, 1) solid;
    border-left: 2px rgba(37, 97, 156, 1) solid;
}
/*Back to Top*/
.back-to-top{
    position: fixed;
    width: 49px;
    height: 49px;
    display: inline-block;
    box-shadow: -1px 1px 0 0 rgba(0, 0, 0, .2), 0 0 15px 0 rgba(0, 0, 0, .2);
    background-color: rgba(37, 97, 156, 0.9);
    z-index: 1;
    color: black;
    overflow: hidden;
    text-decoration: none;
    border-radius: 49px;
    line-height: 5em;
    font-size: 15px;
    bottom: 50px;
    left: 50px;
    transition: background-color .8s;
    z-index:2;
}
@media screen and (max-width:1280px){
    .back-to-top{
        bottom:15px;
        left:15px;
    }
}
.back-to-top:hover{
    background-color:white;
}
.back-to-top .up-arrow{
    position: absolute;
    top: 20px;
    left: 17px;
    width: 14px;
    line-height: 6em;
    height: 14px;
    border-top: 2px white solid;
    border-left: 2px solid white;
    transform: rotate(45deg);
    transition: border .8s;
    overflow:hidden;
}
.back-to-top:hover .up-arrow{
    border-top: 2px rgba(37, 97, 156, 1) solid;
    border-left: 2px rgba(37, 97, 156, 1) solid;
}
/*Scroll Down Arrow*/
.scroll-down{
    position: fixed;
    width: 49px;
    height: 49px;
    opacity:0;
    display: inline-block;
    box-shadow: -1px 1px 0 0 rgba(0, 0, 0, .2), 0 0 15px 0 rgba(0, 0, 0, .2);
    background-color: rgba(37, 97, 156, 0.9);
    z-index: 1;
    color: black;
    overflow: hidden;
    text-decoration: none;
    border-radius: 49px;
    line-height: 5em;
    font-size: 15px;
    bottom: 50px;
    left: calc(50% - 24.5px);
    transition: background-color .8s, opacity .8s;
}
@media screen and (max-width:1280px){
    .scroll-down{
        bottom:15px;
    }
}
.scroll-down:hover{
    background-color:white;
}
.scroll-down.show{
    opacity:1;
}
.scroll-down .down-arrow{
    position: absolute;
    top: 15px;
    left: 17px;
    width: 14px;
    line-height: 6em;
    height: 14px;
    border-bottom: 2px white solid;
    border-right: 2px solid white;
    transform: rotate(45deg);
    transition: border .8s;
    overflow:hidden;
}
.scroll-down:hover .down-arrow{
    border-bottom: 2px rgba(37, 97, 156, 1) solid;
    border-right: 2px rgba(37, 97, 156, 1) solid;
}
/*Unique Scroll Down Arrow Style - Just For Health*/
.scroll-down{
    background:url(/content/images/mayor/priorities/health/arrow.png);
    border-radius:0px;
    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;
    box-shadow:none;
    transition:none;
    width: 80px;
    height: 80px;
    left: calc(50% - 40px);
    bottom: 22px;
}
@media screen and (max-width:1280px){
    .scroll-down{
        width: 49px;
        height: 49px;
        left: calc(50% - 24.5px);
        bottom: 15px;
    }
}
.scroll-down:hover{
    background:url(/content/images/mayor/priorities/health/arrow.png);
    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;
    box-shadow:none;
    transition:none;
}
.scroll-down .down-arrow{
    display:none;
}
/*Bottom Arrow Text*/
.our-story-arrow-text{
    position: fixed;
    bottom: 100px;
    left: 0px;
    right: 0px;
    font-size: 20px;
    line-height:1.2em;
    color: rgba(255,255,255,0);
    padding-right: 15px;
    padding-left: 15px;
    text-shadow: 0px 0px white, 2px 2px 2px rgba(0, 0, 0, 0.5);
    margin-top:0px;
    margin-bottom:0px;
    text-align:center;
}
@media screen and (max-width:1280px){
    .our-story-arrow-text{
        bottom:65px;
    }
}
@media screen and (max-width:720px){
    .our-story-arrow-tex{
        font-size:2.777vw;
        line-height:1.2em;
    }
}
@media screen and (max-width:540px){
    .our-story-arrow-tex{
        font-size:15px;
        line-height:1.2em;
    }
}
.page__content-wrapper .our-story-arrow-text a, .page__content-wrapper .our-story-arrow-text a:active, .page__content-wrapper .our-story-arrow-text a:visited{
    color:rgba(0,0,0,0);
    text-shadow: 0px 0px white, 2px 2px 2px rgba(0, 0, 0, 0.5);
    transition:text-shadow 0.4s;
    text-decoration:none;
}
.page__content-wrapper .our-story-arrow-text a:hover{
    text-shadow: -2px -2px white, 4px 4px 5px rgba(0, 0, 0, 0.5);
    text-decoration:none;
}
/*Final Link Style*/
.page__content-wrapper a.FinalChapterSelectLink, .page__content-wrapper a.FinalChapterSelectLink:active, .page__content-wrapper a.FinalChapterSelectLink:visited{
    color:rgba(0,0,0,0);
    text-shadow: 0px 0px white, 2px 2px 2px rgba(0, 0, 0, 0.5);
    transition:text-shadow 0.4s;
    text-decoration:none;
}
.page__content-wrapper a.FinalChapterSelectLink:hover{
    text-shadow: -2px -2px white, 4px 4px 5px rgba(0, 0, 0, 0.5);
    text-decoration:none;
}
