/**** VARIABLES ****/
:root {
    --side-spacing-mobile: 25px;
    --side-spacing-desktop: 50px;
    --vert-spacing-mobile: 50px;
    --vert-spacing-desktop: 100px;

    /* colors */
    --white: #ffffff;
    --black: #000000;
    --mine-shaft: #333333;
    --concrete: #F2F2F2;
    --aqua-haze: #EBF1F4;
    --dark-tan: #751113;
    --calypso: #2E6B8D;
    --lightning-yellow: #FDBA17;
    --blaze-orange: #FF6105;

    --header-height-desktop: 152px;
}

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

html,
body {
    height: 100%;
    color: #000;
    font-family: open-sans, sans-serif;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    background-color: var(--white);
    scroll-padding-top: 152px;
}

.container {
    max-width: none;
    padding: 0;
    overflow: hidden;
}

/****  ****/
/**** END  ****/

/**** GLOBALS ****/

h2 {
    position: relative;
    font-size: 2em;
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: 0em;
    text-align: left;
    text-transform: uppercase;

}

h2.garnished {
    padding-top: 30px;
}

h2.garnished::after {
    content: "";
    width: 150px;
    height: 15px;
    background: linear-gradient(90deg, var(--lightning-yellow) 0%, var(--blaze-orange) 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
}

p {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 15px;
}

ul li {
    font-size: 1em;
    line-height: 1.5;
    margin-bottom: 15px;
}

.date {
    font-family: open-sans-condensed, sans-serif;
    font-weight: 300;
    font-size: 1.875em;
    line-height: 1.5;
    color: var(--blaze-orange);
    margin-bottom: 8px;
}


/* Needs to be bold for ada contrast compliance */
.link {
    color: var(--blaze-orange);
    text-decoration: underline;
    transition: filter 300ms;
    font-weight: 600;
}

a.undecorated {
    text-decoration: none;
}

.link:hover {
    color: var(--blaze-orange);
    filter: brightness(80%);
}

.btn-link {
    display: inline-block;
    background-color: var(--blaze-orange);
    color: var(--white);
    font-size: 1.25em;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
    text-align: center;
    padding: 15px 30px;
    text-decoration: none;
    transition: filter 300ms;
    border-radius: 6px;
}

.btn-link:hover {
    filter: brightness(80%);
    color: var(--white);
    cursor: pointer;
}

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

.content-wrapper {
    display: block;
    margin: 0 auto;
    max-width: 1200px;

}

#page-top .content-wrapper {

    max-width: 1200px;
}

#page-top .content-wrapper p {
    /*background-color: rgba(0, 0, 0, 0.4);*/
    border-radius: 40px;
    padding: 15px 50px
}

@media (min-width: 992px) {
    h2 {
        font-size: 2.5em;
        margin-bottom: 30px;
    }

    h2.garnished {
        padding-top: 40px;
    }

    h2.garnished::after {
        width: 207px;
        height: 21px;
    }

    p {
        font-size: 1.1em;
        margin-bottom: 20px;
    }

    .btn-link {
        padding: 15px 60px;
    }
}

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

/* HEADER */
.header {
    height: auto;
    position: fixed;
    display: block;
    width: 100%;
    background-color: var(--calypso);
    padding: 25px;
    color: var(--white);
    z-index: 100;
}

.header .flex-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-self: center;
}

.header .project-logos {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
}

.header .project-logos .logo {
    height: 20px;
    width: auto;
    margin: 0 10px;
    transition: 300ms;
}

.header .project-logos .logo:hover {
    filter: brightness(80%);
}

.header .nav {
    flex: 1;
    align-items: center;
    justify-content: center;
}

.header .nav .nav-link {
    color: var(--white);
    font-family: open-sans-condensed, sans-serif;
    font-size: 0.875em;
    line-height: 1.5;
    font-weight: 300;
    padding: 0;
    margin: 0 10px;
    transition: filter 300ms;
}

.header .nav .nav-link:hover {
    filter: brightness(80%);
}

