/**** VARIABLES ****/
:root {
    --side-spacing-mobile: 5%;
    --side-spacing-desktop: 7%;
    --vert-spacing-mobile: 35px;
    --vert-spacing-desktop: 50px;

    /* colors */
    --white: #ffffff;
    --navy: #082537;
    --light-blue: #a3c7e4;
    --lighter-blue: #D0DFEA;
    --orange: #DD7500;

    /* Top margin to account for sticky nav */
    --header-spacing-mobile: 52px;
    --header-spacing-desktop: 87px;
}

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

html,
body {
    height: 100%;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    background-color: #EEE;
}

.container {
    width: 100%;
    max-width: 1800px;
    overflow: hidden;
    padding: 0;
}

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

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

hr {
    width: 100%;
    height: 2px;
    border-color: #000;
    background-color: #000;
    margin-bottom: 30px;
}

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

.full-width-img-divider {
    width: 100%;
    height: 55vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


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

/**** GLOBALS ****/

h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

h4 {
    font-weight: 600;
    font-size: 22px;
}

p {
    font-size: 1.0rem;
    margin-bottom: 15px;
}

a.no-style {
    text-decoration: none;
    color: #000;
}

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

.margin-top-sub-section {
    margin-top: 25px;
}

ul.dash-list {
    list-style: none;
    margin-left: 0;
    margin-bottom: 15px;
    padding-left: var(--side-spacing-mobile);
}

ul.dash-list>li:before {
    display: inline-block;
    content: "-";
    width: 1em;
    margin-left: -1em;
}

li {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.link-list {
    list-style: none;
    padding-left: 0;
    display: block;
    width: 100%;
}

.link-list .link {
    color: #000;
    text-decoration: underline;
    font-size: 22px;
}

.link-list .link:hover {
    color: #DD7500;
}

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

    section {
        scroll-margin-top: var(--header-spacing-desktop);
    }

    h2 {
        font-size: 45px;
        margin-bottom: 25px;
    }

    h3 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    h4 {
        font-size: 28px;
    }

    p {
        font-size: 1.22rem;
        margin-bottom: 25px;
    }

    ul.dash-list {
        padding-left: var(--side-spacing-desktop);
        margin-bottom: 25px;
    }

    li {
        font-size: 1.22rem;
        margin-bottom: 5px;
    }

    .link-list .link {
        font-size: 30px;
    }

    .full-width-img-divider {
        height: 500px;
    }
}

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

/**** 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: 0;
}

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

.lightbox {
    cursor: pointer;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    max-width: 1800px;
    margin: auto;
    border-bottom: 2px solid var(--navy);
}

.header .header-row {
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--light-blue);
}

.header .header-row .logo-container {
    background-color: #FFF;
    padding: 10px 20px;
    -ms-transform: skew(320deg);
    transform: skew(320deg);
    width: 180px;
    margin-left: -35px;
    margin-right: 10px;
}

.header .header-row .logo-container .logo {
    width: 57px;
    height: auto;
    display: block;
    -ms-transform: skew(-320deg);
    /* IE 9 */
    transform: skew(-320deg);
    /* Standard syntax */
    margin-left: auto;
}

.header .header-row .project-name {
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0 20px;
    margin: 0;
}

.header .desktop-nav {
    display: none;
    margin-left: auto;
}

.header .desktop-nav .nav-item {
    color: #000;
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-right: 10px;
    margin-right: 5px;
    border-right: 1px solid #000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
}

.header .nav-item.meeting {
    color: #000;
    display: inline-block;
    background-color: #DD7500;
    font-weight: 800;
    padding: 5px;
    transition: background-color 150ms ease-in-out;
}

.header .nav-item.meeting:hover {
    background-color: #bb6400;
}

.header .nav-item.meeting:hover::after {
    display: none;
}

.header .desktop-nav .nav-item:last-child {
    border-right: 0;
}

.header .desktop-nav .nav-item:hover::after,
.header .desktop-nav .nav-item.selected::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: var(--orange);
    left: -3px;
    bottom: -10px;
}

