/* 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; 
    }
}

/* Responsive Image Swap */

@media only screen and (max-width: 767px) {
    .blockWrap_ca668266893e4f2ca5445f1ef848002c img {
        content: url(https://static.mywebsites360.com/ac6d90bf421445d69c9d9764dd03ae8c/i/f9a550b0a6044520912ab99520fdd5ab/1/5feFb8zhrk/Mobile%20Icon.png);
    }
}
/* Responsive Hero Styling */

@media only screen and (max-width: 767px) {
    div.blockWrap_ca668266893e4f2ca5445f1ef848002c {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .blockWrap_ca668266893e4f2ca5445f1ef848002c .contentTitle {
        font-size: 50px; 
        text-align:center;
    }
        .blockWrap_ca668266893e4f2ca5445f1ef848002c .blockInnerContent {
        text-align:center;
    }
}

/* Responsive Image Swap */


/*Mad Accordion*/
.madwire-accordion {
    margin: 30px 0;
}

.madwire-accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.madwire-accordion-title {
    background: #070707; /* 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;
}