/* Equalize Simple List Blocks*/

/* Change item class here */
.cols4, .cols3, .cols2 { 
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	min-height: 100%;
}

/* Change item class here */
.cols4 > .item,
.cols3 > .item,
.cols2 > .item{
	display: flex;
	flex-direction: column;
}
.items_e9da1e8ba90d444f9ac7a3171ac54a3c ul {
  list-style: none!important;
}
.items_e9da1e8ba90d444f9ac7a3171ac54a3c li{
      padding-bottom: 20px!important;
}

.items_e9da1e8ba90d444f9ac7a3171ac54a3c ul li:before {
  content: '✓';
    color: #d11a15!important;
    font-size: 1.5em;

}
strong{
    font-size:22px!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; 
    }
}

.button {padding: 10px 20px;}

.mw-iframe-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh; /* Adjust as needed */
  box-sizing: border-box;
  padding: 1rem;
}

.mw-iframe-container {
  position: relative;
  width: 100%;
  max-width: 1200px; /* Optional: set a max width */
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.mw-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/*Mad Accordion*/
.madwire-accordion {
    margin: 30px 0;
}

.madwire-accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.madwire-accordion-title {
    background: #144E9B; /* 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;
}