/* 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 Import - Overrides Sitewide Settings */

h1, h2, h3, h4, h5, h6, .pageTitle, .contentTitle, .contentTitle a, .navContainer, .button, .navContent li .button {
font-family: "swear-display", serif;
font-weight: 500;
font-style: normal;
}

/* Button Padding - Sitewide */

.button, .navContent li .button {
    padding: 10px 30px;
}

/* Homepage - Mobile Hero Styling */

@media only screen and (max-width: 767px) {
    div.blockWrap_cdba65b168bd40e9b4690d6aa822de85 {
        padding-top: 30px;
        padding-bottom: 10px;
    }
    .blockWrap_cdba65b168bd40e9b4690d6aa822de85 .contentTitle {
    font-size: 40px;
    }
}

/* Flip 50-50 Stacking Order in Mobile - Homepage */
    @media only screen and (max-width: 767px) {
    .block_cdba65b168bd40e9b4690d6aa822de85 {
        display: flex;
        flex-flow: column-reverse;
    }
    .block_cdba65b168bd40e9b4690d6aa822de85 .blockImg {
        padding-top: 20px;
}
}

/* Mobile Padding on Image Rows Sitewide */

@media only screen and (max-width: 767px) {
    .blockContentBleed .blockText {
        padding-bottom: 30px;
    }
}

/* Accordian Dropdown Button Styles */
.accordion {
    background-color: #eee;
    color: #550677;
    font-size: 20px;
    cursor: pointer;
    margin-top: 10px;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: 0px;
    outline: none;
    transition: 0.4s;
}

/* Accordian Button Hover */
.active, .accordion:hover {
    background-color: #dfdfdf;
}

/* Accordian Button Icon */
.accordion:after {
    content: '+'; /* Unicode character for "plus" sign (+) */
    font-size: 20px;
    color: #c90664;
    margin-left: 20px;
}

.active:after {
    content: "-"; /* Unicode character for "minus" sign (-) */
}

/* Accordian Panel Styles */
.panel {
    padding: 10px 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}