/*------------Button Styles----------*/
button, .button, .navContainer,
.navContent li .button {
    padding: 15px 25px;
}

/*---------- Equalize Simple List Blocks----------*/

/* Change item class here */
.items_e9f3e4c9a3e44ce08d1a6603c3630cfe,
.items_c83406eb45b544f6accaf3ff9217ff64,
.items_ec851ca6070d421594f9f199780b7a1b,
.items_ca3e1bd6796d420eadbf01c7df40234a,
.items_ce978322c4d94ca1bd75a836aeb7f018,
.items_a6de3514a3614d03b9f72c28ed204d94 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_e9f3e4c9a3e44ce08d1a6603c3630cfe > .item,
.items_c83406eb45b544f6accaf3ff9217ff64 > .item,
.items_ec851ca6070d421594f9f199780b7a1b > .item,
.items_ca3e1bd6796d420eadbf01c7df40234a > .item,
.items_ce978322c4d94ca1bd75a836aeb7f018 > .item,
.items_a6de3514a3614d03b9f72c28ed204d94 > .item {
	display: flex;
	flex-direction: column;
}

/* ----------Equalize Simple List Blocks - Pin Buttons to Bottom----------*/

/* Change item class here */
.items_eeeb68dd5d7841cb946eaec8b2700d6d { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_eeeb68dd5d7841cb946eaec8b2700d6d > .item {
	display: flex;
	flex-direction: column;
  position: relative;
}

/* Change item class here */
.items_eeeb68dd5d7841cb946eaec8b2700d6d > .item a.button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

/* Change item class here */
.items_eeeb68dd5d7841cb946eaec8b2700d6d > .item p {
    margin-bottom: 45px;
}


/*---------- Custom Mobile Background Image---------- */

@media only screen and (max-width: 768px) {
    div.blockWrap_f22f2c857d1e449d9ce54c2881fc114a,
    div.blockWrap_c83406eb45b544f6accaf3ff9217ff64,
    div.blockWrap_fbc341eeba4647feb083a4dbc81f14ac,
    div.blockWrap_b23f453d999548dba825d25131ec0807,
    div.blockWrap_ec851ca6070d421594f9f199780b7a1b{
        background-image: url(https://static.mywebsites360.com/a9671784a0aa4917bbaca37b2ec56268/i/a238f71408094af1aad9bbfb4dd53df6/1/5feFb8zhrk/2__1__720.png);
    }
}


/*---------- Nav Spacing Fix----------*/
@media screen and (min-width: 768px) {
.navContainer {
    padding-bottom: 38px!important;
    padding-top: 3px!important;
}
}

@media screen and (max-width: 767px) {
    .headerContent {
        padding-bottom: 0px!important
    }
}

/*---------- 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; 
    }
}

/*---------- 2 Column Form ----------*/
@media only screen and (min-width: 768px) {
    #madFormContainer,
    #madHeroContent {
        width: 50%;
        float: left;
    }

    div#madHero {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
    }
}

.madTitle {
    font-size: 30px; 
    color: #000;
    text-align: left;
}

.madContent {
    font-size: 18px; 
    color: #000;
    text-align: left;
}

.madButton {
    color: #fff;
    background-color: #000;
    border-color: #000;
    padding: 10px 30px;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 20px;
}

.madButton:hover {
    color: #fff;
    background-color: #eee;
    border-color: #eee;
}


 /********************
ACCORDION BASE STYLES
-edit look of accordion here
********************/
.mwd-header {
    font-size: 24px;
  }
  
  .mwd-accordion {
    margin: 30px 0;
  }
  
  .mwd-accordion .mwd-accordion-item {
    border: 1px solid #dddddd;
    margin-bottom: 15px;
  }
  .mwd-accordion .mwd-accordion-item .mwd-accordion-title {
    font-size: 20px;
    background: #19425C;
    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);
  }