/**
 * Highlight Box
 */
.bw-highlight-box {
    padding: 1.875rem 2.188rem;
    border-radius: 0.3125rem;
    border: 1px solid #E7EAED;
    background: rgba(240, 241, 245, 0.50);
    margin-top: 1.875rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.bw-highlight-box h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 0;
}
.bw-highlight-box__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-left: 30px;
    margin: 0 0 0 15px;
    list-style: none;
}
.bw-highlight-box__list li {
    position: relative;
    line-height: 27px;
    font-weight: 600;
}
.bw-highlight-box__list div {
    position: absolute;
    top: 0;
    left: -45px;
    display: inline-block;
    width: 30px;
    height: 27px;
}
@media screen and (max-width: 1023px) {
    .bw-highlight-box {
        margin-top: 1.25rem;
    }
}
/**
 * Quote Box
 */
.bw-quote-box {
    padding: 1.875rem 2.188rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
    border-radius: 5px;
    border-left: 5px solid #101D54;
    background: #FFF;
    margin-top: 1.875rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.bw-quote-box h3 {
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    line-height: 34px;
    margin-bottom: 0;
}
.bw-quote-box__text {
    font-style: italic;
    font-weight: 500;
    line-height: 28px;
}
.bw-quote-box__text p:last-child {
    margin-bottom: 0;
}
.bw-quote-box__icon {
    display: inline-block;
    float: right;
    width: 37px;
    height: 32px;
    background: url("data:image/svg+xml,%3Csvg width='38' height='33' viewBox='0 0 38 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Vector'%3E%3Cpath d='M37.7048 16.7588L37.7033 16.7588C37.8157 29.439 28.589 32.3119 24.0331 32.2595L23.9714 29.0731C29.9867 27.792 29.8684 21.1765 29.7834 16.9123L21.0956 17.0806L20.7709 0.321881L37.38 2.47955e-05L37.7048 16.7588Z' fill='%23101D54'/%3E%3Cpath d='M17.3208 17.1538L17.3194 17.1538C17.4317 29.834 8.20503 32.7069 3.64921 32.6545L3.58746 29.4681C9.60279 28.187 9.48449 21.5715 9.3995 17.3073L0.711712 17.4756L0.386956 0.716887L16.9961 0.39503L17.3208 17.1538Z' fill='%23101D54'/%3E%3C/g%3E%3C/svg%3E%0A");
}
@media screen and (max-width: 1023px) {
    .bw-quote-box {
        margin-top: 1.25rem;
    }
}
/**
 *  Cards
 */
.bw-cards {
    container: bw-cards / inline-size;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.bw-cards__container {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.25rem;
}
.bw-cards__item {
    padding: 2.5rem 1.563rem 1.563rem 1.563rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.bw-cards__title {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bw-cards a {
    color: #000;
    text-decoration: none;
}
.bw-cards h3 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 0;
}
.bw-cards__content {
    flex-grow: 1;
}
.bw-cards__content p {
    margin-bottom: 0;
    text-align: center;
}
.bw-cards__button {
    display: flex;
}
.bw-cards__button .tops.geobutton,
.bw-cards__button .ctabutton {
    width: 100% !important;
    margin-bottom: 0 !important;
}
.bw-cards__button .tops.geobutton > div,
.bw-cards__button .ctabutton > div {
    margin: 0 !important;
    display: block !important;
}
.bw-cards__button button {
    margin-bottom: 0 !important;
    min-height: 80px !important;
    max-width: 300px;
    width: 100%!important;
}
@container bw-cards (width > 569px ) {
    .bw-cards__container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .bw-cards__button button {
        width: 100% !important;
        max-width: none;
    }
}
@container bw-cards (width > 1219px ) {
    .bw-cards__container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .bw-cards__content {
        text-align: left;
    }
}

/**
 * Banner
 **/
.bw-banner {
    margin-top: 1.875rem;
}
.bw-banner__image {
    border-radius: 5px;
}
.bw-banner__image--mobile {
    display: none;
}
@media screen and (max-width: 1024px) {
    .bw-banner {
        margin-top: 1.25rem;
    }
}
@media screen and (max-width: 501px) {
    .bw-banner__image--mobile {
        display: block;
    }
    .bw-banner__image:not(:only-child) {
        display: none;
    }
    .bw-banner {
        position: relative;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
    }
}
/**
 *  Expert box
 */
.bw-expert-box {
    padding: 1.875rem;
    border-left: 5px solid #222222;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
    display: grid;
    grid-template-columns: 99px 1fr;
    gap: 1.875rem;
    margin-top: 1.875rem;
}
.bw-expert-box__image img {
    width: 99px;
    border-radius: 50%;
}
.bw-expert-box__name {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.625rem;
}
.bw-expert-box__title {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border-radius: 4px;
    padding: 0 0.375rem;
}
.bw-expert-box__text {
    font-style: italic;
    margin-bottom: 1.25rem;
}
.bw-author-box__text p:last-child {
    margin-bottom: 0;
}
.bw-icon-quotes {
    float: right;
}
@media screen and (max-width: 1023px) {
    .bw-expert-box {
        grid-template-columns: 1fr;
        margin-top: 1.25rem;
    }
}
/**
 * FAQ
 */
.bw-faq {
    margin-top: 1.875rem;
}
.bw-faq h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    margin-bottom: 1.25rem;
}
.bw-faq__item {
    border-top: 1px solid #BFC2CC;
}
.bw-faq__item:last-child {
    border-bottom: 1px solid #BFC2CC;
}
.bw-faq__item--question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 1.25rem 0;
}
.bw-faq__item--question h3 {
    width: 90%;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    margin: 0;
}
.bw-icon-chevron-down {
    transition: all 0.3s ease;
}
.bw-faq__item--question.active .bw-icon-chevron-down {
    transform: rotate(180deg);
    transition: all 0.3s ease;
}
.bw-faq__item--answer {
    display: none;
    padding-bottom: 1.25rem;
}
.bw-faq__item--answer p {
    margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
    .bw-faq {
        margin-top: 1.25rem;
    }
}
/**
 * Video Banner
 */
.bw-video-banner {
    margin-top: 1.875rem;
}
.bw-video-banner__container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 450px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 5px;
}
.bw-video-banner__preview {
    width: 100%;
    height: auto;
}
.bw-video-banner__container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    max-width: 800px;
}
.bw-video-banner__icon--play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 100px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 76 76' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Play. Button'%3E%3Ccircle id='Ellipse 1' cx='38' cy='38' r='38' fill='white'/%3E%3Cpath id='Polygon 1' d='M52.4395 38L29.6395 50.92L29.6395 25.08L52.4395 38Z' fill='%231E1E1E'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.bw-video-banner p {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 1.25rem;
    margin-bottom: 0;
}
@media screen and (max-width: 899px) {
    .bw-video-banner {
        margin-top: 1.25rem;
    }
    .bw-video-banner__container {
        max-width: 400px;
        height: 225px;
    }
    .bw-video-banner p {
        font-size: 17px;
        margin-top: 0.625rem;
    }
    .bw-video-banner__embed {
        margin-bottom: 0.625rem;
    }
    .bw-video-banner__icon--play {
        width: 75px;
        height: 75px;
    }

}
@media screen and (max-width: 500px) {
    .bw-video-banner p {
        font-size: 16px;
    }
    .bw-video-banner__container {
        max-width: 288px;
        height: 162px;
    }
    .bw-video-banner__icon--play {
        width: 50px;
        height: 50px;
    }
}
@media screen and (max-width: 320px) {
    .bw-video-banner__container {
        padding-bottom: 56.25%;
        height: 0;
    }
}