@media only screen and (min-width : 992px) {

    .header .header-row .logo-container {
        padding: 10px 40px;
        width: 250px;
        margin-left: -45px;
        margin-right: 10px;
    }

    .header .header-row .logo-container .logo {
        width: 123px;
        margin-left: auto;
    }

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

    .header .header-row .project-name {
        font-size: 20px;
    }
}

/* END Header */

/* Sidenav */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    background-color: var(--navy);
    color: #FFF;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    text-align: center;
}

.sidenav-cta {
    display: block;
    width: fit-content;
    margin-left: auto;
}

.sidenav-cta img {
    width: 50px;
    padding-right: 10px;
}

.sidenav a {
    position: relative;
    display: inline-block;
    color: #FFF;
    transition: 0.25s ease-in-out;
    text-decoration: none;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: center;
}

.sidenav li a::after {
    content: "";
    position: absolute;
    height: 80%;
    width: 80%;
    max-width: 215px;
    opacity: 0;
    background-color: #0E406A;
    transition: 0.25s ease-in-out;
    left: 30%;
    top: 0;
    margin-top: 15px;
    z-index: -1;
}

.survey-cta {
    color: #0E406A !important;
    border-top: 5px solid #FFF;
    padding-top: 15px;
}

.survey-cta::after {
    display: none;
}

.survey-cta:hover {
    text-decoration: underline;
}

.cta-banner {
    display: block;
    background-color: #DD7500;
    padding: 20px var(--side-spacing-mobile);
    color: #FFF;
    font-size: 1rem;
    font-weight: 400;
    transition: background-color 150ms ease-in-out;
    text-decoration: none;
    text-align: center;
}

.cta-banner a {
    color: #FFF;
}

@media only screen and (min-width : 992px) {
    .cta-banner {
        padding: 20px var(--side-spacing-desktop);
        font-size: 1.25rem;
    }
}

.sidenav a:hover::after,
.sidenav a.active::after {
    opacity: 100%;
}

.sidenav a:hover {
    color: #fff;
}

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

.sidenav.open {
    width: 300px;
}


.sidenav::after {
    content: "";
    height: 100vh;
    width: 0;
    background-color: #000;
    opacity: 0;
    top: 0;
    right: 0px;
    z-index: -2;
    position: fixed;
    transition: 0.5s;
}

.sidenav.open::after {
    width: 100vw;
    opacity: 0.5;
    right: 300px;
}

.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 {
    margin: 0 40px;
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

    .sidenav,
    .sidenav-cta {
        display: none;
    }
}

/* Footer */
.footer {
    padding: var(--vert-spacing-mobile) var(--side-spacing-mobile);
    background-color: var(--lighter-blue);
    border-top: 1px solid var(--navy);
}

.footer .idaho-falls-logo {
    width: 100%;
    max-width: 230px;
    display: block;
    margin: auto;
    padding-bottom: 40px;
}

.footer .footer-header {
    font-size: 1.15rem;
    font-weight: 700;
}

.footer .footer-copy {
    font-size: 0.875rem;
    font-weight: 400;
}

.footer .footer-copy a {
    color: #000;
    display: inline-block;
    margin-bottom: 10px;
}

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

    .footer .idaho-falls-logo {
        margin: 0;
        padding-bottom: 0px;
    }
}

/* End Footer */

/* Hero */
.hero .hero-carousel {
    position: relative;
}

.hero .hero-carousel .carousel-content {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--vert-spacing-mobile) 75px;
}

.hero .hero-carousel .carousel-content .slogan {
    height: 100%;
    width: 100%;
    padding: 10px;
    margin-bottom: 0;
}

.hero .hero-carousel .carousel-content .slogan p {
    font-size: 26px;
    line-height: 30px;
    font-weight: 700;
    text-shadow: 2px 2px 2px #000;
    color: #ffffff;
}

.hero .hero-carousel .carousel-content .slogan p .copy {
    display: inline-block;
    padding-top: 15px;
}

.hero .hero-carousel .carousel-nav-btn {
    position: absolute;
    background-color: #EEE;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    opacity: 0.85;
    transition: opacity 0.25s ease-in-out;
}

.hero .hero-carousel .carousel-nav-btn:hover {
    opacity: 1;
}

