/*=== HEADER ===*/
#header{
    height: 37px;
    background-color: #42361f;
}
.header-wrapper{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 120;
    -webkit-box-shadow: 0 2px 8px -3px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 2px 8px -3px rgba(0,0,0,0.1);
    box-shadow: 0 2px 8px -3px rgba(0,0,0,0.1);
}
.top-bar{
    font-size: 14px;
    color: #fff;
    position: relative;
    height: 37px;
    background-color: #42361f;
}
.top-bar .flexbox{
    align-items: center;
    justify-content: flex-end;
}
.top-bar .contact-list,
.top-bar .contact-list li{
    display: inline-block;
}
.top-bar .contact-list li:not(:last-child):after{
    content: "|";
    margin: 0 3px;
    vertical-align: middle;
}
.top-bar .contact-list a{
    vertical-align: middle;
}
.top-bar .social{
    display: inline-block;
}
.top-bar .social,
.top-bar .social a{
    margin-left: 7px;
    vertical-align: middle;
}
.top-bar .social a:hover{
    color: #84a025;
}
/*=== MAIN NAVIGATION ===*/
.header-menu{
    background: rgba(255, 255, 255, 0.7);
}
.header-menu > .flexbox{
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.logo-wrapper{
    width: 250px;
}
.logo,
.logo img{
    display: block;
}
#nav-btn,
#nav-close-btn{
    display: none;
}
.nav-menu{
    margin-right: -15px;
    font-size: 0;
}
.nav-menu > li{
    display: inline-block;
    position: relative;
}
.nav-menu li a{
    color: #24272a;
    text-transform: uppercase;
}
.nav-menu > li > a{
    font-size: 17px;
    white-space: nowrap;
    padding: 48px 15px 36px;
}
.nav-menu > li > a:after{
    content: '';
    height: 3px;
    width: 100%;
    background: #6d8d23;
    position: absolute;
    bottom: 0;
    left: 0;
}
.sub-menu{
    width: 317px;
    padding: 30px 30px 27px;
    text-align: left;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: -30px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    box-shadow: 3px 2px 8px -4px rgba(0,0,0,0.1);
}
li.has-child:hover .sub-menu{
    opacity: 1;
    visibility: visible;
}
.sub-menu li{
    margin-bottom: 17px;
}
.sub-menu li a{
    display: block;
    font-size: 14px;
}
.sub-menu li a:hover{
    color: #6d8d23;
}
.sub-menu li:last-child{
    margin-bottom: 0;
}
/*=== FIXED AND INNER HEADER ===*/
.fixed .top-bar{
    margin-top: -37px;
}
.fixed .header-menu{
    background-color: #fff;
}
/*=== TOP BANNER ===*/
.banner{
    position: relative;
    min-height: 550px;
}
.banner .top-slider {
    height: 100%;
}
.banner .single-banner {
    height: 100%;
    background-position: top center;
    background-attachment: fixed;
}
.banner .single-banner:before{
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 80px 80px;
    border-color: transparent transparent #ffffff transparent;
}
.banner .single-banner:after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 0 0 40px;
    border-color: transparent transparent transparent #6d8d23;
}
.banner .container{
    height: 100%;
    z-index: 2;
    align-items: flex-end;
}
.banner-text{
    width: 100%;
    max-width: 50%;
    background: rgba(255, 255, 255, 0.9);
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    padding: 45px 80px 60px 30px;
    border: 2px solid #5e5e5e;
    border-bottom: none;
}
.banner .large-text{
    position: relative;
    padding-bottom: 15px;
}
.banner .large-text:after{
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: #84a025;
    margin-left: -80px;
    position: absolute;
    bottom: 0;
}
.banner-content{
    margin-bottom: 25px;
    font-size: 20px;
}
.banner .slick-arrow{
    width: 52px;
    height: 102px;
}
.banner .slick-arrow:after{
    content: none;
}
.banner .slick-arrow.slick-prev{
    display: none !important;
    left: calc(50% - 500px);
    background: url(../images/layout/arrow-banner-lt.png);
}
.banner .slick-arrow.slick-next{
    right: calc(50% - 500px);
    background: url(../images/layout/arrow-banner-rt.png);
    transform: none;
    margin-top: -10px;
    opacity: 0;
    visibility: hidden;
}
.banner:hover .slick-arrow.slick-next{
    opacity: 1;
    visibility: visible;
}
.banner .slick-list,
.banner .slick-track{
    height: 100%;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
}
.banner .slick-dots{;
    height: auto;
    max-width: 550px;
    left: calc(50% - 550px);
    
}
.move-down{
    position: absolute;
    bottom: 58px;
    z-index: 9;
    right: calc(50% - 550px);
}
.move-down i{
    display: block;
    font-size: 34px;
    color: #fff;
}
/*=== ABOUT SECTION ===*/
.about-wrapper{
    color: #63513d;
    overflow: hidden;
}
.about-wrapper > .flexbox{
    align-items: flex-start;
}
.about-wrapper > .flexbox > div{
   width: 50%;
}
.about-side-banner{
    -webkit-border-radius:  0 0 5px 5px;
    border-radius:  0 0 5px 5px;
    border: 2px solid #5e5e5e;
    border-top: none;
    padding: 55px 35px 40px 35px;
    flex-wrap: nowrap;
    align-items: center;
}
.about-side-banner .img-box{
    width: 100%;
    max-width: 190px;
}
.about-side-banner .text-box{
    padding-left: 15px;
}
.about-side-banner h2{
    margin-bottom: 10px;
}
.about-wrapper > .flexbox > div:last-child{
    background: url(../images/layout/bg-logo.jpg) right 0 bottom -25px no-repeat;
}
.about-top{
    position: relative;
    padding: 50px 40px 30px 45px;
}
.about-top:after{
    content: '';
    width: calc(100% + 50px);
    height: 22px;
    background: #84a025;
    position: absolute;
    bottom: 0;
    left: 0;
}
.about-top h1{
    font-size: 29px;
}
.about-text{
    padding: 30px 60px 30px 45px;
}
.about-text p{
    font-size: 16px;
}
.about-text .more-link:hover{
    color: #0a0a0a;
}
/*=== QUICK LINKS SECTION ===*/
.quick-links-wrapper{
    background: url(../images/banners/quick-links.png) no-repeat left top #f7f7f7;
}
.quick-links-wrapper .container{
   padding: 60px 15px 40px;
}
.quick-links-wrapper .flexbox {
    justify-content: space-around;
    padding: 0 35px 0 120px;
}
.quick-links-wrapper .large-text{
    font-size: 42px;
    text-transform: none;
    color: #84a025;
    text-align: right;
    margin-bottom: 60px;
}
.ql-box{
    width: 33.33%;
    max-width: 290px;
    text-align: center;
    position: relative;
    padding: 0 10px;
    color: #24272a;
}
.ql-box:last-child{
    padding-right: 0;
}
.ql-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95px;
    margin-bottom: 13px;
}
.ql-icon img{
    display: block;
    max-height: 100%;
}
.ql-box h3{
    font-family: 'Avenir';
    font-weight: 500;
    font-size: 25px;
    color: #42361f;
}
.ql-box p{
    line-height: 1.5;
    margin-bottom: 25px;
}
/*=== EVENT SECTION ===*/
.events-wrapper{
    padding: 30px 0 0;
}
.events-wrapper > .container{
    max-width: 100%;
    margin-left: calc(50% - 565px);
    padding-right: 0;
}
.events-top,
.events-main{
    border-bottom: 5px solid #84a025;
}
.events-top .flexbox{
    margin-left: 0;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 5px 0;
}
.events-top{
    color: #63513d;
}
.events-top .more-link{
    text-transform: capitalize;
    font-size: 18px;
}
.events-top h2{
    font-family: Avenir;
    font-size: 33px;
}
.events-top h2 i{
    margin-left: 10px;
}
.events-top h2 a:hover{
    color: #84a025;
}
.events-main{
    padding: 18px 0 58px;
}
.events-main > .event-box{
    flex-grow: 1;
    max-width: 550px;
}
.events-main > .event-box .event-date + a {
	margin-top: 25px;
}
.event-date{
    font-size: 35px;
    text-transform: capitalize;
    padding-top: 10px;
    margin-bottom: 8px;
}
.event-box a:not(.more-link){
    display: block;
}
.event-box .img-box{
    height: 165px;
    margin-bottom: 10px;
}
.event-box h4{
    font-size: 25px;
    padding-left: 25px;
    margin-bottom: 8px;
}
.event-box .event-content{
    padding: 0 25px;
}
.event-box .event-content p:first-child{
    margin-bottom: 10px;
}
.event-slider{
    display: flex;
    flex-wrap: nowrap;
    padding-left: 15px;
    overflow: hidden;
    overflow-x: scroll;
    max-width: calc(100% - 550px);
}
.event-slider .mCSB_container {
    display: flex;
    flex-wrap: nowrap;
}
.event-slider .event-box{
    border: 3px solid #c1c1c1;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    width: 180px;
    text-align: center;
    margin: 0 15px;
    flex-shrink: 0;
    flex-grow: 0;
    padding-bottom: 20px;
}
.event-slider .event-box:hover{
    border-color: #4d4d4d;
}
.event-slider .event-box .event-date{
    padding: 18px 10px 14px;
    margin: 0;
}
.event-slider .event-box h4{
    font-size: 20px;
    padding: 0 10px;
}
.event-slider .event-box .img-box{
    height: 210px;
    margin-bottom: 20px;
}
.event-slider .event-box .img-box:after{
    content: '\f06e';
    font: 54px/1 Font Awesome\ 5 Pro;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
}
.event-slider .event-date{
    font-size: 20px;
    text-transform: uppercase;
}
.event-slider .event-box .more-link{
    font-size: 13px;
}
.event-slider .mCustomScrollBox+.mCSB_scrollTools.mCSB_scrollTools_horizontal{
    height: 22px;
    opacity: 1;
    bottom: -37px;
    left: 6px;
    right: 6px;
}
.event-slider .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.event-slider .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
    height: 22px;
    margin: 0 auto;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #c1c1c1;
}
.event-slider .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger{
    width: 115px;
}
.event-slider .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
    background: #4d4d4d;
    width: 100%;
}
.event-slider.mCS_no_scrollbar .mCSB_scrollTools{
    display: none;
}
.event-slider .event-box:hover .more-link{
    color: #84a025;
}
/*=== TESTIMONIALS SECTION ===*/
.testimonials-wrapper{
    height: 507px;
    background-position: center top 200px;
    background-attachment: fixed;
    padding: 30px 0;
    font-size: 20px;
}
.testimonials-wrapper .flexbox{
    max-width: 1010px;
    align-content: center;
    justify-content: center;
}
.testimonials-wrapper .inner-box{
    padding: 0 0 25px 160px;
}
.testimonials-wrapper .inner-box:before{
    content: '';
    position: absolute;
    left: 0;
    top: -20px;
    width: 125px;
    height: 105px;
    background: url(../images/icons/quote.png) no-repeat;
    background-size: contain;
}
.testimonials-wrapper p{
    margin-bottom: 30px;
}
.testimonials-wrapper .author{
    text-align: right;
}
.testimonials-wrapper .btn{
    min-width: 220px;
}
.testimonials-wrapper .btn:last-child{
    margin-left: 100px;
}
/*=== FOOTER ===*/
.footer-wrapper{
    height: auto;
    padding: 40px 0 20px;
    font-size: 15px;
    color: #24272a;
}
.footer-wrapper > .relative:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    border-style: solid;
    border-width: 130px 0 0 130px;
    border-color: transparent transparent transparent #6d8d23;
}
.footer-wrapper .move-top{
    position: absolute;
    bottom: -10px;
    left: 25px;
    font-size: 34px;
    color: #fff;
}
.footer-wrapper p{
    margin-bottom: 0;
}
.footer-top{
    padding-bottom: 5px;
    align-items: flex-end;
}
.footer-top  div:first-child{
    padding-left: 40px;
}
.footer-top  div:nth-child(2){
    padding-left: 65px;
}
.footer-top  div:last-child{
    padding-left: 35px;
}
.footer-top .logo{
    max-width: 175px;
}
.footer-top li{
   display: inline-block;
}
.footer-top li:after{
    content: "|";
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px 0 4px;
}
.footer-top li:last-child:after{
    content: none;
}
.footer-top a:hover{
    color: #84a025;
    text-decoration: underline;
}
.footer-btm{
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: flex-end;
}
.footer-btm div:nth-child(2){
    padding-bottom: 3px;
}
.footer-btm .social{
    flex-shrink: 0;
    padding: 0 15px 0 35px;
}
.footer-btm .social a{
    font-size: 24px;
    line-height: 24px;
    color: #766341;
    margin-right: 14px;
    display: inline-block;
    vertical-align: bottom;
}
.footer-btm .social a:hover{
    color: #84a025;
}
.footer-btm .social a:last-child{
    margin-right: 0;
}
.footer-btm div:last-child{
    flex-shrink: 0;
    text-align: right;
}
.footer-btm div:last-child span{
    display: block;
    font-size: 10px;
}
.jbsystems{
    font-size: 10px;
}
.jbsystems div{
    width: 88px;
    height: 33px;
    margin: 0 0 8px auto;
    background: url(../images/icons/logo-jb-systems.png) no-repeat;
}
/*=== INNER PAGES ===*/
/* Sub Banner */
.sub-banner{
    height: 370px;
    position: relative;
}
.sub-banner .container{
    align-items: flex-end;
    max-width: 1230px;
}
.sub-banner .banner-text{
    border: none;
    padding: 35px 70px 25px 50px;
    position: relative;
}
.sub-banner .banner-text:after{
    content: '';
    width: 73%;
    height: 5px;
    background: #84a025;
    position: absolute;
    left: 0;
    bottom: 0;
}
/* BREADCRUMBS */
.breadcrumbs{
    padding: 0 0 50px;
    text-align: left;
    color: #262626;
}
.breadcrumbs li{
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
}
.breadcrumbs li:after{
    content: "\2022";
    display: inline-block;
    margin: 0 2px;
}
.breadcrumbs li:last-child:after{
    content: none;
}
.breadcrumbs li:last-child{
    color: #84a025;
}
/*=== MAIN CONTENT ===*/
.main-content{
    position: relative;
    padding: 10px 0 50px;
    overflow: hidden;
}
.main-content .container{
    max-width: 1230px;
    padding-left: 65px;
}
.main-content h2{
    font-size: 25px;
    margin-bottom: 35px;
}
.main-content .content .inner-box{
    max-width: 800px;
}
.main-content .content ul,
.main-content .content ol{
    margin-bottom: 30px;
    text-align: left;
}
.main-content .sidebar{
    width: 380px;
    padding-left: 80px;
}
.col-right.sidebar > *:not(:last-child){
    margin-bottom: 30px;
}
.img-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 280px;
    padding: 40px 15px;
    text-align: center;
    color: #fff;
}
.img-banner:after{
    background: rgba(0, 0, 0, 0.35);
}
.img-banner{
    width: 100%;
    min-width: 0;
    margin: 0;
}
.img-banner h3{
    font-family: 'Avenir';
    font-weight: 500;
    font-size: 25px;
    color: #fff;
    margin-bottom: 25px;
}
.img-banner.project-box .more-link,
.img-banner.project-box .more-link:after{
    font-size: 12px;
}
.img-banner.project-box .more-link:before{
    content: none;
}
.col-right.photos{
    width: 49.5%;
    background: url(../images/layout/bg-dots.jpg) no-repeat right 0 top 75px;
}
.col-right.photos .img-box{
    position: absolute;
    width: 175px;
    height: 175px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.col-right.photos .img-box:first-child{
    left: 150px;
}
.col-right.photos .img-box:after{
    background: rgba(109, 141, 35, .25);
}
.col-right.photos .img-box.large{
    width: 366px;
    height: 366px;
    right: -46px;
    top: 170px;
}
.col-right.photos .img-box.large:before{
    content: '';
    width: 331px;
    height: 405px;
    background: url(../images/layout/photo-border.png) no-repeat;
    position: absolute;
    left: -12px;
    top: -24px;
}
.col-right.photos .img-box.large:after{
    background: rgba(66, 54, 31, .25);
}
/* Content Gallery */
.gallery-wrapper{
    height: 330px;
    width: 100%;
    margin: 50px 0 0;
    overflow: hidden;
    max-width: 100%;
}
#galleria,
.galleria-container{
    width: 100% !important;
    height: 100% !important;
}
.galleria-image-nav > div {
    background-color: rgba(65, 56, 56, 0.75);
    width: 47px;
}
.galleria-image-nav-left{
    background: url(../images/galleria/galleria_prev.png) !important;
    background-repeat: no-repeat !important;
    left: 0px !important;
    right: auto !important;
}
.galleria-image-nav .galleria-image-nav-right{
    background: url(../images/galleria/galleria_next.png) !important;
    background-repeat: no-repeat !important;
    right: 0px !important;
    left: auto !important;
}
/* Page Section */
.section-wrapper{
    background: #e1e1e1;
    padding: 80px 0 62px;
}
.section-wrapper:after,
.section-wrapper:before{
    content: '';
    position: absolute;
}
.section-wrapper:after{
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 80px 80px 0;
    border-color: transparent #ffffff transparent transparent;
}
.section-wrapper:before{
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 0 0 40px;
    border-color: transparent transparent transparent #6d8d23;
}
.section-wrapper > .flexbox > div{
    width: 50%;
}
.section-wrapper h2{
    margin-bottom: 20px;
}
.section-wrapper h2 + p{
    margin-bottom: 40px;
}
.section-wrapper h3{
    margin-bottom: 0;
}
.section-wrapper > .flexbox > div:last-child{
    padding-left: 40px;
}
.section-wrapper .img-box{
    height: 340px;
    background-position: center top;
    margin-bottom: 70px;
}
.section-wrapper .text-box{
    background: #fff;
    padding: 30px 40px 35px 50px;
}
.section-wrapper .text-box h3{
    margin-bottom: 25px;
}
.section-wrapper:nth-child(even){
    background: #fff;
}
.section-wrapper:nth-child(even) > .flexbox{
    flex-direction: row-reverse;
}
.section-wrapper:nth-child(even) > .flexbox > div:first-child{
    padding-left: 40px;
}
.section-wrapper:nth-child(even) > .flexbox > div:last-child{
    padding-left: 0;
}
.section-wrapper:nth-child(even):after{
    left: 0;
    border-width: 80px 80px 0 0;
    border-color: #e1e1e1 transparent  transparent  transparent ;
}
.section-wrapper:nth-child(even):before{
    left: auto;
    right: 0;
    border-width: 0 0 40px 40px;
    border-color: transparent transparent #6d8d23 transparent ;
}
.section-wrapper:nth-child(even) .text-box{
    background: #e1e1e1;
}
/* Contact Page */
.main-content .jb-form p.note{
    margin: 0;
}
/* Municipalities Page */
.top-search-row{
    background: #84a025;
    color: #fff;
    padding: 21px 0;
}
.top-search-row .flexbox{
    align-items: center;
}
.top-search-row h3{
    font: 25px/1.2 'Avenir';
    color: #fff;
    margin: 0 70px 0 0;
}
.top-search-row select{
    font-size: 16px;
    color: #000000;
    width: 100%;
    max-width: 330px;
    padding: 15px 20px 14px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.top-search-row .btn{
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font-size: 12px;
    border-width: 1px;
    padding: 14px 25px 10px;
    margin-left: 12px;
    flex-grow: 0;
}
.top-search-row .btn:hover{
    border-color: #fff;
    background: #fff;
    color: #84a025;
}
.top-search-row form{
    flex-grow: 1;
    display: flex;
}
.main-content.no-breadcrumbs{
    padding-top: 65px;
}
.main-content.no-breadcrumbs .col-right.photos{
    background-position: right top;
    width: 50%;
}
.main-content .inner-top{
    padding-bottom: 45px;
    border-bottom: 5px solid #84a025;
    margin-bottom: 30px;
}
.main-content .inner-top p,
.municip-content .info-box p{
    margin-bottom: 0;
}
.municip-content h3{
    font: 25px/1.2 'Avenir';
}
.municip-content .info-box{
    line-height: 1.5;
    position: relative;
}
.municip-content hr{
    display: block; 
    height: 1px;
    border: 0; 
    border-top: 1px solid #e7e9e9;
    padding: 0;
    margin: 35px 0;
    max-width: 90%;
    border-color: #;
}
.municip-address span + span {
	display: block;
	padding-left: 71px;
}
.county-map {
	position: relative;
	height: 600px;
}
.county-map:before,
.county-map:after {
	content: '';
	background-attachment: scroll;
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
	height: 600px;
	width: 100%;
}
.county-map:before {
	background-image: url(../images/layout/Wisconsin-countyMap.png);
}
.county-map:after {
/* 	background-image: url(../images/layout/Wisconsin-countyNames.png); */
}
.county-map > div {
	background-attachment: scroll;
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
}

.county-map .map-langlade {
	top: 213px;
	left: 325px;
	height: 56px;
	width: 71px;
}
.county-map .map-marathon {
	top: 257px;
	left: 244px;
	height: 56px;
	width: 99px;
}
.county-map .map-shawano {
	top: 270px;
	left: 344px;
	height: 54px;
	width: 89px;
}
.county-map .map-brown {
	top: 312px;
	left: 431px;
	height: 56px;
	width: 45px;
}
.county-map .map-brown {
	top: 312px;
	left: 431px;
	height: 56px;
	width: 45px;
}
.county-map .map-calumet {
	top: 369px;
	left: 419px;
	height: 43px;
	width: 34px;
}
.county-map .map-winnebago {
	top: 368px;
	left: 376px;
	height: 45px;
	width: 43px;
}
.county-map .map-waushara {
	top: 369px;
	left: 311px;
	height: 33px;
	width: 64px;
}
.county-map .map-marquette {
	top: 403px;
	left: 310px;
	height: 41px;
	width: 39px;
}
.county-map .map-green-lake {
	top: 402px;
	left: 343px;
	height: 45px;
	width: 31px;
}
.county-map .map-columbia {
	top: 446px;
	left: 293px;
	height: 44px;
	width: 72px;
}
.county-map .map-manitowoc {
	top: 357px;
	left: 452px;
	height: 55px;
	width: 49px;
}
.county-map .map-door {
	top: 213px;
	left: 479px;
	height: 98px;
	width: 81px;
}
.county-map .map-kewaunee {
	top: 311px;
	left: 476px;
	height: 45px;
	width: 76px;
}
.county-map .map-waupaca {
	top: 314px;
	left: 343px;
	height: 54px;
	width: 56px;
}
.county-map .map-outagamie {
	top: 325px;
	left: 388px;
	height: 43px;
	width: 50px;
}

.locations {
	display: none;
}

/* Project Upload */
.dropzone {
	min-height: none;
	border: none;
	background: none;
/* 	padding: 0; */
}

.dropzone.dz-drag-hover {
	border: none;
}

.dz-drag-hover #dropzoneArea {
	border: 2px dashed #000;
}

#fancy-form #dropzoneArea {
	cursor: pointer;
	margin: 0;
}