/**
 * Table
 */
.bw-table {
    margin-top: 1.875rem;
}
.bw-table table,
.bw-table__pros-cons--mobile > div {
    border-radius: 0.3125rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.10);
    overflow: hidden;
}
.bw-table__centered {
    text-align: center;
}
.bw-table tr {
    display: grid;
}
.bw-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #E5E7EB;
    font-size: 18px;
}
.bw-table td .bw-table__text {
    line-height: 25px;
}

.bw-table td:has(.bw-table__button) .bw-table__text {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    height: 50px;
}
.bw-table td .bw-table__text.expanded {
    height: auto;
    text-overflow: unset;
}
.bw-table td .bw-table__text p:last-child {
    margin-bottom: 0;
}
.bw-table__button {
    cursor: pointer;
    align-items: center;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    margin-top: 0.25rem;
}
.bw-table__button:after,
.bw-table__button:after {
    content: "";
    display: inline-block;
    width: .75rem;
    height: .5rem;
    margin-left: .313rem;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath id='Vector 1 (Stroke)' fill-rule='evenodd' clip-rule='evenodd' d='M11.6402 0.231804C11.2159 -0.12176 10.5853 -0.0644363 10.2318 0.359841L5.99997 5.43798L1.7682 0.359841C1.41463 -0.0644363 0.784067 -0.12176 0.359791 0.231804C-0.0644865 0.585368 -0.12181 1.21593 0.231753 1.64021L5.99997 8.56207L11.7682 1.64021C12.1218 1.21593 12.0644 0.585368 11.6402 0.231804Z' fill='%23343A40'/%3E%3C/svg%3E%0A");
    transition: all 0.3s ease;
}
.bw-table__button.expanded:after {
    transform: rotate(180deg);
}
.bw-table__header td {
    border-bottom: none;
}
.bw-table__header .bw-table__text {
    font-size: 20px;
}
.bw-table td:not(:last-child) {
    border-right: 1px solid #E5E7EB;
}
.bw-table__header {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.875rem;
    background: var(--bw-table-header-bg-clr, #F4F5F8);
    color: var(--bw-table-header-text-clr, #343A40);
}
.bw-table__cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bw-table__cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 1023px) {
    .bw-table {
        margin-top: 1.25rem;
    }
}
@media screen and (max-width: 430px) {
    .bw-table__cols-3.bw-table__header {
        display: none;
    }
    .bw-table__cols-3 {
        grid-template-columns: 1fr;
        border-radius: 0.3125rem;
        border: 1px solid #E5E7EB;
        box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.10);
    }
    .bw-table__cols-3:not(:last-child) {
        margin-bottom: 1.25rem;
    }
    .bw-table__cols-3 td {
        padding: 0;
        display: flex;
        align-items: center;
    }
    .bw-table__cols-3 .bw-table__wrapper {
        display: inline-block;
        padding:  1.25rem;
        width: 50%;
    }
    .bw-table__cols-3 td:not([data-label]) .bw-table__wrapper {
        width: 100%;
    }
    .bw-table__cols-3 td::before {
        content: attr(data-label);
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        padding: 1rem 1.25rem;
        background: var(--bw-table-header-bg-clr, #F4F5F8);
        color: var(--bw-table-header-text-clr, #343A40);
        font-weight: 700;
        width: 50%;
        align-self: stretch;
    }
    .bw-table__cols-3 td:not([data-label])::before {
        content: none;
    }
    .bw-table table:has(.bw-table__cols-3) {
        border: none;
        box-shadow: none;
    }
}

.bw-table__pros-cons tr {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bw-table__pros,
.bw-table__cons {
    display: flex;
    gap: 0.4rem;
    line-height: 27px;
}
.bw-table__pros p:last-child,
.bw-table__cons p:last-child {
    margin-bottom: 0;
}
.bw-table__cons::before,
.bw-table__pros::before {
    position: relative;
    left: -.25rem;
    width: 34px;
    height: 33px;
    top: -3.5px;
}
.bw-table__cons::before {
    content: url("data:image/svg+xml,%3Csvg width='34' height='33' viewBox='0 0 34 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.5322 9L9.19971 24' stroke='%23FF2D3A' stroke-width='3' stroke-miterlimit='10'/%3E%3Cpath d='M24.5322 24L9.19971 9' stroke='%23FF2D3A' stroke-width='3' stroke-miterlimit='10'/%3E%3C/svg%3E%0A");
}
.bw-table__pros::before {
    content: url("data:image/svg+xml,%3Csvg width='34' height='33' viewBox='0 0 34 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='icon_Pros'%3E%3Cpath id='Path 1036' d='M6.85352 15.6205L12.8813 22.4961L26.2052 11.2761' stroke='%231B8E2D' stroke-width='4' stroke-miterlimit='10'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.bw-table__header--plain.bw-table__header {
    border-bottom: 1px solid #E5E7EB;
}
.bw-table__pros-cons--mobile {
    display: none;
}
.bw-table__pros-cons--mobile > div:first-child {
    margin-bottom: 1.25rem;
}
.bw-table__pros-cons--mobile .bw-table__header {
    padding: 1.25rem;
}
.bw-table__pros-cons--mobile .bw-table__pros,
.bw-table__pros-cons--mobile .bw-table__cons {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #E5E7EB;
}
@media screen and (max-width: 430px) {
    .bw-table__pros-cons {
        display: none;
    }
    .bw-table__pros-cons--mobile {
        display: block;
    }
}
/**
 * initial header field hiding in the admin for BW Table
 */
.acf-flexible-content div[data-layout="three_cols"] .acf-table tr:not(:first-child) .acf-field-true-false:not(:first-child),
.acf-flexible-content div[data-layout="two_cols"] .acf-table tr:not(:first-child) .acf-field-true-false {
    display: none;
}