.breakdance .bde-section
{
    position: relative;
    width: 100%;
    background-position: center center;
    background-size: cover;
}
.breakdance .bde-section .section-container
{
    max-width: var(--bde-section-width);
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin: 0 auto;
    padding: var(--bde-section-vertical-padding) var(--bde-section-horizontal-padding);
}
.breakdance .bde-section .section-shape-divider-wrapper
{
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    pointer-events: none;
}
.breakdance .bde-section .section-shape-divider-wrapper .section-shape-divider svg
{
    position: absolute;
    color: #000;
    width: 100%;
    height: 320px;
    left: 0;
    right: 0;
    top: 0;
}
.breakdance .bde-div
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    position: relative;
    background-size: cover;
}
.breakdance .bde-image
{
    max-width: 100%;
}
.breakdance-image
{
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0;
    border: none;
}
.breakdance-image-clip
{
    overflow: hidden;
}
.breakdance-image-object
{
    display: block;
    max-width: 100%;
    height: auto;
}
.breakdance-image__caption
{
    text-align: center;
    margin: 0;
    padding: 16px;
}
.breakdance-image--caption-overlap .breakdance-image__caption
{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.breakdance-image-link
{
    display: block;
}
.breakdance-image__mask
{
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: auto;
    mask-size: auto;
}
.breakdance-image__mask img
{
    border-style: none;
    height: auto;
    max-width: 100%;
}
.breakdance .bde-heading
{
    max-width: 100%;
    margin: 0;
}
.breakdance .bde-text
{
    max-width: 100%;
    margin: 0;
    color: var(--bde-text-color,var(--bde-body-text-color));
}
.breakdance .mjs-button-group
{
    display: flex;
    position: relative;
    gap: 15px;
    align-items: start;
    width: 100%;
    flex-direction: var(--mjs-flex-direction,row);
    align-items: var(--mjs-align-items,start);
    justify-content: var(--mjs-justify-content,start);
}
.breakdance .mjs-button-group .button
{
    display: flex;
    position: relative;
    height: 50px;
    width: var(--mjs-button-width,auto);
    background-color: #fff;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border-radius: 100px;
    color: inherit;
    text-decoration: none;
    flex-grow: var(--mjs-flex-grow,0);
    z-index: 1;
    transition-duration: .15s;
}
.breakdance .mjs-button-group .button::after
{
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border: 2px solid #fff;
    z-index: -1;
    border-radius: 100px;
    opacity: 0;
    transition-duration: .15s;
}
.breakdance .mjs-button-group .button:hover::after
{
    opacity: .3;
}
.breakdance .mjs-button-group .button:active
{
    transform: scale(.95);
}
.breakdance .mjs-button-group .button span
{
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 1em;
    font-weight: 500;
}
.breakdance .mjs-button-group .button svg
{
    display: block;
    position: relative;
    height: 16px;
    width: auto;
}
.breakdance .mjs-button-group .button.--blue
{
    background-color: #0a85d1;
    color: #faf9f9;
}
.breakdance .mjs-button-group .button.--blue svg
{
    color: #faf9f9;
    fill: #faf9f9;
}
.breakdance .mjs-button-group .button.--white
{
    background-color: #faf9f9;
    color: #090909;
}
.breakdance .mjs-button-group .button.--white::after
{
    border-color: #000;
}
.breakdance .mjs-button-group .button.--white svg
{
    color: #090909;
    fill: #090909;
}
.breakdance .mjs-button-group .button.--black
{
    background-color: #090909;
    color: #faf9f9;
}
.breakdance .mjs-button-group .button.--black svg
{
    color: #faf9f9;
    fill: #faf9f9;
}
.breakdance .mjs-button-group .button.--text-light
{
    background-color: transparent;
    color: #faf9f9;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0);
    padding: 0 10px;
}
.breakdance .mjs-button-group .button.--text-light svg
{
    color: #faf9f9;
    fill: #faf9f9;
}
.breakdance .mjs-button-group .button.--text-light::after
{
    opacity: 0;
    width: calc(100% + 8px)!important;
    left: -4px;
    background-color: #faf9f9;
    border: none;
}
.breakdance .mjs-button-group .button.--text-light:hover::after
{
    opacity: .1;
}
.breakdance .mjs-button-group .button.--text-dark
{
    background-color: transparent;
    color: #090909;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0);
    padding: 0 10px;
}
.breakdance .mjs-button-group .button.--text-dark svg
{
    color: #090909;
    fill: #090909;
}
.breakdance .mjs-button-group .button.--text-dark::after
{
    opacity: 0;
    width: calc(100% + 8px)!important;
    left: -4px;
    background-color: #090909;
    border: none;
}
.breakdance .mjs-button-group .button.--text-dark:hover::after
{
    opacity: .1;
}