﻿/*
    font-family: 'Raleway', sans-serif; body
    font-family: 'Crimson Text', serif; heading

    Gold:   fcd140      rgba(252,209,64,1)
    green:  b3bd35      rgba(179,189,53,1) 
    blue:   007cbb      rgba(0,124,187,1)
    dark Gray   #585858     rgba(88,88,88,1)
*/

/*#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);
    }
}

@keyframes fade-in-move-down {
    0% {
        opacity: 0;
        transform: translateY(-3rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-move-up {
    0% {
        opacity: 0;
        transform: translateY(3rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*#endregion*/

/*#region header image*/
#headerImage {
    position: relative;
    height: 150px;
    overflow: hidden;
}

#headerImageContainer {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
}

#headerImageContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

#headerGradientSub {
    position: absolute;
    z-index: 15;
    background: rgb(88,88,88);
    background: linear-gradient(90deg, rgba(96,96,96,1) 25%, rgba(0,124,187,1) 50%, rgba(179,189,53,1) 75%, rgba(252,209,64,1) 85%);
    top: 0;
    width: 100%;
    height: 150px;
}

.headerGradientSubImage {
    background: rgba(88,88,88,.5) !important;
    background: linear-gradient(90deg, rgba(96,96,96,.5) 25%, rgba(0,124,187,.5) 50%, rgba(179,189,53,.5) 75%, rgba(252,209,64,.5) 85%) !important;
}

#headerPageTitle {
    position: absolute;
    top: 2.75rem;
    width: 100%;
    margin: 0 auto;
    z-index: 20;
    height: 75px;
    padding-left: 10%;
}

#centerTitle {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 1rem;
    border-left: 8px solid #f7f7f7;
}

#headerPageTitle h1 {
    font-size: 3rem;
    text-shadow: 2px 4px 3px rgba(0,0,0,0.1);
    line-height: 1.25;
    font-weight: normal;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    color: #fcd140;
    text-decoration: none;
    white-space: nowrap;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    text-align: inherit;
    font-weight: 700;
    -webkit-animation: fade-in-move-up .75s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fade-in-move-up .75s; /* Firefox < 16 */
    -ms-animation: fade-in-move-up .75s; /* Internet Explorer */
    -o-animation: fade-in-move-up .75s; /* Opera < 12.1 */
    animation: fade-in-move-up .75s;
}
/*#endregion*/

/*#region content*/
#sectionContent {
    padding: 4rem 0;
    min-height: 55vh;
}

#contentContainer {
    position: relative;
    z-index: 0;
}

.wysiwyg {
    position: relative;
    color: #525252;
    font-size: 1.15rem;
    font-family: 'Raleway', sans-serif;
    line-height: 1.45;
    margin-bottom:3rem;
    clear: both;
}

.wysiwyg-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #007cbb;
    font-size: 2rem !important;
    font-family: 'Crimson Text', serif;
    width: 100%;
    border-bottom:1px solid rgba(252,209,64,1);
}

.wysiwyg a {
    color: #007cbb;
    text-decoration: underline;
}

.wysiwyg a:hover {
    color: #b3bd35;
}

.wysiwyg .contentButton a {
    color: #FFF;
    text-decoration: none;
}

.wysiwyg .contentButton:hover, .wysiwyg .contentButton:active, .wysiwyg .contentButton:focus {
    background: rgba(247,119,12,.8)
}

.wysiwyg ul, .wysiwyg ol {
    margin:1rem 4rem;
}

.wysiwyg .bluetext{ color:#007cbb;}

.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%;
}

.contentBlockImage {
    float: left;
    margin: 0 1rem 1rem 0 !important;
}

.contentBlockImageRight {
    float: right;
    margin: .5rem 0 1rem 1rem !important;
}

.contentBlockImage img, .contentBlockImageRight img {
    margin: 0 !important;
}
/*#endregion*/

/*#region navigation*/
.subPadRight {
    padding-right: 4rem;
}

