/********************
FULL WIDTH NAV TITLES
********************/
.navContent ul li ul, .navContent ul li:first-child ul {
    max-width:471px;
}

/********************
MAKE CARDS EQUAL HEIGHTS AND PIN BUTTON TO BOTTOM
********************/
/*Equalize column heights and pin buttons to bottom*/
/*Only apply to desktop*/
@media only screen and (min-width: 992px) {
    /*PARENT CONTAINER*/
    /*must set height based on content*/
    /*must set height because all child elements are absolutely positioned and collapse the parent height to 0*/
  .items_c5217b8ab82a47938fd429a6bdea1e0b {
    height: 350px;
  }
    /*CHILD CONTAINER*/
    /*fills 100% of parent container*/
  .items_c5217b8ab82a47938fd429a6bdea1e0b .item {
    height: 100%;
  }
    /*2ND CHILD OF .item*/
    /*fills 100% of container*/
  .items_c5217b8ab82a47938fd429a6bdea1e0b .item .itemContent {
    height: 100%;
  }
    /*2ND CHILD OF .itemContent*/
    /*creates flex container with stacked elements*/
    /*height dependent on content*/
  .items_c5217b8ab82a47938fd429a6bdea1e0b .item .itemContent .itemInnerContent {
    display: flex;
    flex-direction: column;
    height: 45%;
  }
    /*2ND CHILD OF .itemInnerContent*/
    /*will change depending on the number of paragraphs*/
    /*typically button is last so it will be the pseudo :last-child or :last-of-type*/
  .items_c5217b8ab82a47938fd429a6bdea1e0b .item .itemContent .itemInnerContent p:nth-child(2) {
    margin-top: auto;
    padding-bottom: 0;
  }
    /*I DON'T KNOW WHAT THIS IS*/
    /*invisible added element of the last column - doesn't appear in the builder markup*/
    /*may or may not always appear in the last column after the button*/
  .items_c5217b8ab82a47938fd429a6bdea1e0b .item .itemContent .itemInnerContent p:nth-child(3) {
    display: none;
  }
}

/* Equalize Simple List Blocks*/

/* Change item class here */
.items_d86a08168fde41fb9360077d3464b182 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_d86a08168fde41fb9360077d3464b182 > .item {
	display: flex;
	flex-direction: column;
}

/* Equalize Simple List Blocks*/

/* Change item class here */
.items_e827df1c91b94387933ac674ffed7287 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_e827df1c91b94387933ac674ffed7287 > .item {
	display: flex;
	flex-direction: column;
}


/* Equalize Simple List Blocks*/

/* Change item class here */
.items_cf613fb800a04a299de124c11c4fe280 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_cf613fb800a04a299de124c11c4fe280 > .item {
	display: flex;
	flex-direction: column;
}

/* Equalize Simple List Blocks*/

/* Change item class here */
.items_a443076860574df5a178e206dcf99342 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_a443076860574df5a178e206dcf99342 > .item {
	display: flex;
	flex-direction: column;
}

 /********************
ACCORDION BASE STYLES
-edit look of accordion here - FAQ Page
********************/
.mwd-header {
    font-size: 30px;
  }
  
  .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: 24px;
    background: #1c3d56;
    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);
  }