@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

body, h1, h2, h3, p, footer {
    font-family: 'Open Sans', sans-serif;
}

body {
    padding: 0px;
    margin: 0px;
}

.container {
    padding: 0px;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}

.jump-links {
    text-align: center;
}

.jump-links a {
    color: #257b68; 
    text-decoration: none;
}

.jump-links a:hover {
    color: #257b68; 
    text-decoration: underline;
}

.ev-flex, .grant-flex, .te-flex {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-top: 50px;
}

.ev-flex .left {
    width: 35%;
    border-right: 2.5px solid #c6c6c6;
    padding-right: 25px;
}

.ev-flex .right {
    width: 60%;
}

.te-flex .left {
    width: 30%;
    padding-right: 25px;
}

.te-flex .middle {
    width: 32%;
    border-left: 1px solid #c6c6c6;
    border-right: 1px solid #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
    border-top: 2px solid #c6c6c6;
    padding: 30px;
}

.te-flex .right {
    width: 32%;
    border-left: 1px solid #c6c6c6;
    border-right: 1px solid #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
    border-top: 2px solid #c6c6c6;
    padding: 30px;
}

.grant-flex .left {
    width: 48%;
    border-left: 1px solid #c6c6c6;
    border-right: 1px solid #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
    border-top: 2px solid #257b68;
    padding: 15px;
    height: fit-content;
    overflow: auto;
}

.writing-webinar {
    border-left: 1px solid #c6c6c6;
    border-right: 1px solid #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
    border-top: 2px solid #257b68;
    padding: 15px;
    height: fit-content;
    overflow: auto;
}

.grant-flex .right {
    width: 48%;
    border-left: 1px solid #c6c6c6;
    border-right: 1px solid #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
    border-top: 2px solid #257b68;
    padding: 15px;
    height: fit-content;
    overflow: auto;
}

.grant-writing-toggle-div, .grant-review-toggle-div {
    display: none;
}

.close-toggle, .close-review-toggle {
    display: none;
}

.fas {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.backgroud_image {
    width: 100%;
    z-index: -500;
}

.btn-yellow {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 10px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    background-color: #FDD475;
    border-radius: 0;
    font-weight: 700;
    width: 100%;
    max-width: 260px;
    appearance: none;
    -webkit-appearance: none;
}

/*Navigation*/
.nav__list {
    list-style: none;
    margin: auto;
}

.nav-item {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
}

.sticky {
    position: fixed;
    z-index: 200;
    background-color: white;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    padding: 10px 0px 10px 0px;
}

.navMobile-item {
    position: relative;
}

.nav-item:hover {
    cursor: pointer;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    letter-spacing: 1px;
}

a.nav-link,
a.nav-link:hover {
    color: #000000;
}

.mobile-hide {
    display: none;
}

.nav-item::before {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    margin-top: 10px;
    z-index: -1000;
    content: "";
    width: 0px;
    height: 100%;
    border-bottom: 5px solid #fbd044;
}

.nav-item:hover::before {
    transition: .4s width;
    width: 90px;
}

.active::before {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    margin-top: 10px;
    content: "";
    width: 90px;
    height: 100%;
    border-bottom: 5px solid #fbd044;
}

.active {
    font-weight: 700;
}

.nav {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

/*Mobile Navigation CSS*/
.navMobile {
    display: none;
    margin: auto;

}

.navMobile:hover {
    cursor: pointer;
    z-index: 1;
}

.navMobile__list {
    padding-top: 10px;
    height: 0px;
    overflow: hidden;
    transition: .4s height, .4s padding-top;
    z-index: 2;
}

.navMobile-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;

}

.navMobile__ul {
    display: block;
}

.navMobile-item__current {

    padding-bottom: 00px;
    transition: .4s padding-bottom;
}

.navMobile-item:not(:first-child) {
    padding-top: 10px;

}

.navMobile__list .navMobile-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;

}

.mobileClicked {
    height: auto;
    z-index: -2;
}

.navMobile-link {
    text-decoration: none;
    color: #000;
    z-index: 5;
}


.mainTitle,
.sectionSeven {
    padding: 50px 0px 30px 0px;
    text-align: center;

}

.my__container {
    max-width: 1200px;
    margin: auto;
}

h1 {
    font-size: 44px;
}

.nav-item {
    position: relative;
}

.nav-item:hover {
    cursor: pointer;
}

.nav-link {
    color: #000000;
}

.nav-item::before {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    margin-top: 10px;

    content: "";
    width: 0px;
    height: 100%;
    border-bottom: 5px solid #fbd044;
}

.nav-item:hover::before {
    transition: .4s width;
    width: 90px;
}

.active::before {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    margin-top: 10px;

    content: "";
    width: 90px;
    height: 100%;
    border-bottom: 5px solid #fbd044;
}

.active {
    font-weight: 800;
}

.greyLine {
    border-bottom: 1px solid #f0f0f0;
}

.boxShadow {
    -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .1);
         box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .1);
}

.logo {
    padding: 10px 0 10px 0px;
}

.col-md-4 {
    position: relative;
}

#headerText {
    position: absolute;
    top: 35%;
    left: 50%;

}