.hero .hero-carousel .carousel-nav-btn img {
    width: 90%;
    height: auto;
}

.hero .hero-carousel .carousel-nav-btn.prev-btn {
    left: 10px;
    top: 50%;
    transform: translate(0, -50%);
}

.hero .hero-carousel .carousel-nav-btn.next-btn {
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
}


@media only screen and (min-width : 992px) {
    .hero .hero-carousel .carousel-content {
        height: 570px;
        padding: var(--vert-spacing-desktop) 90px;
    }

    .hero .hero-carousel .carousel-nav-btn.prev-btn {
        left: 20px;
    }

    .hero .hero-carousel .carousel-nav-btn.next-btn {
        right: 20px;
    }

    .hero .hero-carousel .carousel-content .slogan {
        width: 50%;
        margin-left: auto;
    }

    .hero .hero-carousel .carousel-content .slogan {
        padding: 0px;
        margin-top: 130px;
    }
    
    .hero .hero-carousel .carousel-content .slogan p {
        font-size: 45px;
        line-height: 51px;
    }
    .hero .hero-carousel .carousel-content .slogan p .copy {
        display: inline-block;
        padding-top: 25px;
        padding-left: 25px;
    }
}

/* END Hero */

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

.white-section .new-section-tab {
    position: relative;
    min-height: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
}

.white-section .new-section-tab::after {
    content: "";
    position: absolute;
    background-color: var(--navy);
    width: 4%;
    height: 100%;
    top: 0;
    left: -8.2%;
}

.white-section .new-section-tab p:last-child, .white-section .new-section-tab h2:last-child {
    margin-bottom: 0;
}

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

    .white-section .new-section-tab {
        min-height: 120px;
    }
}

/* End White Section */

/* Icons and text block */
.icons-and-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.icons-and-text .block {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    padding: 0 10px;
    text-align: center;
}

.icons-and-text .block .icon {
    width: 95px;
    height: auto;
    margin-bottom: 20px;
}

.icons-and-text .block .text {
    font-size: 1.5rem;
    font-weight: 700;
}

/* END Icons and Text Block */

/* Master Plan Accordion */

.master-plan-accordion {
    margin-bottom: 25px;
}

.master-plan-accordion .accordion-item {
    border-bottom: 4px solid #FFF;
}

.master-plan-accordion .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 700;
    background-color: #CCC;
    color: #000;
    border: 0;
    text-align: left;
}

.master-plan-accordion .accordion-header .accordion-button.collapsed:hover {
    background-color: #92b3ce;
}

.master-plan-accordion .accordion-header .accordion-button.collapsed {
    background-color: var(--light-blue);
    transition: background-color 0.25s ease-in-out;
}

.master-plan-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.master-plan-accordion .accordion-button:focus {
    border: 0;
    box-shadow: none;
}

.master-plan-accordion .accordion-body {
    background-color: #f3f3f3;
    font-size: 1rem;
    border: 0;
    padding: 20px;
}

.master-plan-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

.master-plan-accordion .accordion-collapse {
    border-left: 0;
    border-right: 0;
    border-top: 4px solid #FFF;
}


@media (min-width: 992px) {
    .master-plan-accordion .accordion-body {
        font-size: 20px;
    }

    .master-plan-accordion .accordion-header .accordion-button {
        font-size: 26px;
    }

}

/* END Master Plan Accordion */

/* Project Schedule */
.project-schedule {
    width: 100%;
    overflow: auto;
}

.project-schedule-img {
    width: 100%;
    min-width: 800px;
}
/* End Project Schedule */

/* Meeting Row */

.meeting-row {
    padding-top: 25px;
    margin-bottom: 25px;
}

.meeting-row .meeting-col {
    padding-top: 100px;
    margin-bottom: 25px;
}

.meeting-row .meeting-row-block {
    padding: 1px 20px 20px;
    height: 100%
}

.meeting-row .meeting-row-block h3 {
    text-transform: uppercase;
    font-size: 26px;
    margin-bottom: 10px;
}

