/* 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; 
    }
}

/* Equalize Simple List Blocks HOME PAGE*/

/* 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;
}

/* Equalize Simple List Blocks IN STORE*/

/* Change item class here */
.items_e7fc84902a8e4fa4b9f4d064c25df408 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_e7fc84902a8e4fa4b9f4d064c25df408 > .item {
	display: flex;
	flex-direction: column;
}

/* Equalize Simple List Blocks ABOUT US*/

/* Change item class here */
.items_ca4f09f48dda4091aa3d5f81e6065a08 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_ca4f09f48dda4091aa3d5f81e6065a08 > .item {
	display: flex;
	flex-direction: column;
}

/* Equalize Simple List Blocks ABOUT US*/

/* Change item class here */
.items_bdf20a1a9b7d42e1acba819e76a90b3a { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_bdf20a1a9b7d42e1acba819e76a90b3a > .item {
	display: flex;
	flex-direction: column;
}

/* Equalize Simple List Blocks JOIN THE TEAM*/

/* Change item class here */
.items_df1437421c914e8cb6e7cc2345efdd8f { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_df1437421c914e8cb6e7cc2345efdd8f > .item {
	display: flex;
	flex-direction: column;
}

/* Equalize Simple List Blocks JOIN THE TEAM*/

/* Change item class here */
.items_fc4a939181164dffad3c96be0e4d6103 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_fc4a939181164dffad3c96be0e4d6103 > .item {
	display: flex;
	flex-direction: column;
}

/* Equalize Simple List Blocks JOIN THE TEAM*/

/* Change item class here */
.items_afb98a2d586345fa9804004aa9aa3a15 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_afb98a2d586345fa9804004aa9aa3a15 > .item {
	display: flex;
	flex-direction: column;
}

/* Equalize Simple List Blocks CAREER SUPPORT*/

/* Change item class here */
.items_b2fa8f5230a74398bb58c9e0cadc1990 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_b2fa8f5230a74398bb58c9e0cadc1990 > .item {
	display: flex;
	flex-direction: column;
}

/* Equalize Simple List Blocks CAREER SUPPORT*/

/* Change item class here */
.items_f507101d3f3d4e03bca8d3ae810fd76d { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_f507101d3f3d4e03bca8d3ae810fd76d > .item {
	display: flex;
	flex-direction: column;
}

/* Equalize Simple List Blocks CAREER SUPPORT*/

/* Change item class here */
.items_f0a6490de91b4058ae32e3583fb5eef8 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_f0a6490de91b4058ae32e3583fb5eef8 > .item {
	display: flex;
	flex-direction: column;
}

 /********************
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 #00539F;
    margin-bottom: 15px;
  }
  .mwd-accordion .mwd-accordion-item .mwd-accordion-title {
    font-size: 24px;
    background: #00539F;
    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);
  }