/**** VARIABLES ****/
:root {
    --header-spacing-mobile: 85px;
    --header-spacing-desktop: 145px;
    --side-spacing-mobile: 5vw;
    --side-spacing-desktop: 7.2vw;
    --vert-spacing-mobile: 40px;
    --vert-spacing-desktop: 80px;
    /* colors */
    --white: #ffffff;
}

/**** VARIABLES END  ****/

html,
body {
    height: 100%;
    color: #333333;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    background-color: #FFF;
}

.under-sticky-header {
    margin-top: 85px;
}

@media (min-width: 992px) {
    .under-sticky-header {
        margin-top: 145px;
    }
}

/**** GLOBALS ****/

a {
    color: #337ab7;
    text-decoration: none;
}

a.underline {
    text-decoration: underline;
}

a:hover {
    color: #265883;
}

main {
    margin-top: var(--header-spacing-mobile);
}

.box-h2 {
    display: block;
    width: fit-content;
    max-width: 290px;
    margin: auto;
    position: relative;
    margin-bottom: 40px;
}


/* For box depth effect */
.box-h2:after,
.box-h2:before {
    content: '';
    background: #005A8F;
    position: absolute;
}

.box-h2:after {
    width: 100%;
    height: 20px;
    left: 10px;
    bottom: 0;
    transform: translatey(100%) skewx(45deg);
}

.box-h2:before {
    width: 20px;
    height: 100%;
    right: 0;
    transform: translatex(100%) skewy(45deg);
    top: 10px;
}

.box-h2 h2 {
    color: #333;
    font-size: 35px;
    font-style: normal;
    font-weight: 900;
    line-height: 40px;
    background-color: #8EC73D;
    padding: 10px 15px;
    margin: 0;
}

.box-h2 .sub-text {
    font-size: 31px;
    font-style: normal;
    font-weight: 300;
    line-height: 39px;
}

.box-h2.blue h2 {
    background-color: #0083C9;
}

.container {
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: auto;
    background-color: #FFF;
}

.img-full {
    width: 100%;
    height: auto;
}

.full-width-video {
    width: 100%;
    height: auto;
    display: block;
    z-index: 0;
}

@media (min-width: 992px) {
    main {
        margin-top: var(--header-spacing-desktop);
    }

    .box-h2 {
        max-width: none;
        margin-bottom: 80px;
    }

    .box-h2 h2 {
        padding: 25px 60px;
        font-size: 50px;
        line-height: 63px;
    }
}

.alt-h2 {
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 20px;
}

.alt-h2 .pre-h2 {
    display: block;
    font-weight: 300;
    font-size: 20px;
}

@media (min-width: 992px) {
    .alt-h2 {
        font-size: 50px;
    }

    .alt-h2 .pre-h2 {
        font-size: 30px;
    }
}

.btn-link {
    display: inline-block;
    background-color: #FBAD15;
    color: #333333;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    transition: background-color 150ms ease-in-out;
    text-decoration: none;
    padding: 12px 17px;
}

.btn-link:hover {
    cursor: pointer;
    background-color: #da9814;
    color: #333;
}


@media (min-width: 992px) {
    .btn-link {
        font-size: 20px;
    }
}

/**** END GLOBALS ****/

/**** Lightbox ****/
/* LIGHTBOX */

#lightbox {
    height: 100%;
    position: fixed;
    top: -100%;
    transition: top .85s;
    width: 100%;
    z-index: 20;
}

#lightbox>span {
    background-color: rgba(35, 35, 35, .8);
    cursor: pointer;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

#lightbox>span span {
    color: #fff;
    font-size: 3.6em;
    line-height: .4em;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 0;
}

#lightbox div {
    box-shadow: 0 8px 15px 0 #000;
    margin: -120px auto 0;
    max-height: 80%;
    overflow: auto;
    position: relative;
    transform: rotateX(90deg) translateY(-160px);
    transition: .24s;
    width: 88%;
}

#lightbox img {
    display: block;
    width: 100%;
    background: white;
    padding: 15px;
}

#lightbox.on {
    top: 0;
}

#lightbox.on div {
    margin-top: 50px;
    transition: .8s ease-out .32s;
    transform: rotateX(0deg) translateY(0px);
}

.lightbox {
    cursor: pointer;
}

/**** END Lightbox ****/

/* Explore map */
.explore-map {
    display: block;
    overflow: auto;
    position: relative;
}

.explore-map .map-container {
    display: block;
    width: 100%;
    min-width: 800px;
    position: relative;
}

.explore-map .map-container .map-point {
    border: 0;
    position: absolute;
    padding: 0;
    background-color: transparent;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    background-image: url('../assets/images/icons/cone-in-circle.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: filter 150ms ease-in-out;
}

.explore-map .map-container .map-point:hover {
    cursor: pointer;
    filter: brightness(80%);
}

.explore-map .map-point#mp-cave-springs {
    top: 13%;
    left: 8%;
}

