@font-face {
    /** */
    font-family: "Archivo";
    src:
        local("Archivo"),
        url("./assets/Archivo-Regular.ttf") format("opentype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Archivo";
    src:
        local("Archivo"),
        url("./assets/Archivo-Italic.ttf") format("opentype");
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: "Archivo";
    src:
        local("Archivo"),
        url("./assets/Archivo-Bold.ttf") format("opentype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Archivo";
    src:
        local("Archivo"),
        url("./assets/Archivo-BoldItalic.ttf") format("opentype");
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: 'Archivo', sans-serif;
    src:
        local("Archivo"),
        url("./assets/ArchivoBlack-Regular.ttf") format("opentype");
    font-weight: 800;
    font-style: normal;
}
@-webkit-keyframes float {
    0%{
        -webkit-transform: translate(0,0);
                transform: translate(0,0);
    }
    50%{
        -webkit-transform: translate(0,-2px);
                transform: translate(0,-2px);
    }
    100%{
        -webkit-transform: translate(0,0);
                transform: translate(0,0);
    }
    
}
@keyframes float {
    0%{
        -webkit-transform: translate(0,0);
                transform: translate(0,0);
    }
    50%{
        -webkit-transform: translate(0,-2px);
                transform: translate(0,-2px);
    }
    100%{
        -webkit-transform: translate(0,0);
                transform: translate(0,0);
    }
    
}
@-webkit-keyframes spin {
    0%{
        -webkit-transform: rotate(-90deg);
                transform: rotate(-90deg);
        opacity: 0;
    }
    100%{
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
        opacity: 1;
    }
}
@keyframes spin {
    0%{
        -webkit-transform: rotate(-90deg);
                transform: rotate(-90deg);
        opacity: 0;
    }
    100%{
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
        opacity: 1;
    }
}
@-webkit-keyframes completeTurn {
    0%{
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@keyframes completeTurn {
    0%{
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@-webkit-keyframes floatIn {
    0%{
        opacity: 0;
        -webkit-transform: translate(0, -20px);
                transform: translate(0, -20px);
    }
    100%{
        opacity: 1;
        -webkit-transform: translate(0, 0);
                transform: translate(0, 0);
    }
}
@keyframes floatIn {
    0%{
        opacity: 0;
        -webkit-transform: translate(0, -20px);
                transform: translate(0, -20px);
    }
    100%{
        opacity: 1;
        -webkit-transform: translate(0, 0);
                transform: translate(0, 0);
    }
}
:root{
    --desktop-info-width: 32em;
    --icon-filter-teal: brightness(70%) saturate(59) hue-rotate(332deg);
    --icon-filter-red: brightness(67%) saturate(59) hue-rotate(127deg);
    --icon-filter-invert-red: brightness(300%) saturate(0)
}

*{
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
p, ul, li{
    line-height: 1.4em;
}
button{
    cursor: pointer;
    border: 0 none;
    background: none;
    background-color: none;
}

.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
#pos-cursor{display: none !important;}
#pos-cursor span{
    position: absolute;
    left: 140%;
    top: 0;
}

html, body, #content{
    color: #404041;
    margin: 0;
    height: 100%;
    overflow: hidden;
    font-family: 'Archivo', sans-serif;
}
text{
    font-family: 'Archivo', sans-serif;
}
body{
    background-color: #b8be14;
}
#map{
    display: block;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: calc(100% - var(--desktop-info-width));
    height: auto;
    cursor: -webkit-grab;
    cursor: grab;
    background-color: #b8be14;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    -webkit-transition-property: width, left, right;
    -o-transition-property: width, left, right;
    transition-property: width, left, right;
}
#map:active{
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

#content{
    scrollbar-gutter: stable;
    display: block;
    position: absolute;
    background-color: #FeFeFe;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: var(--desktop-info-width);
    height: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 8rem;
    padding-right: 2.5rem;
    text-align: center;
    overflow: auto;
    overflow-y: auto;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    -webkit-transition-property: top, width, height, left;
    -o-transition-property: top, width, height, left;
    transition-property: top, width, height, left;
}
#content::before, #content::after{
    -webkit-transition: top 1s;
    -o-transition: top 1s;
    transition: top 1s;
}
#content > div > *{
    opacity: 0;
    -webkit-animation-name: floatIn;
            animation-name: floatIn;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier();
            animation-timing-function: cubic-bezier();
    -webkit-animation-duration: 0.7s;
            animation-duration: 0.7s;
}
#content > div > *:nth-child(2), #content h2{
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
}
#content > div > *:nth-child(3){
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}
#content > div > *:nth-child(4){
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
}
#content > div > *:nth-child(5){
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
}

