.section-billing-insurance {
    background: #fff;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.section-billing-insurance .wrap {
    width: 100%;
    max-width: 1240px;
    padding: 100px 20px;
}

.section-billing-insurance .wrap .columns {
    display: flex;
    flex-flow: column nowrap;
    gap: 60px;
}

.section-billing-insurance .wrap .columns .column {
    width: 100%;
}

.section-billing-insurance .wrap .columns .column-header {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 16px;
}

.section-billing-insurance .wrap .columns .column-header .section-sub-title {
    color: #D0576E;
    text-align: center;
    font-family: 'Funnel Sans';
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.section-billing-insurance .wrap .columns .column-header .section-title {
    color: #041C4C;
    text-align: center;

    /* Desktop/H2 - Desktop */
    font-family: 'Lato', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    /* 125% */
    text-transform: capitalize;
    margin: 0;
}

.section-billing-insurance .wrap .columns .column-header .wysiwyg-content {
    width: 100%;
    max-width: 1048px;
    margin: 0 auto;
    color: #58585A;
    text-align: center;
    font-family: 'Funnel Sans';
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.section-billing-insurance .wrap .columns .column-header .wysiwyg-content * {
    text-align: center;
}

.section-billing-insurance .wrap .columns .column-body .galleries {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.section-billing-insurance .wrap .columns .column-body .galleries .gallery-item {
    width: 100%;
    max-width: calc(100% /7 - 18px);
    height: 70px;
}

.section-billing-insurance .wrap .columns .column-body .galleries .gallery-item .gallery-item-image-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 6px 0;
    justify-content: center;
}

.section-billing-insurance .wrap .columns .column-body .galleries .gallery-item .gallery-item-image-wrap img {
    max-width: 85%;
    -o-object-fit: contain;
    object-fit: contain;
    height: 100%;
}

.section-billing-insurance .wrap .columns .button-wrapper {
    margin-top: 20px;
}

.section-billing-insurance .wrap .columns .button-wrapper>a {
    padding: 20px 40px 20px 40px;
    border-radius: 40px;
    background: #214A8B;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    -webkit-animation: pulse-billing 2s infinite;
    animation: pulse-billing 2s infinite;
    transition: all ease 200ms;
    text-align: center;
}

.section-billing-insurance .wrap .columns .button-wrapper>a:hover {
    background: #3FA9F5;
    -webkit-animation: pulse-billing-hover 2s infinite;
    animation: pulse-billing-hover 2s infinite;
}

@-webkit-keyframes pulse-billing {
    0% {
        -webkit-box-shadow: 0 0 0 0 #214A8B;
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(63, 169, 245, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(63, 169, 245, 0);
    }
}

@keyframes pulse-billing {
    0% {
        box-shadow: 0 0 0 0 #214A8B;
    }

    70% {
        box-shadow: 0 0 0 10px rgba(63, 169, 245, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(63, 169, 245, 0);
    }
}

@-webkit-keyframes pulse-billing-hover {
    0% {
        box-shadow: 0 0 0 0 #3FA9F5;
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 87, 51, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 51, 0);
    }
}

@keyframes pulse-billing-hover {
    0% {
        box-shadow: 0 0 0 0 #3FA9F5;
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 87, 51, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 87, 51, 0);
    }
}

@media only screen and (max-width: 1024px) {
    .section-billing-insurance .wrap {
        padding: 60px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .section-billing-insurance .wrap {
        padding: 40px 20px;
    }

    .section-billing-insurance .wrap .columns {
        gap: 24px;
    }

    .section-billing-insurance .wrap .columns .column-header {
        gap: 0px;
    }

    .section-billing-insurance .wrap .columns .column-header .section-sub-title {
        font-size: 14px;
        line-height: 22px;
        /* 157.143% */
        letter-spacing: 1.12px;
    }

    .section-billing-insurance .wrap .columns .column-header .section-title {
        font-size: 32px;
        line-height: 40px;
        margin: 16px 0 0 0;
    }

    .section-billing-insurance .wrap .columns .column-body .galleries {
        gap: 15px;
        align-items: center;
    }

    .section-billing-insurance .wrap .columns .column-body .galleries .gallery-item {
        width: 100%;
        max-width: calc(100% / 3 - 10px);
        height: 47px;
    }

    .section-billing-insurance .wrap .columns .column-body .galleries img {
        height: 100%;
    }

    .section-billing-insurance .wrap .columns .column-body .galleries .gallery-item .gallery-item-image-wrap {
        height: 100%;
        padding: 2px 4px;
    }

    .section-billing-insurance .wrap .columns .column-header .wysiwyg-content {
        font-size: 16px;
        line-height: 24px;
        /* 157.143% */

    }

    .section-billing-insurance .wrap .columns .button-wrapper>a {
        width: 100%;
    }

    .section-billing-insurance .wrap .columns .column-body .galleries .slick-dots {
        display: flex;
        flex-flow: row wrap;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }

    .section-billing-insurance .wrap .columns .column-body .galleries .slick-dots li {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0;
    }

    .section-billing-insurance .wrap .columns .column-body .galleries .slick-dots li button:before {
        display: none;
    }

    .section-billing-insurance .wrap .columns .column-body .galleries .slick-dots li button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(170, 170, 170, .3);
    }

    .section-billing-insurance .wrap .columns .column-body .galleries .slick-dots li.slick-active button {
        background: #AAAAAA;
    }
}