.explore-map .map-point#mp-outer-roads {
    top: 60%;
    left: 68%;
}

.explore-map .map-point#mp-zumbehl {
    top: 29%;
    left: 40%;
}

.explore-map .map-point#mp-route-94 {
    top: 56%;
    left: 61%;
}

/* Map modal */
.map-modal .modal-dialog {
    max-width: 900px;
}

.map-modal p {
    font-size: 18px;
    font-weight: 400;
    color: #6E6E6E;
}

.map-modal .modal-header {
    border-bottom: 0;
    align-items: flex-start;
}

.map-modal .modal-content {
    overflow: hidden;
}

.map-modal .modal-title {
    color: #333;
    font-weight: 900;
    font-size: 25px;
    padding-bottom: 5px;
    border-bottom: 10px solid #8EC73D;
    margin-bottom: 0px;
}

.map-modal .modal-body {
    max-height: 65vh;
    overflow: auto;
}

@media (min-width: 992px) {
    .map-modal p {
        font-size: 20px;
    } 

    .map-modal .modal-title {
        font-size: 50px;
    }

    .map-modal .modal-header, .map-modal .modal-body {
        padding: 30px;
    }
}

/* Homenav */

.home-nav .project-logo {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    height: 60px;
    width: auto;
}

.home-nav .sidenav-cta {
    position: fixed;
    top: 10px;
    right: 5px;
    z-index: 10;
    display: inline-block;
    text-decoration: none;
    color: #FFF;
    padding: 5px;
    transition: all 0.25s ease-in-out;
}

.home-nav .sidenav-cta img {
    width: 30px;
    height: auto;
}

.home-nav .sidenav-cta:hover {
    color: #FFF;
    background-color: rgba(196, 196, 196, 0.75);
}


@media (min-width: 992px) {
    .home-nav .project-logo {
        height: 114px;
        width: auto;
    }


    .home-nav .sidenav-cta {
        padding: 5px;
    }

    .home-nav .sidenav-cta img {
        width: 50px;
        height: auto;
    }

}

/* End Homenav */

/* Sidenav */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    background-color: #0083C9;
    color: #FFF;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;

    text-align: center;
}

.sidenav a {
    display: inline-block;
    color: #FFF;
    font-family: Source Sans Pro;
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: center;
    transition: 0.25s ease-in-out;
    text-decoration: none;
}

.sidenav a:hover {
    color: #fff;
    background-color: #8EC73D;
}

.sidenav .sidenav-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 40px;
    line-height: 30px;
}

.sidenav.open {
    width: 250px;
}

.sidenav .link-list {
    padding: 0;
}

.sidenav .link-list li {
    position: relative;
    text-align: center;
    list-style: none;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.sidenav .link-list li a {
    padding: 0 10px;
}

.sidenav .link-list li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -50px;
    display: block;
    width: 100px;
    height: 1px;
    background-color: #FBAD15;
}

@media (min-width: 992px) {}

/* End Sidenav */

/* ------------- */

/* Header */

.header {
    position: fixed;
    z-index: 10;
    top: 0;
    width: 100%;
    height: 85px;
    overflow: hidden;
    background-color: white;
    padding: 15px var(--side-spacing-mobile);
    border-bottom: 4px solid #333;
}

.header .flex-row {
    display: flex;
    justify-content: space-between;
}

.header .desktop-nav {
    display: none;
}

