/* Equalize Simple List Blocks*/

/* Change item class here */
.items_c5217b8ab82a47938fd429a6bdea1e0b { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_c5217b8ab82a47938fd429a6bdea1e0b > .item {
	display: flex;
	flex-direction: column;
}
/* Equalize Simple List Blocks*/

/* Change item class here */
.items_e7283708d7a9448f9e6ce01676edf03b { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_e7283708d7a9448f9e6ce01676edf03b > .item {
	display: flex;
	flex-direction: column;
}

/* Nav Dropdowns */

.navContent ul li ul a {
    white-space: normal !important;
    overflow: visible !important;
    text-transform: Capitalize;
}

@media only screen and (min-width: 768px) {
    .navContent ul li ul {
        min-width: 250px !important;
        right: auto !important; 
    }
}

.fifty-fifty-hero {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.fifty-fifty-hero .hero-item {
    flex-basis: 50%;
    padding: 15px;
    width: 100%; 
}

.fifty-fifty-hero h2 {
    font-size: 40px;
    color: #1e79af;
    font-weight: normal;
    text-transform: uppercase;
    font-family: museosansheavy, Arial, Verdana, sans-serif;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-item.left a.button {
    margin-right: 20px;
}

.hero-item.left p{
    margin-bottom: 15px;    
}

.hero-item img {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
}

@media screen and (max-width: 768px){
    .fifty-fifty-hero {
        flex-direction: column;
    }
    .fifty-fifty-hero .hero-item {
        flex-basis: 100%;
        padding: 15px;
    }
}
/*Mad Accordion*/
.madwire-accordion {
    margin: 30px 0;
}

.madwire-accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.madwire-accordion-title {
    background: #074064; /* color of accordion title background */
    font-size: 24px;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.madwire-accordion-title::after {
    content: '+';
    font-size: 38px;
    margin: 0;
    padding: 0;
    line-height: .5;
}

.madwire-accordion-title.open::after {
    content: '-';
    font-size: 55px;
    margin: 0;
    padding: 0;
    line-height: 0;
    position: absolute;
    top: 43%;
    right: 20px;
}


.madwire-accordion-content {
    color: black; /* color of accordion content */
    padding: 10px 20px;
    background: white;
}