@media (min-width: 992px) {
    .header {
        padding: 25px 65px;
    }

    .header .project-logos {
        display: block;
        width: auto;
        margin-bottom: 0;
    }

    .header .project-logos .logo {
        height: 52px;
        margin-left: 0;
        margin-right: 27px;
    }

    .header .nav {
        flex: 1;
        align-items: center;
        justify-content: flex-end;
    }

    .header .nav .nav-link {
        font-size: 1.125em;
        margin-right: 0;
        margin-left: 5%;
    }
}


.info-content {background-color:#2E6B8D; padding: 25px;}
.info-content p {color: #fff; width: 75%; margin: 25px auto; text-align: center; font-weight: bold;}

/* END HEADER */

/* FOOTER */
.footer {
    background-color: var(--mine-shaft);
    color: var(--white);
    padding: 15px;
}

.footer .logo {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100px;
    margin: auto;
}

.footer .footer-title {
    font-size: 1.125em;
    line-height: 1.5;
    font-weight: 700;
}

.footer .footer-title.yellow {
    color: var(--lightning-yellow);
}

.footer .footer-copy {
    font-size: 0.875em;
    line-height: 1.5;
}

.footer .footer-copy a {
    color: var(--lightning-yellow);
}

.footer .footer-copy a:hover {
    filter: brightness(70%);
}

.footer .back-to-top-cta {
    color: var(--white);
    display: inline-block;
    position: relative;
    font-size: 1em;
    line-height: 2;
    padding-right: 43px;
    height: 33px;
    transition: filter 300ms;
}
.footer .back-to-top-cta:hover {
    filter: brightness(80%);
}

.footer .back-to-top-cta::after {
    content: "";
    background-image: url('../assets/images/garnish/upward-carrot.svg');
    width: 33px;
    height: 33px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--lightning-yellow);
    position: absolute;
    right: 0;
}


button.back-to-top-cta {
    background-color: var(--blaze-orange);
    border: none;
    padding: 10px 18px;
    margin-bottom: 25px;
    border-radius: 3px;
}

button.back-to-top-cta:hover {
    background-color: var(--lightning-yellow);
    transition: 0.5s all;

}

button.back-to-top-cta a {
    color: #fff;
    text-decoration: none;
}
button.back-to-top-cta a:hover{
    color: #333;
}

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

    .footer .logo {
        margin: 0;
    }
    
}

/* END FOOTER */