.header .desktop-nav .link-list {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header .desktop-nav .link-list li {
    list-style: none;
    padding: 0 10px;
}

.header .desktop-nav .link-list li a {
    padding: 0 10px;
    color: #333;
    font-weight: 800;
    text-transform: uppercase !important;
    display: flex;
    align-items: center;
    border-top: 4px solid transparent;
    font-size: 16px;
    text-decoration: none;
    position: relative;
    transition: 0.25s ease-in-out;
}

.header .desktop-nav .link-list li a:after {
    position: absolute;
    top: -50px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #0083C9;
    height: 3px;
    transition: 0.25s ease-in-out;
}

.header .desktop-nav .link-list li a:hover:after {
    width: 100%;
}


.header .mobile-nav {
    display: block;
    width: 15%;
}

.header .mobile-nav .sidenav-cta {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .mobile-nav .sidenav-cta span {
    left: -9999px;
    position: absolute;
}

.header .mobile-nav .sidenav-cta img {
    width: 100%;
    max-width: 40px;
    height: auto;
}

.header .main-project-logo {
    width: 15%;
}

.header .main-project-logo .project-logo {
    width: 100%;
    height: auto;
    max-width: 52px;
}

.header .social-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 45%;
    max-width: 200px;
    height: 40px;
    background-color: #0083C9;
    border-radius: 10px;
    margin-top: auto;
    margin-bottom: auto;
}

.header .social-links a {
    background-color: #0083C9;
    /* border: 1px solid #78be21; */
    width: 20%;
    max-width: 45px;
    border-radius: 19%;
    color: #fff;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 1.2vw;
    height: 100%;
    line-height: 60px;
    padding: 3%;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: 0.25s ease-in-out;
}


.header .social-links a:hover {
    background-color: #aace86;
}

.header .social-links a i {
    font-size: 20px;
}

.header .social-links a span {
    position: absolute;
    right: -9999px;
    top: -9999px;
}

.header .secondary-project-logo {
    width: 15%;
    max-width: 100px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.header .secondary-project-logo .gg-logo {
    width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    .header {
        padding: 15px var(--side-spacing-desktop);
        height: 145px;
    }

    .header .desktop-nav {
        display: block;
    }

    .header .mobile-nav {
        display: none;
    }

    .header .main-project-logo .project-logo {
        max-width: 95px;
    }

    .header .main-project-logo .project-logo img {
        width: 100%;
    }

    .header .main-project-logo {
        width: 10%;
    }

    .header .secondary-project-logo {
        width: 10%;
    }

    .header .social-links {
        width: 15%;
    }
}

/* END Header */

.award {
    display: block;
    background-color: #fff;
    border-top: solid orange 8px;
    border-bottom: solid orange 8px;
    width: 65%;
    margin: 55px auto 60px;
    padding: 25px;
}

@media (max-width: 640px) {
    .award {
        width: 85%;
    }
}

.award p {
    font-size: 18px;
}

.award img {
    width: 25%;
    padding-bottom: 5px;
    border-bottom: 5px orange solid;
}

.award a {
    background-color: orange;
    padding: 6px 8px;
    color: #000;
    font-weight: 700;
}

.award a:hover {
    background-color: #8EC73D;
    transition: 0.5s all;
}

.award .traffic-impacts {
    margin-top: 12px;
}

.award .traffic-impacts a {
    background: #fff;
    color: #ae2500;
    font-size: 1.3em;
    padding: 0;
}

.award .traffic-impacts a:hover {
    color: #811b00;
}

.award .traffic-impacts>span {
    display: block;
    height: 56px;
    line-height: 56px;
    left: 16px;
    margin-bottom: 28px;
    position: relative;
    text-align: center;
    vertical-align: middle;
    width: 56px;
}

.award .traffic-impacts>span>span {
    font-size: 2.8em;
    font-weight: 700;
    position: relative;
}

.award .traffic-impacts>span:before {
    background: orange;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    transform: rotate(45deg);
    width: 100%;
}

/* Footer */
.footer {
    background-color: rgba(231, 231, 231, .5);
    color: #333;
    padding: 30px var(--side-spacing-mobile);
}

.footer img {
    width: 25%;
    margin-bottom: 20px;
}

.footer p,
.footer a,
.footer .fb-share-button {
    margin-bottom: 15px;
}

.footer .fb-share-button {
    display: block;
}

.footer a {
    color: #0d4e85;
    text-decoration: none;
}

@media (min-width: 992px) {
    .footer {
        padding: 30px var(--side-spacing-desktop);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer img {
        width: 10%;
        margin-bottom: 0px;
    }

    .footer p,
    .footer a,
    .footer .fb-share-button {
        margin-bottom: 0px;
    }

    .footer .fb-share-button {
        display: inline;
    }
}

/* END Footer */

/* Hero */

.hero {
    padding: var(--vert-spacing-mobile) var(--side-spacing-mobile);
    background-image: url('../assets/images/blue-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .box-h2 {
    margin: 0;
}

@media (min-width: 992px) {
    .hero {
        padding: var(--vert-spacing-desktop) var(--side-spacing-desktop);
    }
}

/* Video Hero */

.video-hero h1 {
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 40px;
    margin-bottom: 20px;
}

.video-hero h1 .highlight {
    margin-top: 5px;
    display: inline-block;
    line-height: 30px;
    padding: 0px 5px 5px;
}

.video-hero h1 .green {
    background-color: #8EC73D;
    color: #333;
}

.video-hero h1 .black {
    background-color: #333333;
    color: #FFF;
}

.video-hero h1 .blue {
    background-color: #0083C9;
    color: #FFF;
}

.video-hero .copy-column {
    background: rgba(142, 199, 61, 0.12);
    padding-top: 60px;
    padding-bottom: 30px;
    padding-left: var(--side-spacing-mobile);
    padding-right: var(--side-spacing-mobile);

    display: flex;
}


.video-hero .copy-column .copy-content {
    margin-top: auto;
}

.video-hero .copy-column p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.video-hero .video-column {
    height: 100%;
    display: flex;
    /* align-items: flex-end; */
    background: rgba(142, 199, 61, 0.12);
}

.video-hero .video-column .video {
    width: 100%;
    height: auto;
    display: block;
    z-index: 0;
}

@media (min-width: 992px) {

    .video-hero h1 {
        font-size: 50px;
        line-height: 63px;
    }

    .video-hero h1 .highlight {
        margin-top: 8px;
        line-height: 50px;
        padding: 0px 5px 10px;
    }

    .video-hero .copy-column {
        height: 100%;
        background: rgba(142, 199, 61, 0.12);
        padding-top: 20px;
        padding-bottom: 45px;
        padding-left: calc((var(--side-spacing-desktop)) / 2);
        padding-right: calc((var(--side-spacing-desktop)) / 2);
    }

    .video-hero .copy-column p {
        font-size: 22px;
        line-height: 34px;
    }
}

/* END Video Hero */

/* White Section */

.white-section {
    background-color: #FFF;
    padding: var(--vert-spacing-mobile) var(--side-spacing-mobile);
}

.white-section p, .white-section li {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.white-section li {
    margin-bottom: 10px;
}

.white-section .img-full {
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .white-section {
        padding: var(--vert-spacing-desktop) var(--side-spacing-desktop);
    }

    .white-section p, .white-section li {
        font-size: 22px;
        line-height: 34px;
    }
}

/* END White Section */

/* Triptic Row */
.triptic-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.triptic-row .triptic {
    text-align: center;
    margin-bottom: 30px;
}

.triptic-row .triptic img {
    max-width: 40%;
    margin-bottom: 20px;
}

.triptic-row .triptic h3 {
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: 48px;
    color: #333333;
    margin-bottom: 5px;
}

.triptic-row .triptic p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}

@media (min-width: 992px) {
    .triptic-row .triptic {
        width: calc(100% / 3);
        max-width: 312px;
        padding: 0 1%;
        margin-bottom: 0;
    }

    .triptic-row .triptic img {
        max-width: 312px;
    }

    .triptic-row .triptic h3 {
        font-size: 50px;
        line-height: 63px;
    }
}

/* END Triptic Row*/

/* Blue Section */

.blue-section {
    background-color: #FFF;
    padding-top: 60px;
}

.blue-section .blue-content {
    background-color: #0083C9;
    padding-top: 1px;
    padding-bottom: var(--vert-spacing-mobile);
    padding-left: var(--side-spacing-mobile);
    padding-right: var(--side-spacing-mobile);
}

.blue-section .blue-content.top-padding {
    padding-top: var(--vert-spacing-mobile);
}

.blue-section .blue-content.top-padding {
    padding-top: var(--vert-spacing-mobile);
}

.blue-section .blue-content .box-h2 {
    margin-top: -40px;
    margin-bottom: 40px;
}

.blue-section .blue-content .number-div {
    display: flex;
    color: #FFF;
    margin-bottom: 25px;
}

.blue-section .blue-content .number-div:last-child {
    margin-bottom: 0;
}

.blue-section .blue-content .number-div .number {
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: 50px;
    border: 3px solid #FFF;
    text-align: center;
    height: 60px;
    padding: 0px 17px;
    border-radius: 40px;
    margin-right: 25px;
}

.blue-section .blue-content .number-div .list-copy {
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
}

.blue-section .blue-content .number-div .list-copy img {
    margin-top: 20px;
}

.blue-section .blue-content .number-div .list-sub-copy {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.blue-section .blue-content h3 {
    color: #FFF;
}

.blue-section .blue-content p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.blue-section .blue-content a {
    color: #FFF !important;
} 

@media (min-width: 992px) {
    .blue-section {
        padding-top: 120px;
    }

    .blue-section .blue-content {
        padding-bottom: var(--vert-spacing-desktop);
        padding-left: var(--side-spacing-desktop);
        padding-right: var(--side-spacing-desktop);
    }

    .blue-section .blue-content.top-padding {
        padding-top: var(--vert-spacing-desktop);
    }

    .blue-section .blue-content p {
        font-size: 22px;
        line-height: 34px;
    }

    .blue-section .blue-content.top-padding {
        padding-top: var(--vert-spacing-desktop);
    }

    .blue-section .blue-content .number-div {
        margin-bottom: 50px;
    }

    .blue-section .blue-content .box-h2 {
        margin-top: -60px;
        margin-bottom: 60px;
    }

    .blue-section .blue-content .two-column-row>div:first-child {
        padding-right: 4%;
    }

    .blue-section .blue-content .two-column-row>div:last-child {
        padding-left: 4%;
    }

    .blue-section .blue-content .number-div .list-sub-copy {
        font-size: 22px;
        line-height: 34px;
    }

    .blue-section p.big {
        font-size: 25px;
    }
}

/* END Blue Section */

/* Icon and Heading Subblock */

.icon-and-heading {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.icon-and-heading .icon {
    height: 86px;
    width: auto;
    margin-right: 20px;
}

.icon-and-heading .heading,
.sub-section-heading {
    color: #333333;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    padding-bottom: 5px;
    border-bottom: 5px solid #333333;
    text-transform: uppercase;
}

.sub-section-heading {
    display: inline-block;
    margin-bottom: 20px;
}

.icon-and-heading .heading.green,
.sub-section-heading.green {
    border-color: #8EC73D;
}

.icon-and-heading .heading.blue,
.sub-section-heading.blue {
    border-color: #0083C9;
}

@media (min-width: 992px) {}


/* END Icon and Heading Subblock */

/* Green Section */
.green-section {
    background-color: #8EC73D;
    padding-top: 80px;
    padding-bottom: var(--vert-spacing-mobile);
    padding-left: calc((var(--side-spacing-mobile)));
    padding-right: calc((var(--side-spacing-mobile)));
}

.green-section p {
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

.green-section .content {
    background-color: #FFF;
    padding-top: 1px;
    padding-bottom: (var(--vert-spacing-mobile));
    padding-left: calc((var(--side-spacing-mobile)));
    padding-right: calc((var(--side-spacing-mobile)));
}

.green-section .content .box-h2 {
    margin-top: -40px;
}

.green-section .content p {
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    line-height: 28px;
}

@media (min-width: 992px) {
    .green-section {
        padding-top: 100px;
        padding-bottom: var(--vert-spacing-desktop);
        padding-left: calc((var(--side-spacing-desktop)/2));
        padding-right: calc((var(--side-spacing-desktop)/2));
    }

    .green-section .content {
        padding-bottom: var(--vert-spacing-desktop);
        padding-left: calc((var(--side-spacing-desktop)));
        padding-right: calc((var(--side-spacing-desktop)));
    }

    .green-section .content .box-h2 {
        margin-top: -60px;
    }

    .green-section p {
        font-size: 22px;
    }


}

/* END Green Section */


/* Light Green Section */
.ltgreen-section {
    background-color: rgba(142, 199, 61, 0.12);
    padding-top: 80px;
    padding-top: 1px;
    padding-bottom: var(--vert-spacing-mobile);
    padding-left: calc((var(--side-spacing-mobile)/2));
    padding-right: calc((var(--side-spacing-mobile)/2));
}

.ltgreen-section .box-h2 {
    margin-top: -40px;
    margin-bottom: 40px;
}

.ltgreen-section .content {
    background-color: #FFF;
    padding-top: 0px;
    padding-bottom: (var(--vert-spacing-mobile));
    padding-left: calc((var(--side-spacing-mobile)));
    padding-right: calc((var(--side-spacing-mobile)));
}

.ltgreen-section .content .box-h2 {
    margin-top: -40px;
}

.ltgreen-section h3 {
    font-weight: 700;
    text-transform: uppercase;
}


@media (min-width: 992px) {
    .ltgreen-section {
        padding-bottom: var(--vert-spacing-desktop);
        padding-left: calc((var(--side-spacing-desktop)));
        padding-right: calc((var(--side-spacing-desktop)));
    }

    .ltgreen-section .box-h2 {
        margin-top: -70px;
        margin-bottom: 90px;
    }

    .ltgreen-section .content {
        padding-bottom: var(--vert-spacing-desktop);
        padding-left: calc((var(--side-spacing-desktop)));
        padding-right: calc((var(--side-spacing-desktop)));
    }

    .ltgreen-section .content .box-h2 {
        margin-top: -60px;
    }

    .ltgreen-section {
        font-size: 22px;
        line-height: 34px;
    }
}

/* END Light Green Section */

/* Light Green Section */
.ltblue-section {
    background-color: #E6F3FA;
    padding-top: var(--vert-spacing-mobile);
    padding-bottom: var(--vert-spacing-mobile);
    padding-left: calc((var(--side-spacing-mobile)/2));
    padding-right: calc((var(--side-spacing-mobile)/2));
}

.ltblue-section .box-h2 {
    margin-top: -40px;
    margin-bottom: 40px;
}

.ltblue-section .content {
    background-color: #FFF;
    padding-top: 0px;
    padding-bottom: (var(--vert-spacing-mobile));
    padding-left: calc((var(--side-spacing-mobile)));
    padding-right: calc((var(--side-spacing-mobile)));
}

.ltblue-section .content .box-h2 {
    margin-top: -40px;
}

.ltblue-section h3 {
    font-weight: 700;
    text-transform: uppercase;
}


@media (min-width: 992px) {
    .ltblue-section {
        padding-top: var(--vert-spacing-desktop);
        padding-bottom: var(--vert-spacing-desktop);
        padding-left: calc((var(--side-spacing-desktop)));
        padding-right: calc((var(--side-spacing-desktop)));
    }

    .ltblue-section .box-h2 {
        margin-top: -70px;
        margin-bottom: 90px;
    }

    .ltblue-section .content {
        padding-bottom: var(--vert-spacing-desktop);
        padding-left: calc((var(--side-spacing-desktop)));
        padding-right: calc((var(--side-spacing-desktop)));
    }

    .ltblue-section .content .box-h2 {
        margin-top: -60px;
    }

    .ltblue-section {
        font-size: 22px;
        line-height: 34px;
    }
}

/* END Light Green Section */

/* Dropdown Squares */
.dropdown-squares {
    display: flex;
    flex-wrap: wrap;
}

.dropdown-squares .square-container {
    width: 100%;
    margin-bottom: 50px;
}

.dropdown-squares .square-container .square {
    height: 81vw;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.dropdown-squares .square-container .square .square-img {
    width: 100%;
    height: 80%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dropdown-squares .square-container .square .square-copy {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 80%;
    transition: 0.5s ease-in-out;
}

.dropdown-squares .square-container .square:hover .square-copy.open {
    top: 0;
    overflow: auto;
}

.dropdown-squares .square-container .square .square-copy .heading {
    height: 20%;
    background-color: #005A8F;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    padding: 5px;
    margin: 0;
    margin-bottom: 0;
}

.dropdown-squares .square-container .square .square-copy .copy {
    background-color: #BFE1F5;
    padding: 20px;
    min-height: 80%;
}

.dropdown-squares .square-container .square .square-copy .copy h4 {
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    margin-bottom: 5px;
}

.dropdown-squares .square-container .square .square-copy .copy p {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    margin-bottom: 10px;
}

.dropdown-squares .square-container .square .square-copy .copy ul li {
    font-size: 12px;
    line-height: 14px;
}

@media (min-width: 992px) {
    .dropdown-squares .square-container {
        width: 50%;
    }

    .dropdown-squares .square-container:nth-of-type(odd) {
        padding-right: 10px;
    }

    .dropdown-squares .square-container:nth-of-type(even) {
        padding-left: 10px;
    }

    .dropdown-squares .square-container .square {
        height: 38vw;
    }

    .dropdown-squares .square-container .square .square-copy .copy h4 {
        font-size: 26px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .dropdown-squares .square-container .square .square-copy .copy p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .dropdown-squares .square-container .square .square-copy .copy ul li {
        font-size: 15px;
        line-height: 22px;
    }

    .dropdown-squares .square-container .square:hover .square-copy,
    .dropdown-squares .square-container .square:hover .square-copy.open {
        top: 0;
        overflow: auto;
    }

    .dropdown-squares .square-container .square .square-copy .heading {
        font-size: 26px;
        line-height: 28px;
        padding: 10px;
    }

}

/* Timeline Section */

.timeline-section {
    padding-top: 80px;
    /* border-bottom: 70px solid #0083C9; */
}

.timeline-section .timeline {
    width: 100%;
    margin: 0px auto 0px;
    position: relative;
    padding: 1px var(--side-spacing-mobile) var(--vert-spacing-mobile) var(--side-spacing-mobile);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background-image: url('../assets/images/timeline-bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.timeline-section .timeline .box-h2 {
    margin-top: -40px;
}

.timeline-section .timeline .timeline-item:after,
.timeline-section .timeline .timeline-item:before {
    content: "";
    display: block;
    width: 100%;
    clear: both;
}

.timeline-section .timeline:after {
    content: "";
    clear: both;
    display: table;
    width: 100%;
}

.timeline-section .timeline .timeline-item {
    margin-bottom: 5px;
    position: relative;
}

.timeline-section .timeline .timeline-item .timeline-icon {
    content: url("../images/milestone_icon.svg");
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 50%;
    overflow: hidden;
    margin-left: -45.8px;
}


.timeline-section .timeline .timeline-item .timeline-icon.icon-right {
    transform: scaleX(-1) !important;
    margin-left: 1px;

}

.timeline-section .timeline .timeline-item .timeline-icon svg {
    position: relative;
    top: 14px;
    left: 14px;
}

.timeline-section .timeline .timeline-item .timeline-content {
    width: 45%;
    background: #fff;
    padding: 20px 20px 10px 20px;
}

.timeline-section .timeline .timeline-item .timeline-content h2 {
    padding: 5px;
    width: fit-content;
    border-bottom: 2px solid #AAA;
    color: #000;
    font-weight: bold;
    margin: -20px -20px 0 0px;
    font-size: 1.2em;
    text-transform: uppercase;
}

.timeline-section .timeline .timeline-item .timeline-content h2.timeline-complete {
    border-bottom: 2px solid #16A765;
}

.timeline-section .timeline .timeline-content p {
    line-height: .8em;
    font-size: 1.3em;
    margin: 10px 0 4px;
}

.timeline-section .timeline .timeline-content p:first-of-type {
    font-weight: 800;
}

.timeline-section .timeline .timeline-content p:last-of-type {
    padding-bottom: 20px;
    border-bottom: 1px solid #C2C2C2;
}

.timeline-section .timeline .timeline-item .timeline-content.right {
    float: right;
}

.timeline-section .timeline .new-timeline {
    margin: 50px auto 0px;
    width: 100%;
    max-width: 700px;
    border-left: 2px solid #003F61;
    padding: 0 0 0 30px;
    position: relative;
}

.timeline-section .timeline .new-timeline p {
    background-color: #FFF;
    padding: 10px;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #003F61;
    /* background-color: rgba(0, 131, 201, .03); */
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    line-height: 1.7;
    position: relative;
}

.timeline-section .timeline .new-timeline p span.year {
    background-color: #005c8d;
    color: #fff;
    border-radius: 6px;
    padding: 2px 6px;
}

.timeline-section .timeline .new-timeline:before {
    content: "";
    width: 4px;
    height: 100%;
    background: #0090da;
    left: 50%;
    top: 0;
    position: absolute;
}

.timeline-section .timeline .new-timeline p:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 15%;
    background-color: #003F61;
    border: 3px solid #003F61;
    position: absolute;
    top: 10px;
    left: -42px;
}

.timeline-section .timeline .new-timeline .small {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.timeline-section .timeline .new-timeline .small a {
    text-decoration: underline;
}

.timeline-section .timeline .new-timeline .blue {
    color: #005c8d;
}

.timeline-section .timeline .new-timeline p.incomplete:before {
    background-color: #fff;
}

@media (min-width: 992px) {
    .timeline-section {
        padding-top: 175px;
        /* border-bottom: 140px solid #0083C9; */
    }

    .timeline-section .timeline {
        padding: 1px var(--side-spacing-desktop) var(--vert-spacing-desktop) var(--side-spacing-desktop);
    }

    .timeline-section .timeline .box-h2 {
        margin-top: -80px;
    }
}

/* END Timeline Section */


/* FAQ */

.faq-section {
    padding: var(--vert-spacing-mobile) var(--side-spacing-mobile);
}

#faq-accordion .faq-question {
    display: block;
    border-bottom: 2px solid lightgrey;
    ;
    color: #003F61;
    font-size: 20px;
    padding: 15px 25% 15px var(--side-spacing-mobile);
    /* padding-right: 30px; */
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s ease-in-out;
    position: relative;
    text-decoration: none;
}

#faq-accordion .faq-question::after {
    content: "-";
    font-size: 25px;
    position: absolute;
    right: 0;
    margin-top: 2px;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #0083C9;
    color: #fff;
    padding: 0px 20px;
    padding-top: 3px;
    height: 45px;
    text-align: center;
    border-radius: 7px;
    width: 53px;

}

#faq-accordion .faq-question.collapsed::after {
    content: "+";
    font-size: 25px;
    width: auto;
}

#faq-accordion p {
    padding: 20px;
    font-size: 18px;
    margin-bottom: 0;
}

#faq-accordion li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-right: 20px;
}

@media (min-width: 992px) {
    .faq-section {
        padding: var(--vert-spacing-desktop) var(--side-spacing-desktop);
    }

    #faq-accordion .faq-question {
        font-size: 25px;
        padding: 25px 90px 25px 0;
    }

    #faq-accordion p {
        padding-right: 90px;
    }
}

/* END FAQ */

/* GLORYAH IMPORTS (FOR SAKE OF TIME CRUNCH) */

h3.subheader {
    background-color: rgba(231, 231, 231, .5);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100%;
    padding: 15px;
    border-left: 6px solid #0083C9;

    font-size: 1.5rem;
    color: #003F61;
    font-weight: 700;
    margin-bottom: 40px;
}

.letter-content {
    margin-top: 40px;
    padding: 0px 6% !important;
}

.letter-goals {
    /* background: rgb(236, 236, 236); */
    margin: 10px 10px;
    margin-bottom: 0;
}

.letter-goals ol li {
    font-weight: 600;
    font-size: 18px;
}

ol.goal-list {
    list-style: none;
    counter-reset: my-awesome-counter;
    margin: 0 !important;
    padding-inline-start: 0px;
    position: relative;

}

ol.goal-list li {
    counter-increment: my-awesome-counter;
    font-size: 22px;
    font-weight: 500;
    line-height: 35px;
    padding-right: 10px;
}

ol.goal-list li::before {
    content: counter(my-awesome-counter) ". ";
    color: #0083C9;
    /* background-color: #0083C9; */
    font-weight: bold;
}

p.paused {
    font-size: 1.2em;
    margin-top: 0px;
    background-color: #E43333;
    border-left: 6px solid #9c2222;
    padding: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
    color: #fff;
}

.news-paused {
    width: 100% !important;
}

.announcement {
    display: flex;
}

.announcement p {
    display: inline-block;
}

.announcement img {
    vertical-align: top;
    margin-right: 5px;
}

.press {
    padding-right: 50px;
}

.press button {
    border: none;
    background-color: #0083C9;
    padding: 15px;
    margin-top: 25px;
}

.press button a {
    color: white;
    font-weight: bold
}

.press button:hover {
    border-bottom: solid 3px #8EC73D;
    transition: 0.5s all;
}

.news {
    background-color: #f2f2f2;
    margin: 0;
    padding: 15px;
}

a.register {
    display: block;
    width: 25%;
    text-align: center;
    background-color: #0083C9;
    padding: 8px 16px;
    border-radius: 2px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: bold;
}

a.register:hover {
    background-color: #265883;
    transition: 0.5s all;
}

@media (min-width: 992px) {
    .letter-content {
        padding: 0 12% !important;
    }

    .letter-goals ol li {
        font-weight: 600;
        font-size: 20px;
    }

    h3.subheader {
        width: 60%;
    }

    p.paused {
        width: 15%;
    }
}

#meeting {
    margin-top: 50px;
}

#meeting.green-section {
    padding: 25px 7.5%
}

#meeting.green-section h3 {
    color: white;
    font-weight: 700;
    border-bottom: solid 4px #337ab7
}

#meeting.green-section p {
    color: white;
}

