/* Button Padding - Sitewide */

.button, .navContent li .button {
    padding: 10px 30px;
}

/* 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; 
    }
}


/* Custom Font */

h1, h2, h3, h4, h5, h6, .contentTitle, .contentTitle a, .navContainer {
      font-family: "loew-variable",sans-serif !important;
    font-variation-settings: 'wdth' 125, 'wght' 950, 'ital' 0!important;
}

/* Homepage - Mobile Hero Styling */

@media only screen and (max-width: 768px) {
    div.blockWrap_ca1ee18fdbce4f3aa90e5a9067086564 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .blockWrap_ca1ee18fdbce4f3aa90e5a9067086564 .contentTitle {
    font-size: 40px;
    }
}


/* Flip 50-50 Stacking Order in Mobile */

.block_cb683718b70c4cc0b0ea8157d316a856  {
    display: flex;
    flex-flow: wrap-reverse;
}

/* Homepage Image Row Padding on Mobile */

@media only screen and (max-width: 768px) {
div.blockWrap_cb683718b70c4cc0b0ea8157d316a856 {
    padding-top: 30px;
}
.blockWrap_cb683718b70c4cc0b0ea8157d316a856 .blockContent .blockImg {
    padding-bottom: 0px !important;
    padding-top: 30px;
}
}

/* Homepage - Adjust Simple List Padding */

.items_c5217b8ab82a47938fd429a6bdea1e0b .itemContent ul {
    padding-bottom: .8em;
}

/* Responsive Inline Simple List - Where to Drive Page */

@media only screen and (max-width: 767px) {
    #page_f56c094156114d668b99719635aaaa7b .listView.vAlgn1 .itemPreview.hasImg, 
    #page_f56c094156114d668b99719635aaaa7b .listView.vAlgn2 .itemPreview.hasImg {
        display: block;
    }
    
    #page_f56c094156114d668b99719635aaaa7b .listView .itemPreview.hasImg .itemImg {
        width: 100%;
        margin-bottom: 20px;
    }
    
    #page_f56c094156114d668b99719635aaaa7b .listView .itemPreview.hasImg .itemContent {
        width: 100%;
    }
}

/*Mad Accordion*/
.madwire-accordion {
    margin: 30px 0;
}

.madwire-accordion-item {
    margin-bottom: 15px;
}

.madwire-accordion-title {
    background: #da2027; /* 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: #3f4040; /* color of accordion content */
    padding: 10px 20px;
    background: #ffffff;
}