#content img{
    opacity: 0;

    display: inline;
    display: inline-block;
    -webkit-animation-delay: 0.45s;
            animation-delay: 0.45s;
    -webkit-animation-name: spin;
            animation-name: spin;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier();
            animation-timing-function: cubic-bezier();
    -webkit-animation-duration: 0.8s;
            animation-duration: 0.8s;
}

#content h2{
    color: #a20c33;
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-style: normal;
    text-align: center;
    margin: 0;
}

#content ul{
    margin-top: -0.75em;
}

#content .text-content-container{
    text-align: left;
    min-height: 60%;
}

#content .cta-button, #welcome button{
    font-size: 18px;
    display: inline-block;
    padding: 0.33rem;
    min-width: min(16rem, 100%);
    background-color: #a20c33;
    border-radius: 100px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    margin: 0.5rem 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#content .cta-button:hover, #welcome button:hover{
    background-color: #005f7f;
}

#content .content-highlight{
    text-align: left;
    padding-left: 2.8em;
    font-style: italic;
    margin-top: 1em;
    position: relative;
    line-height: 1.3em;
}
#content .content-highlight::after{
    content:'';
    width: 2.5em;
    height: 2.5em;
    position: absolute;
    top: 0;
    left: 0;
    background: url('./assets/Kimley-Horn_Icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-transition: 0.4s cubic-bezier(0.6, -2, 0.5, 0.045);
    -o-transition: 0.4s cubic-bezier(0.6, -2, 0.5, 0.045);
    transition: 0.4s cubic-bezier(0.6, -2, 0.5, 0.045);
}
#content .content-highlight:hover::after{
    -webkit-transform: translate(-4px, 0);
        -ms-transform: translate(-4px, 0);
            transform: translate(-4px, 0);
}
#content .content-highlight:active::after{
    -webkit-transform: translate(20px, 0);
        -ms-transform: translate(20px, 0);
            transform: translate(20px, 0);
    opacity: 0;
}

#content .content-highlight strong{
    color: #005f7f;
    font-weight: 800;
    white-space: nowrap;
}

#content .highlight-link{
    text-decoration: none;
    position: static;
    color: #404041;
}

#content .back-button{
    padding: 0.15em 0.45em;
    border-radius: 2em;
    border: solid 2px #c7c8ca;
    font-size: 1.75em;
    font-weight: 600;
    color: #c7c8ca;
    position: absolute;
    top: 1.5rem;
    left: 7.5rem;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
#content .back-button:hover{
    rotate: -45deg;
    background-color: #c7c8ca;
    color: #ffffff;
    border-color: rgba(255,255,255,0);
}

#menu{
    direction: ltr;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: min(1vh, 12px);
    position: absolute;
    width: min(6rem, 12vh);
    top: 0;
    bottom: 0;
    padding-left: min(1em, 2vh);
    padding-right: min(1em, 2vh);
    padding-top: min(3em, 2vh);
    padding-bottom: min(3em, 2vh);
    background-color: #d5d6d9;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #c7c8ca rgba(255,255,255,0);
    text-align: center;
}
#menu button{
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    position: relative;
    border-color: #c7c8ca;
    -webkit-transition: border-color 0.3s, background-color 0.3s;
    -o-transition: border-color 0.3s, background-color 0.3s;
    transition: border-color 0.3s, background-color 0.3s;
    height: 50px;
    width: 50px;
    padding: 0;
    border-radius: 120px;
    
}
#menu button, #menu button img{
    max-width: 7vh;
    max-height: 7vh;
}
#menu button.active{
    border: 4px solid #a20c33;
    margin: -4px;
    height: 50px;
    background-color: #ffffff;
    padding: 0;
    pointer-events: none;
    
}

#menu button:hover{
    background-color: #ffffff;
    /* margin: -4px; */
    height: 50px;
}