.meeting-row .meeting-row-block .inner-icon {
    width: 80px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

.meeting-row .meeting-row-block .icon {
    display: block;
    width: 100px;
    height: auto;
    margin-top: -100px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
}

.meeting-row .meeting-row-block .copy {
    height: 100%;
    text-align: center;
}

.meeting-row .meeting-col .meeting-row-block {
    border-bottom: 2px dashed #000;
}

@media (min-width: 768px) {
    .meeting-row .meeting-col .meeting-row-block {
        border-right: 2px dashed #000;
        border-bottom: 0;
    }
    .meeting-row .meeting-col:nth-child(even) .meeting-row-block {
        border-right: 0;
    }

}

@media (min-width: 992px) {
    .meeting-row .meeting-col:nth-child(even) .meeting-row-block {
        border-right: 2px dashed #000;
    }
    .meeting-row .meeting-col:last-child .meeting-row-block {
        border-right: 0;
    }

    .meeting-row .meeting-row-block p {
        font-size: 20px;
    }
}

/* Sign up block */
.sign-up-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
}

.sign-up-block .sign-up-btn {
    position: relative;
    display: block;
    width: 200px;
    margin-bottom: 25px;
    padding-left: 20px;
    padding-right: 80px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #000;
    background-color: var(--light-blue);
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 3px 4px 1px black;
    transition: background-color 0.25s ease-in-out;
}

.sign-up-block .sign-up-btn:hover {
    background-color: #8cabc3;
}

.sign-up-block .sign-up-btn::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 30px;
    width: 35px;
    height: 35px;
    background-image: url('../assets/images/icons/paper-plane.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.sign-up-block .sign-up-copy {
    margin-bottom: 0;
    width: 100%;
}

@media (min-width: 992px) {
    .sign-up-block {
        flex-wrap: nowrap;
    }
    .sign-up-block .sign-up-btn {
        margin-bottom: 0px;
        margin-right: 30px;   
        min-width: 200px;
    }
}
/* End Sign up block */

/* contact-row */
.contact-row {
    padding-top: 30px;
}
.contact-row .contact-col {
    margin-bottom: 25px;
}
.contact-row .contact-col .contact-btn {
    position: relative;
    display: block;
    width: 200px;
    margin-bottom: 25px;
    padding-left: 20px;
    padding-right: 80px;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #000;
    background-color: var(--light-blue);
    font-size: 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 3px 4px 1px black;
    transition: background-color 0.25s ease-in-out;
}

.contact-row .contact-col .contact-btn:hover {
    background-color: #8cabc3;
}

.contact-row .contact-col .contact-btn::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 30px;
    width: 30px;
    height: 30px;
    background-image: url('../assets/images/icons/paper-plane.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contact-row .contact-col .social-links {
    width: 100%;
    display: flex;
}

.contact-row .contact-col .social-links .social-link {
    transition: 0.25s ease-in-out;
    text-decoration: none;
    display: inline-block;
    width: 50%;
    max-width: 70px;
}
.contact-row .contact-col .social-links .social-link .icon {
    width: 100%;
    padding: 0 10px;
    height: auto;
    transition: filter 0.25s ease-in-out;
}

.contact-row .contact-col .social-links .social-link .icon:hover {
    filter: brightness(.8);
}   


@media (min-width: 992px) {
    .contact-row .contact-col {
        margin-bottom: 0px;
    }
    .contact-row .contact-col .social-links .social-link {
        max-width: 100px;
    }
}

/* end contact-row */

/* Zoho Form Style Overrides */

#crmWebToEntityForm {
    max-width: 100% !important;
    background-color: #92b3ce !important;
}

#crmWebToEntityForm .zcwf_title {
    display: none;
}

#crmWebToEntityForm form {
    width: 100%;
    background-color: #92b3ce;
}

#crmWebToEntityForm form label, .zcwf_col_lab, #crmWebToEntityForm form select {
    font-size: 1.15rem !important;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

#formsubmit, .zcwf_button {
    font-size: 1.15rem !important;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background-color: #DD7500;
    border: #DD7500 !important;
    transition: 0.25s ease-in-out;
    width: 100px;
}

#formsubmit:hover, .zcwf_button:hover {
    background-color: #bb6400;
}