/* === Custom Block Styling === */
.dropdownBlock{
    padding: var(--CB-padding-top) var(--CB-padding-right) var(--CB-padding-bottom) var(--CB-padding-left);
    margin: var(--CB-margin-top) var(--CB-margin-bottom);
    background-color: var(--CB-background-color);
    background-image: var(--CB-background-image);
    background-position: var(--CB-background-position);
    background-size: cover;
}

.dropdownBlock__row{
    background-color: var(--FC-white);
    padding: 32px;
    border-radius: 25px;
    border: solid 1px #707070;
    margin-bottom: 20px;
}

.dropdownBlock__headingWrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.dropdownBlock__heading{
    padding-right: 16px;
    margin-bottom: 0px !important;
}
.dropdownBlock__dropdownIcon {
    font-size: 34px;
    background-color: var(--FC-primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 5px 12px 5px;
    color: white;
    transition: background-color .2s ease-in-out;
}

.dropdownBlock__dropdownIcon:hover{
    background-color: var(--FC-secondary-color);
    cursor: pointer;
    transition: background-color .2s ease-in-out;
}
.dropdownBlock__dropdownIcon.active{
    background-color: var(--FC-secondary-color);
}

.dropdownBlock__copyWrapper{
    height: 0;
    overflow: hidden;
    transition: var(--FC-default-transition);
}
.dropdownBlock__copyWrapper.active{
    padding-top: 32px;
    height: auto;
    transition: var(--FC-default-transition);

}

.dropdownBlock__copy ul{
    column-count: 2;
}

.dropdownBlock__copy ul ul {
    column-count: 1;
}

/* === Image Row Styles === */
.dropdownBlock__imageRow{
    background-color: var(--FC-white);
    border-radius: 25px;
    border: solid 1px #707070;
    overflow: hidden;
    margin-bottom: 20px;
    transition: background-color .2s ease-in;
}
.dropdownBlock__imageRowEmptyCol{
    background-position: center;
    background-size: cover;
}
.dropdownBlock__imageRowCopyRow{
    padding: 85px 32px;
    background-color: var(--FC-white);
}
.dropdownBlock__imageRow .dropdownBlock__dropdownIcon.active{
    background-color: var(--FC-white);
    color: var(--FC-primary-color);
}
.dropdownBlock__imageRow .dropdownBlock__imageRowCopyRow.active{
    background-color: var(--FC-secondary-color);
    transition: background-color .2s ease-in;
}
.dropdownBlock__imageRow .dropdownBlock__heading.active{
    color: var(--FC-white);
}
/* .dropdownBlock__imageRow .dropdownBlock__copyWrapper.active{
    padding: 32px;
} */
.dropdownBlock__innerCopyWrapper{
    padding: 0px 32px 32px 32px;
}
/* .dropdownBlock__copyWrapper a {
    top: -20px;
    color: var(--FC-editor-color, var(--FC-white));
    background-color: var(--FC-editor-bg-color, var(--FC-primary-color));
    border-radius: var(--FC-standard-radius) !important;
    border-color: var(--FC-editor-bg-color, var(--FC-primary-color));
    border-width: 2px !important;
    border-style: solid !important;
    padding: 16px 25px !important;
    width: fit-content;
    font-family: var(--FC-tertiary-font) !important;
    font-size: var(--FC-font-size-18) !important;
    position: relative !important;
    transition: var(--FC-default-transition) !important;
    box-shadow: none !important;
    font-weight: 400 !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: normal !important;
} */

/* .dropdownBlock__copyWrapper a:hover {
    color: var(--FC-primary-color) !important;
    border-color: var(--FC-primary-color) !important;
    background-color: var(--FC-white) !important;
} */

/* .dropdownBlock__copy a .no-button-link{
    font-family: var(--FC-tertiary-font) !important;
    font-size: var(--FC-font-size-18) !important;
    position: relative !important;
    transition: var(--FC-default-transition) !important;
    box-shadow: none !important;
    font-weight: 400 !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: normal !important;
} */

.dropdownBlock__imageRow.Active .dropdownBlock__imageRowCopyRow {
    background: var(--FC-secondary-color);
}
.dropdownBlock__imageRow.Active .dropdownBlock__imageRowCopyRow h5 {
    color: var(--FC-white);
}


.dropdownBlock__innerCopyWrapper ul {
    list-style: none;
}
.dropdownBlock__innerCopyWrapper ul li {
    position: relative;
    padding-left: 10px;
}
.dropdownBlock__innerCopyWrapper ul li:before {
    content: "+";
    position: relative;
    left: -10px;
    font-weight: 900;
    color: var(--FC-primary-color);
}

.sectionHeader {
    margin-bottom: 50px;
}

.customImageNAV img {
    max-width: 80%;
    margin-right: 0;
    border-radius: 50% !important;
    border: solid 1px red;
    transition: var(--FC-default-transition);
/*    opacity: .6;*/
    padding: 4px;
}

.customImageNAV img:before {
    content: "";
}

.customImageNAV img:hover,
.customImageNAV img.active {
/*    cursor: pointer;*/
/*    border: solid 5px #ffffff;*/
/*    opacity: 1;*/
/*    padding: 0;*/
}
.NAVImageBox {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
}


@media screen and (max-width: 1399.98px){
    section.dropdownBlock.fillerBlock{
        padding-left: 3px !important;
        padding-right: 3px !important;
    }
  }

@media screen and (max-width: 767.98px){
    section.dropdownBlock.fillerBlock{
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .customImageNAV{
        padding-top: 25px;
    }
    .NAVImageBox.first{
        justify-content: flex-start;
    }
    .NAVImageBox.second{
        justify-content: center;
    }
    .NAVImageBox.third{
        justify-content: flex-end;
    }
    .dropdownBlock__imageRowCopyRow{
        padding: 32px;
    }
}