#dropzonePreview .dz-progress {
	display: none;
}

.dropzone .dz-preview.dz-image-preview {
	background: transparent;
	width: 20%;
}

.dropzone .dz-preview .dz-image {
	width: 100%;
	height: 140px;
	border-radius: none;
}

#dropzone-template {
	display: none;
}

.dropzone .dz-preview .dz-image img {
	margin: 0 auto;
	max-height: 95%;
}

.dz-remove {
	padding-top: 10px;
}

#dropzoneArea {
	background: rgba(20, 20, 20, 0.03);
	margin: 0 0 1em 11.4em !important;
	width: 694px;
	padding: 8px;
	border-radius: 5px;
}

#dropzonePreview {
	background-color: #FFF;
	border: 1px solid #ccc;
	border-radius: 0.3em;
	box-shadow: inset 0.1em 0.1em 0.1em rgba(0, 0, 0, 0.1);
}

#dropzonePreview:empty {
	height: 100px;
}

#dropzonePreview:empty:after {
	content: '(Upload Photos Here)';
	padding-top: 38px;
	display: block;
	font-size: 90%;
}

#progressBar {
	margin: 0 0 1em 11.4em !important;
	width: 694px;
}

#progressBar > progress {
	width: 0;
}

/* generic faq styling */

.faq-list.generic .faq {
	text-transform: uppercase;
	font-weight: normal;
	font-size: 20px;
	color: #84a025;
}

 ul.faq-list > li.faq {
	border-bottom: solid 1px #63513d;
	padding: 0 45px 0 0;
	list-style: none !important;
	margin-bottom: 0;
}
 ul.faq-list > li.faq a:hover,
 ul.faq-list > li.faq a:active {
	 color: #000;
 }
ul.faq-list  >  li.faq:before {
	content: none;
}
* + ul.faq-list li.faq,
.faq-list .faq + .faq {
	padding-top: 25px;
}
.faq-list .faq:last-child {
	border-bottom: none;
}
.answer-drop {
	display: none;
	padding-bottom: 25px;
}
.answer-drop ul,
.answer-drop ol {
	margin: 0 0 0 15px;
}
.question {
	position: relative;
	letter-spacing: 0px;
	margin-bottom: 25px;
	cursor: pointer;
}
.question span {
	position: absolute;
	top: 0px;
	margin: auto;
	background-color: #84a025;
	border-radius: 50%;
	transition: all 0.3s ease 0s;
}
.faq-list h4 {
	font-weight: 500;
    margin-bottom: 15px;
    color: #63513d;
}

h3.question span {
	height: 26px;
	width: 26px;
	right: -35px;
	top: -2px;
}