#rfq img {
    width: 2%;
    margin-left: 5px;
}

#rfq ul li {
    font-size: 18px;
    padding-bottom: 5px;
}

.green-doc {
    margin-top: 15px;
}

.green-doc img {
    width: 2%;
    margin-left: 5px;
}


.construction-sign-container {
    position: relative;
    overflow: hidden;
}

.construction-sign-container .construction-sign {
    background: #F8AD38;
    display: block;
    position: absolute;
    width: 250px;
    height: 250px;
    margin-top: 50px;
    top: 3px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: 1;
    padding: 8px;

}

.construction-sign-container .construction-sign .inner {
    border: 8px solid #000;
}

.construction-sign-container .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    height: 360px;
    width: 200px;
    max-width: 100%;
    z-index: 5;
    text-align: center;
}

.construction-sign-container .content h3 {
    text-transform: uppercase;
    font-weight: bold;
}

.construction-sign-container .content p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

.construction-sign-container .content * {
    z-index: 5;
}



.construction-sign-container .construction-sign .inner {
    width: 100%;
    height: 100%;
}


@media (min-width: 992px) {
    .construction-sign-container .construction-sign {
        width: 300px;
        height: 300px;
        margin-top: 60px;
    }


    .construction-sign-container .content {
        height: 430px;
        width: 430px;
        padding: 5px 100px;
    }

    .construction-sign-container .content p {
        font-size: 20px;
        line-height: 1.5;
        font-weight: 600;
    }


}