#nav-wrap {
    background: rgba(80,80,80,.05);
    width: 100%;
    border-radius: 16px;
    border: 1px solid #e7e7e7;
    position: relative;
    padding: 1.5rem 2rem;
}

#nav-wrap, #infoB1Hide {
    display: block;
}

.showhide {
    display: none;
    padding: 1rem;
}

.showhide a {
    color: #07457F;
    text-decoration: none !important;
}

.showhide a:hover {
    color: #3F8531;
    text-decoration: none !important;
}

#nav-wrap .subpage-nav {
    list-style: none;
    padding-left: 0;
}

#nav-wrap .subpage-nav:first-child {
    margin-left: 0 !important;
}

#nav-wrap .subpage-nav li .subpage-nav {
    margin-left: 1rem;
}

.subpage-nav li {
    font-size: 1rem;
    border-bottom: 1px solid #CCC;
}

.subpage-nav li a {
    font-family: 'Raleway', sans-serif;
    display: inline-block;
    color: #007cbb;
    width: 100%;
    padding: .5rem;
    text-decoration: none;
    text-transform: capitalize;
}

.subpage-nav li a:hover {
    color: #b3bd35;
}

.subpage-nav-active {
    color: #b3bd35 !important;
    font-weight: bold;
}

#nav-wrap ul ul > li:last-child {
    border-bottom: none;
}


/*#endregion*/

/* #region accordion*/
.accordion {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    background: #FFF;
}

.accordion a {
    text-decoration: none !important;
}

.accordion-section-title {
    width: 100%;
    margin: 0 0 .1em 0;
    padding: .25em .5em;
    display: inline-block;
    background: #585858 !important;
    transition: all linear 0.15s;
    font-size: 1.62em;
    color: #FFF !important;
    font-family: 'Raleway', sans-serif;
    line-height: 1.5;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    font-size: 1.200em;
    font-weight: 300;
    text-decoration: none;
}

.accordion-section-title.active,
.accordion-section-title:hover,
.accordion-section-title:focus {
    background: #b3bd35 !important;
    color: #FFF !important;
    border-bottom: none !important;
}

.accordion-section-content {
    padding: 15px;
    display: none;
}

.accordion-section:last-child .accordion-section-title {
    border-bottom: none;
}

.accordion ul, .accordion ol {
    margin-left: 2rem;
}
/*#endregion*/

/*#region break points*/

@media(max-width:1375px) {
    #headerPageTitle {
        padding-left: 7%;
    }

    #headerPageTitle h1 {
        font-size: 3rem;
    }
}

@media(max-width:1230px) {
    #headerImage {
        height: 175px;
    }

    #headerPageTitle {
        padding-left: 5%;
    }

    #headerPageTitle h1 {
        font-size: 2.75rem;
    }

    #sectionContent {
        padding: 1rem 2rem;
        min-height: 100px;
    }
}

/*lets go mobile*/
@media(max-width:1023px) {
    #headerPageTitle {
        top: 3rem;
    }

    #headerPageTitle h1 {
        font-size: 2.5rem;
    }

    .subPadRight {
        padding-right: 0;
        padding-bottom:2rem;
    }
}

@media(max-width:640px) {
    .contentBlockImage {
        float: none;
        margin: 0 1rem 1rem 0 !important;
        text-align: center;
    }

    #headerImage {
        height: 100px;
    }

    #centerTitle {
        border-left: 4px solid #f7f7f7;
    }

    #headerPageTitle {
        top: 1.5rem;
    }

    #headerPageTitle h1 {
        font-size: 2rem;
    }
   
}

@media(max-width:500px) {
    #headerPageTitle {
        top: 2.15rem;
        padding-right: 1rem;
    }

	#headerPageTitle h1 {
		font-size: 1.75rem;
		white-space: normal;
		line-height: 1
	}
	#sectionContent {
		padding: 1rem 1rem;
		overflow: hidden;
	}
}

/*#endregion*/

/*#region survey*/
.copyerror {
    color: #FF0000;
}
/*#endregion*/