/* HERO */
.hero {
    display: block;
    background-image: url('../assets/images/HeroBanner_image.jpg');
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero .content-wrapper {
    max-width: 655px;
}

.hero .project-logo {
    display: block;
    margin: auto;
    width: 100%;
    height: auto;
    max-width: 578px;
    margin-bottom: 100px;
}

.hero {
    padding-top: 35px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.hero p {
    font-size: 1em;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
    text-align: center;
    margin-bottom: 25px;

    color: var(--white);
    /* text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25); */
}

.hero .hero-description {
    font-size: 0.875em;
    width: 100%;
    margin-bottom: 0px;
    color: #000;
}

.hero .bottom-content .logo {
    width: 135px;
    height: auto;
    display: block;
    margin: auto;
    margin-bottom: 15px;
}

@media (min-width: 992px) {
    .hero {
        padding-top: 70px;
        padding-bottom: 18px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero p {
        font-size: 1.5em;
    }

    .hero .hero-description {
        width: auto;
    }

    .hero .bottom-content {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: space-between;
    }

    .hero .bottom-content .logo {
        margin-bottom: 0;
    }
}
@media (max-width: 500px) {
    .hero .hero-description {
        display: none;
    }
}

/* END HERO */

/* Standard Section */
.standard-section {
    display: block;
    padding: var(--vert-spacing-mobile) var(--side-spacing-mobile);
}

.standard-section.bg-white {
    background-color: var(--white);
}

.standard-section.aqua-haze-bg {
    background-color: var(--aqua-haze);
}

.standard-section.concrete-bg {
    background-color: var(--concrete);
}

.standard-section.bg-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

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

/* END Standard Section */

/* Construction Carousel */
.construction-carousel {
    border-radius: 6px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.construction-carousel .copy-container {
    padding: 30px;
    padding-bottom: 50px;
}

.construction-carousel .copy-container p {
    font-family: open-sans-condensed, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 1.5em;
    line-height: 1.5;
}

.construction-carousel .carousel-control-next,
.construction-carousel .carousel-control-prev {
    opacity: 1;
    transform: filter 300ms;
}

.construction-carousel .carousel-control-prev {
    left: -7.5%;
}

.construction-carousel .carousel-control-next {
    right: -7.5%;
}

.construction-carousel .carousel-control-next:hover .carousel-control-next-icon,
.construction-carousel .carousel-control-prev:hover .carousel-control-prev-icon {
    filter: brightness(80%);
}

.construction-carousel .carousel-control-prev-icon,
.construction-carousel .carousel-control-next-icon {
    width: 41px;
    height: 41px;
    transition: filter 300ms;
}

.construction-carousel .carousel-control-prev-icon {
    background-image: url('../assets/images/garnish/carousel-back-btn.svg');
}

.construction-carousel .carousel-control-next-icon {
    background-image: url('../assets/images/garnish/carousel-next-btn.svg');
}

.construction-carousel .carousel-indicators [data-bs-target] {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: var(--blaze-orange);
}

/* END Construction Carousel */

.newsletter p {
    font-size: 1.25em;
    line-height: 1.5;
    font-weight: 700;
    color: var(--white);
    text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
    .newsletter p {
        font-size: 1.875em;
        margin-bottom: 0;
    }
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='1px' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='2' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
    background-position: bottom;
    background-repeat: no-repeat;
    border: 0;
    padding-bottom: 15px;
}

.faq-accordion .accordion-item:last-child {
    background-image: none;
}

.faq-accordion .col-lg-6:first-child .accordion-item:last-child {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='1px' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23333' stroke-width='2' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-item h3 {
    font-size: 1.25em;
    line-height: 1.5;
    letter-spacing: 0em;
}

.faq-accordion .accordion-item .accordion-button {
    background-color: transparent;
    padding-top: 30px;
    padding-bottom: 15px;
    padding-left: 35px;
    padding-right: 0;
    outline: none;
    font-size: 1em;
    font-weight: 600;
    transition: filter 300ms;
}

.faq-accordion .accordion-item .accordion-button:hover {
    filter: brightness(80%);
}

.faq-accordion .accordion-item .accordion-button:focus {
    outline: none;
    border: 0;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: var(--black);
}

.faq-accordion .accordion-button::after {
    background-image: url('../assets/images/garnish/accordion-closed.svg');
    width: 24px;
    height: 28px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url('../assets/images/garnish/accordion-opened.svg');
    transform: rotate(0deg);
}

.faq-accordion .accordion-item .accordion-body {
    margin: 0;
    padding-top: 0;
    padding-bottom: 15px;
    padding-left: 35px;
    padding-right: 0;
}

.faq-accordion .accordion-item .accordion-body p {
    font-size: 1em;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .faq-accordion .col-lg-6:first-child .accordion-item:last-child {
        background-image: none;
    }

    .faq-accordion .accordion-item .accordion-body p {
        font-size: 1.25em;
    }
}

/* END FAQ ACCORDION */

/* document-card */
.document-card {
    display: block;
    height: 100%;
    background-color: var(--calypso);
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    padding: 22px 25px;
    color: var(--white);
    text-decoration: none;
    transition: filter 300ms;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.document-card:hover {
    filter: brightness(80%);
}

.document-card .icon {
    height: 45px;
    width: auto;
    margin-bottom: 15px;
}

.document-card .document-title {
    font-weight: 800;
    font-size: 1.1875em;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    width: 100%;
}

.document-card .date {
    margin-top: auto;
    color: var(--white);
    font-size: 1.375em;
    padding-top: 6px;
    border-top: 1px solid var(--lightning-yellow);
}
/* END document-card */

.project-partners-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    padding: 30px 0;
}

.project-partners-logos .logo {
    height: 82px;
    width: auto;
    margin: 15px;
    transition: filter 300ms;
}

.project-partners-logos .logo.thin {
    height: 22px;
}

.project-partners-logos .logo:hover {
    filter: brightness(60%);
}

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

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

#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;
    z-index: 5;
}

#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: 118px;
}

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

.lightbox {
    cursor: pointer;
}

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