.calendar-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.calendar-row .calendar-col {
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    margin-bottom: 50px;
}


.calendar-row .calendar-container {
    display: block;
    width: 300px;
    max-width: 100%;
    height: 100%;
    max-width: 100%;
    min-height: 300px;
    background-color: #FFF;
    border-radius: 20px;
    margin-top: 20px;
    box-shadow: 2px 2px 8px #000;
}

@media (min-width: 992px) {
    .calendar-row .calendar-container {
        width: 320px;
    }
}

.calendar-row .calendar-container p {
    color: #000;
    font-size: 18px;
}

.calendar-row .calendar-container li {
    color: #000;
    font-size: 16px;
}

.calendar-row .calendar-container .calendar-top {
    position: relative;
    background-color: #8EC73D;
    padding: 20px;
    padding-top: 50px;
    border-radius: 20px 20px 0 0;
}

.calendar-row .calendar-container .calendar-top.closures, 
.calendar-row .calendar-col[closures="true"] .calendar-top  {
    background-color: #FBAD15;
}

.calendar-row .calendar-container .calendar-top h4 {
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}

.calendar-row .calendar-container .calendar-top .ring-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.calendar-row .calendar-container .calendar-top .ring-container .ring {
    position: relative;
    display: inline-block;
    background-color: #FFF;
    width: 35px;
    height: 35px;
    border: 2px solid #000;
    border-radius: 100%;
    margin-top: 5px;
}

