/*
    font-family: 'Cabin', sans-serif; //body 
    partner conference colors
    blue:       #336890
    mustard:    #d6a928

    Vision Zero Colors
    red:    #D71921
    blue:   #2869B9
    blue text:  095B8A
    dark gray text: #0f0f0f
    dark gray : #323232
    yellow: #FFE200
*/

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0
}

.fade-in-text {
    animation: fadeIn linear 2s;
    -webkit-animation: fadeIn linear 2s;
    -moz-animation: fadeIn linear 2s;
    -o-animation: fadeIn linear 2s;
    -ms-animation: fadeIn linear 2s;
}

.blueText {
    color: #336890;
}

/*#region keyframes*/
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-in-move-down {
    0% {
        opacity: 0;
        transform: translateY(-3rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-move-right {
    0% {
        opacity: 0;
        transform: translateX(-3rem);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
/*#endregion*/



/*#region content*/
#sectionContent {
    min-height:50vh;
    padding:4rem 0;
}
#contentContainer {
    position:relative;
    z-index:0;
}

.wysiwyg .contentButton {
    background: #f7770c;
    color: #FFF;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    padding: .5rem 1rem;
    border-radius: 50px;
}
.wysiwyg {
    position:relative;
    z-index:-1;
    color: #525252;
    font-size: 1.35rem;
    font-family: 'Cabin', sans-serif;
    line-height: 1.45;
    padding-top: 1rem;
    clear: both;
    
}
.wysiwyg-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #336890;
    font-size: 2rem !important;
    font-family: 'Cabin', sans-serif;
    width: 100%;
    border-bottom: 1px solid #d6a928;
}

.wysiwyg .contentButton a {
    color: #FFF;
    text-decoration: none;
}

.wysiwyg .contentButton:hover, .wysiwyg .contentButton:active, .wysiwyg .contentButton:focus {
    background: rgba(247,119,12,.8)
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

    .video-container iframe, .video-container object, .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
/*#endregion*/


/*#region agenda*/

.agendaOuter {
    font-size:1rem !important;
    padding-bottom:2rem;
}
.agendaMainTitle {
    width: 100%;
    clear: both;
    background: #336890;
    padding: .5rem 1rem;
}

.agendaMainTitle h2 {
    color: #FFF;
    font-size: 1.25rem;
    margin-bottom: 0;
}

.agendaRow {
    border-bottom: 1px solid #CCC;
    position: relative;
    display: flex;
    width: 100%;
}

.agendaTitle {
    width: 25%;
    display: inline-block;
    background: #f5f5f5;
    padding: 1rem;
    text-align: center;
    color: #113141;
    font-weight:700;
}

.agendaContent {
    width: 75%;
    display: inline-block;
    padding: 1rem;
}
/*#endregion*/

/*#region media breaks*/
@media(max-width:1680px) {
    #sectionContent {
        min-height: 40vh;
        padding: 2rem 0 4rem 0;
    }
}
@media(max-width:1290px) {
    #sectionContent {       
        padding: 2rem 2rem 4rem 2rem;
    }
}

    @media(max-width:1140px) {
    }

    @media(max-width:920px) {
        #sectionContent {
            padding: 0rem 2rem 4rem 2rem;
        }
    }
    /*lets go mobile*/
    @media(max-width:736px) {
        #sectionContent {
            padding: 4rem 1.5rem;
        }
        .wysiwyg {
            font-size: 1.15rem;            
        }
        .agendaRow {
            display: block;
        }
        .agendaTitle, .agendaContent {
            width: 100%;
            text-align:left;
        }
        .agendaTitle {
            background: #FFF;
            padding: 1rem 1rem .15rem 1rem;
        }
        .agendaContent {
            padding: .15rem 1rem 1rem 1rem;
        }
     }
    /*#endregion*/