#menu button.child-active{
    pointer-events: all;
    border: 4px solid #82abbc;
    margin: -4px;
    border-radius: 120px;
    height: 50px;
    background-color: #ffffff;
    padding: 0;
}
@media only screen and (min-width: 800px) {
    #map.start{
        width: 100vw!important; left: 0!important;-webkit-transition: 0s !important;-o-transition: 0s !important;transition: 0s !important
    }
    #content.start{
        right: 110vw !important; left: calc(-1 * var(--desktop-info-width)) !important; -webkit-transition: 0s !important; -o-transition: 0s !important; transition: 0s !important;
    }
    #menu button .menu-button-name{
        display: inline;
        display: inline-block;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: auto;
        margin: auto;
        font-size: 1.3em;
        font-family: 'Archivo', sans-serif;
        font-weight: 800;
        line-height: 0.8em;
        color:#a20c33;
        padding: 0.3em;
        border: solid 1px #d5d6d9;
        -webkit-box-shadow: 4px 0 20px #0000003a;
                box-shadow: 4px 0 20px #0000003a;
        border-radius: 0.3em;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        background-color: white;
        white-space: nowrap;
        pointer-events: none;
        opacity: 0;
        -webkit-transition: left 0.3s, opacity 0.3s;
        -o-transition: left 0.3s, opacity 0.3s;
        transition: left 0.3s, opacity 0.3s;
    }
    #menu button .menu-button-name::after{
        content: '';
        width: 0;
        position: absolute;
        left: 0;
        right: 100%;
        top: 0;
        bottom: 0;
        margin: auto;
        height: 1em;
        background-color: white;
    }
    #menu button.child-active .menu-button-name{
        color:#005f7f;
    }
    @media only screen and (min-width: 1400px){
        #menu button:hover .menu-button-name::after{
            width: auto;
            left: -1em;
        }
        #menu button:hover .menu-button-name{
            left: 120%;
            opacity: 1;
        }
    }
    #welcome{
    display: block;
    display: inline-block;
    position: fixed;
    height: 250px !important;
    top: -50vh;
    bottom: 110vh;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #ffffff;
    z-index: 3;
    width: 400px;
    border-radius: 0 0 20px 20px;
    padding: 40px;
    text-align: center;
    -webkit-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
  }
  #menu.welcomed{
    left: 0;
  }
  #menu.labelPopOut .menu-button-name{
    left: 120%;
    opacity: 1;
    -webkit-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
  }

  #menu.welcomed .menu-icon-link:nth-child(1) .menu-button-name{
    -webkit-transition-delay: 0.1s;
         -o-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  #menu.welcomed .menu-icon-link:nth-child(2) .menu-button-name{
    -webkit-transition-delay: 0.2s;
         -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  #menu.welcomed .menu-icon-link:nth-child(3) .menu-button-name{
    -webkit-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  #menu.welcomed .menu-icon-link:nth-child(4) .menu-button-name{
    -webkit-transition-delay: 0.4s;
         -o-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  #menu.welcomed .menu-icon-link:nth-child(5) .menu-button-name{
    -webkit-transition-delay: 0.5s;
         -o-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  #menu.welcomed .menu-icon-link:nth-child(6) .menu-button-name{
    -webkit-transition-delay: 0.6s;
         -o-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  #menu.welcomed .menu-icon-link:nth-child(7) .menu-button-name{
    -webkit-transition-delay: 0.7s;
         -o-transition-delay: 0.7s;
            transition-delay: 0.7s;
  }
  #menu.welcomed .menu-icon-link:nth-child(8) .menu-button-name{
    -webkit-transition-delay: 0.8s;
         -o-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
  #menu.welcomed .menu-icon-link:nth-child(9) .menu-button-name{
    -webkit-transition-delay: 0.9s;
         -o-transition-delay: 0.9s;
            transition-delay: 0.9s;
  }
  #menu.welcomed .menu-icon-link:nth-child(10) .menu-button-name{
    -webkit-transition-delay: 1.0s;
         -o-transition-delay: 1.0s;
            transition-delay: 1.0s;
  }
  #menu.welcomed .menu-icon-link:nth-child(11) .menu-button-name{
    -webkit-transition-delay: 1.1s;
         -o-transition-delay: 1.1s;
            transition-delay: 1.1s;
  }
}