.fa-plus,
.fa-minus {
    color: black;
    font-size: 30px;
    position: relative;
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: white;
}

.fa-plus:after,
.fa-minus:after {
    content: "";
    height: 50px;
    width: 50px;
    border: 2px solid black;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: absolute;
}



.row {
    padding-left: 5%;
    padding-right: 5%;
}

.col-md-6 {
    margin-top: 6%;
    font-weight: 100;
}

.col6Image {
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
}

.video__container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.headerBorder {
    text-align: center;
    width: 65px;
    border-bottom: 5px solid #fbd044;
    padding-top: 20px;
    margin: 0 auto;
}

.header {
    font-weight: 100;
}

.link {
    text-decoration: underline;
    display: inline-block;
}

.linkColor {
    color: #247965;
    font-weight: 700;
}

a.linkColor,
a,
linkColor:hover {
    color: #247965;
}


.moreInformation {
    margin-top: 20px;
    padding-top: 10px;
}

.moreInformation__button {
    width: 65%;
}

.moreInformation__TextContainer,
.moreInformation__buttonContainer {
    background-color: #eef8f9;
    padding: 30px;
}

.moreInformation__buttonContainer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 25px 10px 20px 30px;
}

.nav__list ul {
    margin: auto !important;
}

.absoluteCenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sectionEight .col-md-12 {
    padding: 0px 0px 0px 0px;
}

/*Accordion CSS*/
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 80%;
    margin: auto;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s max-height;
}

.accordion {
    border-left: 5px solid black;
    color: black;
    margin-top: 20px;
}

.accordion__Top {
    display: flex;
}

.accordion__FirstSentence {
    width: 90%;
}

.accordion__Text {
    width: 80%;
    flex: 5;
}

