/* Bootstrap Variable Overrides */

* {
    --bs-nav-pills-link-active-bg: #732032;
    --bs-nav-link-color: #732032;
    --bs-nav-link-hover-color: #e51c3d;
    --bs-border-color-translucent: #dee2e6;
    --bs-border-radius: 10px;
    --bs-primary-bg-subtle: #f5fafc;
    --bs-accordion-btn-focus-box-shadow: none;
}



/* Main Styling */
h2 {
    color: #732032;
}

.header-logo {
    width: 300px;
    margin: 0 auto;
}

.hero {
    background: #f3f3f3;
    background-image: url(../img/regionmap.svg);
    background-size: 1600px;
    background-position: -900px calc(45%);
    background-repeat: no-repeat;
    height: 400px;
    color: #732032;
    padding-left: 50%;
    border-radius: 10px;
    margin-bottom: 50px;
    font-size: 1.2em;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 100;
    color:#e51c3d;
    margin-bottom: 20px;
}

.hero p {
    width: 80%;
}

.card {
    margin-bottom: 20px;
    transition: all .3s ease;
}

.card:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.card-link {
    color: #732032;
    text-decoration: none;
    font-size: .9em;
}

.footer-logo {
    width: 170px;
    margin: 0 auto;
}

.btn-end {
    float: right;
    display: inline-block;
    border-radius: 10px;
    font-size: .75em;
    color: rgba(33, 37, 41, 0.75);
    background: #FFF;
    border: 1px solid rgba(33, 37, 41, 0.3);
}

.btn-end:hover {
    background: #FFF;
    color: rgba(33, 37, 41, 0.9);
    border: 1px solid rgba(33, 37, 41, 0.5);
}

.text-highlight {
    color: #732032;
}

.large-icon {
    font-size: 3.5em;
    display: block;
    color: #e51c3d;
}

#current-priorities-titles h3 {
    cursor: pointer;
    color: #AAA;
    transition: all 500ms;
}

.display-6 {
    color: #888;    
    font-size: 2.1rem;
    font-weight: 200;
    padding: 20px 0px;
}

.priorities-current {
    color:#e51c3d !important;
    transition: all 500ms;
}

#current-priorities-titles {
    text-align: right !important;
    padding-right: 3rem !important;
    padding-top: 4rem !important;
}


.exhibitor-logos {
    margin-top: 50px;
    margin-bottom: 50px;
}

.member-logo {
    width: 50%;
    filter: grayscale(1);
    transition: all .3s ease;
    opacity: .5;
}

.member-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    scale: calc(1.02);
}

/* Map Styling */
#ohio-map {
    width: 200%;
    height: auto;
}

#ohio-map path {
    stroke: #666766;
    stroke-width: .1;
    stroke-opacity: 1;
}

#ohio-map path:hover {
    fill-opacity: .5;
}


.circuit-info {
    margin-bottom: 20px;
}

#county-summary h2 {
    text-transform: capitalize;
}

.screens0 {
    fill: #FFFFFF;
}

.screens1 {
    fill: #EEEEEE;
}

.screens2 {
    fill: #DDDDDD;
}

.screens3 {
    fill: #CCCCCC;
}

.screens4 {
    fill: #BBBBBB;
}

.screens5 {
    fill: #AAAAAA;
}

#ohio-map .selected, #ohio-map .selected:hover {
    fill: #e51c3d;
}

/* Tablet */

@media (max-width: 991px) {
    .hero {
        background-position: -600px calc(45%);
        padding-left: 60px;
        padding-right: 300px;
        font-size: 1em;
    }

    .hero h1 {
        font-size: 2.9rem;
        margin-top: -40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        background-position: 71% -150px;
        padding-left: 30px;
        padding-right: 100px;
        font-size: 1em;
        background-size: 1400px;
        border-radius: 0px;
    }

    .hero h1 {
        font-size: 2.4rem;
        margin-top: -95px;
    }

    footer > div {
        margin: 0 auto;
        text-align: center;
    }

    .nav-link {
        font-size: .9em;
        padding: .3rem .65rem;
    }

    .footer-logo {
        margin-top: 30px;
    }

    #current-priorities-titles {
        text-align: center !important;
        padding-right: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 3rem !important;
    }
}