.calendar-row .calendar-container .calendar-top .ring-container .ring::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -25px;
    transform: translateX(-50%);
    background-color: #000;
    width: 18px;
    height: 50px;
    border-radius: 20px;

}

.calendar-row .calendar-container .calendar-top .ring-container .ring-1 {
    margin-left: 40px;
}

.calendar-row .calendar-container .calendar-top .ring-container .ring-2 {
    margin-right: 40px;
}

.calendar-row .calendar-container .calendar-content {
    padding: 15px 20px;
}


.video-cta {
    padding-left: var(--side-spacing-mobile);
    padding-right: var(--side-spacing-mobile);
    padding-bottom: 25px;
    transition: filter 300ms ease-in-out;
}

.video-cta:hover {
    filter: brightness(80%);
}

.video-cta img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .video-cta {
        padding-top: 50px;
        padding-left: 0;
        padding-right: calc(var(--side-spacing-desktop)/2);
        padding-bottom: 45px;
    }

    .video-cta p {
        font-size: 20px;
    }
}

.alert-banner {
    padding: 30px var(--side-spacing-mobile);
    background-color: #FBAD15;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-banner .icon {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

.alert-banner p {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0;
}


.alert-banner a {
    color: #333;
    text-decoration: underline;
}

@media (min-width: 992px) {
    .alert-banner {
        padding: 30px var(--side-spacing-desktop);
    }
    .alert-banner p {
        font-size: 25px;
    }
}