/*Homepage Location 2 columns*/
* {
  box-sizing: border-box;
}

/* Two equal columns that float next to each other */
.column {
  text-align: center;
  float: left;
  width: 50%;
  padding: 15px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
  /* For mobile responsive */
@media only screen and (max-width: 768px) {
  [class*="column"] {
    width: 100%;
  }
}

/********************
ACCORDION BASE STYLES
-edit look of accordion here
********************/
.accordion {
  margin: 30px 0;
}
.accordion p {
  margin: 0;
}
.accordion-title {
  padding: 10px 20px;
}
.accordion-title {
background-image: linear-gradient(to right, #0d8dca, #35e7c8);
  color: white;
  cursor: pointer;
}
.accordion-inner-wrap {
  border: 1px solid #dadada;
  margin-bottom: 10px;
}
.accordion-content {
  color: black;
  box-shadow: 0px 0px 0px 0px black;
  padding: 20px;
  background-color: white;
}
/********************
PLUS/MINUS SIGNS ON ACCORDION
********************/
.accordion-title {
  position: relative;
}
.accordion-indicator {
  position: absolute;
  transition: all 0.3s ease-in-out;
  background: white;
}
.accordion-indicator-minus {
  width: 20px;
  height: 3px;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}
/********************
uncomment if only first is shown by default
********************/
.accordion-inner-wrap:first-of-type .accordion-indicator-plus {
  width: 3px;
  height: 20px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
}
.accordion-inner-wrap:first-of-type .active .accordion-indicator-plus {
  transform: translateY(-50%) rotate(90deg);
}
.accordion-indicator-plus {
  width: 3px;
  height: 20px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.active .accordion-indicator-plus {
  transform: translateY(-50%) rotate(0deg);
}

/* Equalize Simple List Blocks*/

/* Change item class here */
.items_a012da523d3f494692608dbf0847d533 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.items_a012da523d3f494692608dbf0847d533 > .item {
	display: flex;
	flex-direction: column;
}
/* 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; 
    }
}