/* Button Padding - Sitewide */

.button, .navContent li .button {
    padding: 10px 30px;
}

/* Flip 50-50 Stacking Order in Mobile */

.block_c2f244accf95411b90af1a2a167da5a2 {
    display: flex;
    flex-flow: wrap-reverse;
}
/* Custom Social Styling */
.custom-social {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}
@media (orientation: portrait) {
    .custom-social {
        flex-direction:column;
    }
}
/* Homepage Button Styling */

@media (orientation: landscape) {
    .block_c90e2fbdac754193b1176ab5548df227 .blockText p:last-child {
        display: flex;
        justify-content:space-around;
    }
}
.block_c2f244accf95411b90af1a2a167da5a2 :nth-child(2).button {
    background: #557830;
    color: #ffffff;
    margin-left: 10px;
}
.block_c2f244accf95411b90af1a2a167da5a2 :nth-child(2).button:hover {
    background: #86bc4e;
}

/* Mobile Hero Sizing */

@media only screen and (max-width: 767px) {
    div.blockWrap_c2f244accf95411b90af1a2a167da5a2 {
    padding-top: 30px;
    }
    div.blockWrap_c2f244accf95411b90af1a2a167da5a2 .blockInnerContent {
    padding-bottom: 30px;
}
}

/* Nav Dropdowns */

.navContent ul li ul a {
    white-space: normal !important;
    overflow: visible !important;
}

@media only screen and (min-width: 768px) {
    .navContent ul li ul {
        min-width: 250px !important;
        right: auto !important; 
    }
}

/* Remove Map Margin */

.block_ebf27b44bb7643d09192895269b39f90  {
    margin-bottom: -10px;
}

/* Equalize Simple List Blocks*/

/* Change item class here */
.items_db32db9c7a66455da1e46a18395d775f,
.items_f6b3f376e0a948d3a1f121a5fde1f801 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_db32db9c7a66455da1e46a18395d775f > .item,
.items_f6b3f376e0a948d3a1f121a5fde1f801 > .item {
	display: flex;
	flex-direction: column;
}

/* Responsive Inline Simple List */

@media only screen and (max-width: 767px) {
    #page_cf0e21c5656841c6b7844d233dc6eaeb .listView.vAlgn1 .itemPreview.hasImg, 
    #page_cf0e21c5656841c6b7844d233dc6eaeb .listView.vAlgn2 .itemPreview.hasImg {
        display: block;
    }
    
    #page_cf0e21c5656841c6b7844d233dc6eaeb .listView .itemPreview.hasImg .itemImg {
        width: 100%;
        margin-bottom: 20px;
    }
    
    #page_cf0e21c5656841c6b7844d233dc6eaeb .listView .itemPreview.hasImg .itemContent {
        width: 100%;
    }
}

 /********************
ACCORDION BASE STYLES
-edit look of accordion here
********************/
.mwd-header {
    font-size: 30px;
  }
  
  .mwd-accordion {
    margin: 30px 0;
  }
  
  .mwd-accordion .mwd-accordion-item {
    border: 1px solid #dddddd;
    margin-bottom: 15px;
    background: white;
  }
  .mwd-accordion .mwd-accordion-item .mwd-accordion-title {
    font-size: 24px;
    background: #86bc4e;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
  }
  .mwd-accordion .mwd-accordion-item .mwd-accordion-content {
    color: black;
    padding: 20px 20px 0 20px;
  }
  .mwd-accordion .mwd-accordion-item .mwd-accordion p {
    margin: 0;
  }
  
  /********************
  BASE +/- STYLES
  ********************/
  .mwd-accordion-content {
    display: block;
    overflow: hidden;
    max-height: 100%;
    transition: all 0.3s ease-in-out;
  }
  
  .mwd-accordion-title > :first-child {
    max-width: 90%;
  }
  
  .mwd-accordion-title {
    position: relative;
  }
  .mwd-accordion-title .mwd-accordion-icon {
    position: absolute;
    background: white;
    width: 20px;
    height: 3px;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
  }
  .mwd-accordion-title .mwd-accordion-icon:after {
    content: "";
    position: absolute;
    background: white;
    width: 3px;
    height: 20px;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
  }
  
  .active .mwd-accordion-icon:after {
    transform: translateY(-50%) rotate(90deg);
  }