#map .map-pin.active{
    pointer-events: none;
}

#map path{
    stroke: #a20c33;
    /* stroke-width: 2px; */
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
#map g g{
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    /* animation: float 1s infinite; */
}
#map g.active g{
    /* animation-name: none; */
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
#map g:hover g{
    /* animation: none; */
}
#map g.active g path{
    stroke: #ffffff;
    stroke-width: 0;
    fill: #a20c33;
}

#map g g image{
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    pointer-events: none;
}

#map g.active g image, #map g.active g image svg{
    /* animation-name: none; */
    display: none;
}
#map g.active g image.inverted, #map g.active g image.inverted svg{
    /* animation-name: none; */
    display: initial;
}
#map g .text-bg{
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    fill: #ffffff;
    /* stroke-width: 1.5px; */
    cursor: pointer;
}
#map g text{
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    fill: #404041;
    pointer-events: none;
}
#map g.active .text-bg{
    fill: #a20c33;
    stroke-width: 0;
    cursor: pointer;
}
#map g.active text{
    fill: #ffffff;
    pointer-events: none;
}

@media only screen and (max-width: 800px) {
  #map{
    left: 0;
    right: 0;
    width: 100vw;
    height: 30vh;
    bottom: 70vh;

  }
  #content{
    width: 100vw;
    height: 70vh;
    top: 30vh;
    padding: 4vh;
    padding-top: 1.8rem;
    padding-bottom: 14rem;;
  }
  #menu{
    width: 100vw;
    right: 0;
    top: auto;
    height: 8.0rem ;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    overflow: auto;
    padding: 0.5rem 3rem 2rem;
    gap: 2rem;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color:  #555454 #c7c8ca !important;
  }
  #menu::-webkit-scrollbar-thumb{
    background: #555454 !important;
  }
  #menu::after, #menu::before{
    content: '';
    background: -webkit-gradient(linear, left top, left bottom, from(#d5d6d900), color-stop(#d5d6d9ff), to(#d5d6d9ff));
    background: -o-linear-gradient(#d5d6d900, #d5d6d9ff, #d5d6d9ff);
    background: linear-gradient(#d5d6d900, #d5d6d9ff, #d5d6d9ff);;
    width: 2.5em;
    height: 8.0rem ;
    position: fixed;
    z-index: 999999999999999;
    bottom: 0;
    top: auto;
    
  }
  #menu::after{
    right:0;
    left: auto;
    background: -webkit-gradient(linear, left top, right top, from(#d5d6d900), color-stop(#d5d6d9ff), to(#d5d6d9ff));
    background: -o-linear-gradient(left, #d5d6d900, #d5d6d9ff, #d5d6d9ff);
    background: linear-gradient(90deg, #d5d6d900, #d5d6d9ff, #d5d6d9ff);
  }
  #menu::before{
    right:auto;
    left: 0;
    background: -webkit-gradient(linear, right top, left top, from(#d5d6d900),  to(#d5d6d9ff));
    background: -o-linear-gradient(right, #d5d6d900,  #d5d6d9ff);
    background: linear-gradient(270deg, #d5d6d900,  #d5d6d9ff);
  }


  #content::after, #content::before{
    content: '';
    position:fixed;
    top: calc(30vh - 1px);
    left: 0;
    right: 0;
    bottom: auto;
    height: 3rem;
    width: 100%;
    z-index: 2;
    background-color: #ffffff;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffffff), color-stop(40%, #ffffffff), to(#ffffff00));
    background: -o-linear-gradient(#ffffffff, #ffffffff 40%, #ffffff00);
    background: linear-gradient(#ffffffff, #ffffffff 40%, #ffffff00);
    pointer-events: none;
  }
  /*#content::after{
    top: auto;
    bottom: calc(8rem - 1px);
    background: linear-gradient(#ffffff00, #ffffffff 80%, #ffffffff);
    
    height: 3rem;
  }*/
  .menu-button-name{
    display: none;
  }
  #menu button, #menu button img{
    width: 3.0rem;
    height: 3.0rem !important;
  }
  #content .back-button{
    background-color: #ffffff;;
    left: 0.5rem !important;
    top: calc(calc(30vh - 1px) + 1rem) !important;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    font-size: 1.4rem;
    position: fixed;
    z-index: 3;
  }
}