.accordion__Icon {
    width: 20%;
    flex: 1;
    font-size: 1.75rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordionActive {
    border-left: 5px solid #fdd141;
}

.accordion__mobileFirstSentence {
    display: none;
}

.panel {
    padding: 0 18px;
    background-color: #eee;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-left: 5px solid black;
    width: 80%;
    margin: auto;
}

.panelText {
    width: 80%;
    margin-bottom: 20px;
}

.icon {
    position: relative;
}

.icon::after {
    content: "";
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 3px solid black;
    border-radius: 100%;
}

.col-md-2 {
    position: relative
}

.innerRow {
    padding-left: 15px;
}

.accordionTop:not(:first-child) {
    margin-top: 20px;
}

.accordionTop:last-child {
    margin-bottom: 20px;
}

.card__text__container {
    padding-left: 5%;
    padding-right: 5%;
}

.threeCard__image {
    width: 100%;
}

.card__header {
    color: #535353;
    font-size: 20px;
    padding-top: 20px;
}

.card__container {
    height: 100%;
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.threeCard {
    transition: .2s transform;
}

.threeCard:hover {
    transform: scale(1.1);
}

.sectionEleven {
    margin-top: 40px;
}

.sectionEleven__image {
    width: 75%;

}

.sectionEleven__text {
    display: flex;
    justify-content: left;
    align-items: center;
}

.sectionEleven__Container:nth-child(2) {
    margin-top: 40px;
}

.sectionTwelve {
    margin-top: 40px;
    position: relative;
}

.hero-white-box {
    width: 45%;
    position: absolute;
    background-color: #ffffff;
    top: 10%;
    right: 12%;
    padding: 30px 30px 0 30px;
}

.bottom-teal-box {
    width: 45%;
    position: absolute;
    background-color: #eff9f9;
    top: 10%;
    right: 0;
    padding: 30px;
}

.sectionTwelve__nextStep {
    width: 200px;
    margin-bottom: 30px;
    margin-top: 10px
}

.footer {
    margin-top: 10%;
    color: white;
    
}

.footer__header {
    
    font-weight: 700;
    margin-top: 40px;
}

.footer__list {
    padding: 0;
    text-decoration: none;
    list-style-type: none;
}

.footer__item,
.footer__header {
    margin-top: 20px;
}

.fa_external_link_alt {
    font-size: 16px;
}

.footerTwo {
    padding-top: 20px;
    width: 100%;
    border-top: 2px solid white;
}

.footerTwo__item {
    display: inline-block;
}

.footerTwo__item:not(:first-child)::before {
    content: " | ";
}

.copyright {
    font-size: 12px;
    padding-bottom: 50px;
}

.footer__container {
    width: 100%;
    background-color: #595959;
}

.sticky {
    position: fixed;
    z-index: 200;
    background-color: white;
    top: 0;
    width: 100%;
    padding: 10px 0px 10px 0px;
}

.sticky+.my__container {
    padding-top: 60px;
}

#mobileSentence1,
#mobileSentence2,
#mobileSentence3,
#mobileSentence4 {
    display: none;
}

.fa-angle-right {
    display: none;
}

@media only screen and (max-width: 1024px) {

    .hero-white-box {
        width: 70%;
    }

}

@media only screen and (max-width: 768px) {

    .center {
        text-align: center;
        margin: 0 auto !important;
    }

    .hero-white-box {
        background-color: #f4f4f4;
        padding: 30px;
        width: 95%;
        margin: 0 auto;
        margin-top: -50px;
        position: relative;
        top: 0;
        right: 0;
    }

    .ev-flex, .grant-flex, .te-flex {
        display: block;
    }

    .ev-flex .left {
        width: 100%;
        border-right: none;
        padding-right: 0;
        border-bottom: 2.5px solid #c6c6c6;
        padding-bottom: 25px;
    }

    .ev-flex .right {
        width: 100%;
        padding-top: 40px;
    }

    .yellow-icon {
        float: none !important;
        margin-right: 0 !important;
        width: initial !important;
        margin-bottom: 20px;
        text-align: center;
    }

    .no-marg-left {
        margin-left: 0 !important;
    }

    .pad-top {
        padding-top: 40px;
    }

    .margin-top {
        margin-top: 40px;
    }

    .grant-flex .left {
        width: 100%;
        margin-bottom: 50px;
    }

    .grant-flex .right {
        width: 100%;
    }

    .te-flex .middle {
        width: 100%;
        margin-bottom: 40px;
    }

    .te-flex .right {
        width: 100%;
        
    }

    .ev-flex .left .text-padding, .te-flex .left .text-padding, .te-flex .middle .text-padding, .te-flex .right .text-padding {
        padding: 0;
    }

    .te-flex .left {
        width: 100%;
        padding-right: 0;
    }

    .bottom-teal-box {
        width: 95%;
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto;
        margin-top: -50px;
    }

    .footerTwo {
        border-top: none;
        padding-top: 0;
    }
}

@media (max-width: 770px) {
    #headerText {
        display: none;
    }

    .container {
        padding: 0;
    }

    .accordionLocation {
        display: flex;
        justify-content: flex-end;
        align-items: center;

    }

    .accordion {
        width: 100%;
    }

    .panel {
        width: 100%;
    }

    .mobile-hide {
        display: inline;
    }

    .logo {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo img {
        width: 200px;
        padding-left: 20px;
    }

    .accordionText {
        padding-left: 15px;
    }

    .nav__list {
        display: none;
    }

    .navMobile {
        display: block;
    }

    .nav-item {
        width: 100%;
        padding: 0px 10px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        justify-content: center;
    }

    .my__container {
        width: 100%;
        max-width: 100%;
    }

    .nav__list ul {
        margin: auto !important;
    }

    .row {
        padding-left: 0;
        padding-right: 0;
    }

    .electrify {
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    .centerText {
        text-align: center;
    }

    .moreInformation__buttonContainer {
        display: flex;
        justify-content: center;
        margin-top: -40px;
    }

    .firstSentence {
        display: none;
    }

    #mobileSentence1,
    #mobileSentence2,
    #mobileSentence3,
    #mobileSentence4 {
        display: block;
    }

    .col-md-10 {
        width: 80% !important;
    }

    .text-padding {
        padding-left: 20px;
        padding-right: 20px;
    }

    .col-md-2 {
        width: 20% !important
    }

    .threeCard {
        margin-top: 20px;
        margin-left: 10%;
        margin-right: 10%;
    }

    .threeCard:hover {
        transform: scale(1);
    }

    .sectionEleven__image {
        width: 15%;
        margin-bottom: 10px;
    }

    .sectionEleven .col-md-4 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .sectionEleven__text {
        justify-content: center;
    }

    .sectionEleven__Container:nth-child(2) {
        margin-top: 0px;
    }

    .sectionEleven__Container {
        padding-top: 20px;
        width: 100%;
    }

    .sectionTwelve {
        margin-top: 20vh;
    }

    .sectionTwelve__Apply {
        width: 70%;
        left: 50%;
        top: 0;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .footer__list {
        padding: 0;
        text-decoration: none;
        list-style-type: none;
        text-align: left;
    }

    .footer__header {
        padding-left: 20px;
        text-decoration: none;
        list-style-type: none;
        text-align: left;
        background-color: #000000;
        margin-top: 0px;
        border-bottom: 1px solid grey;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer__item a {
        width: 100%;

        display: block;
        position: relative;
        z-index: 2;
    }

    .fa-angle-right {
        display: inline;
        font-size: 25px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .footer__item .footer__header dl,
    ol,
    ul {
        margin-bottom: 0px;
    }

    .footer__item {
        padding-left: 20px;
        border-bottom: 1px solid grey;
        margin-top: 0;
        padding-top: 20px;
        padding-bottom: 20px;
        position: relative;
    }

    .footerTwo__item {
        display: none;
    }

    .copyright {
        padding-left: 20px;
    }

    .dropdown-toggle::after {
        display: none !important;
    }

    .fa-external-link {
        margin: 2px;

    }
}

@media (max-width: 770px) {

    .accordionLocation {
        padding-right: 30px;
    }

    .card__container {
        max-width: 400px;
        margin: auto;
        height: auto;
    }

    .max80 {
        width: 80%;
        margin: auto;
    }

    .accordion__FirstSentence {
        display: none;
    }

    .accordion__mobileFirstSentence {
        display: inline;
    }

}