.bw-wpb-button-wrap {
    display: flex;
    width: 100%;
}

.bw-wpb-button-wrap--align-left {
    justify-content: flex-start;
}

.bw-wpb-button-wrap--align-center {
    justify-content: center;
}

.bw-wpb-button-wrap--align-right {
    justify-content: flex-end;
}

.bw-wpb-button-wrap--visibility-mobile {
    display: none !important;
}

.bw-wpb-button-wrap .bw-wpb-button {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--bw-wpb-button-width);
    max-width: 100%;
    height: var(--bw-wpb-button-height);
    min-width: min(var(--bw-wpb-button-min-width), 100%);
    min-height: var(--bw-wpb-button-min-height);
    padding: 0 32px;
    overflow: hidden;
    border: var(--bw-wpb-button-border-width) solid var(--bw-wpb-button-border-color);
    border-radius: var(--bw-wpb-button-border-radius);
    background-color: var(--bw-wpb-button-bg);
    box-shadow: none;
    color: var(--bw-wpb-button-color);
    cursor: pointer;
    font-family: inherit;
    font-size: var(--bw-wpb-button-font-size);
    font-weight: var(--bw-wpb-button-font-weight);
    letter-spacing: var(--bw-wpb-button-letter-spacing);
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    appearance: none;
}

.bw-wpb-button-wrap .bw-wpb-button--device-mobile {
    display: none !important;
}

.bw-wpb-button-wrap .bw-wpb-button--has-icon {
    padding-right: max(32px, calc(var(--bw-wpb-icon-offset) + var(--bw-wpb-icon-size) + var(--bw-wpb-icon-gap)));
    padding-left: max(32px, calc(var(--bw-wpb-icon-offset) + var(--bw-wpb-icon-size) + var(--bw-wpb-icon-gap)));
}

.bw-wpb-button-wrap .bw-wpb-button--width-auto .bw-wpb-button__inner {
    width: auto;
}

.bw-wpb-button-wrap .bw-wpb-button--has-icon:not(.bw-wpb-button--full) {
    gap: var(--bw-wpb-icon-gap);
    padding-right: 32px;
    padding-left: 32px;
}

.bw-wpb-button-wrap .bw-wpb-button--full {
    width: 100%;
}

.bw-wpb-button-wrap .bw-wpb-button,
.bw-wpb-button-wrap .bw-wpb-button:visited,
.bw-wpb-button-wrap .bw-wpb-button:focus {
    color: var(--bw-wpb-button-color);
    text-decoration: none;
}

.bw-wpb-button-wrap .bw-wpb-button:hover,
.bw-wpb-button-wrap .bw-wpb-button:focus-visible {
    border-color: var(--bw-wpb-button-hover-border-color);
    background-color: var(--bw-wpb-button-hover-bg);
    color: var(--bw-wpb-button-hover-color);
    text-decoration: none;
}

.bw-wpb-button-wrap .bw-wpb-button:focus-visible {
    outline: 2px solid var(--bw-wpb-animation-color);
    outline-offset: 3px;
}

.bw-wpb-button-wrap .bw-wpb-button--uppercase {
    text-transform: uppercase;
}

.bw-wpb-button__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
}

.bw-wpb-button__label {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: var(--bw-wpb-button-first-line-font-size);
    text-align: center;
}

.bw-wpb-button__label--two-lines {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    line-height: 1.15;
}

.bw-wpb-button__label-line {
    display: block;
    max-width: 100%;
}

.bw-wpb-button__label-line--first {
    font-size: var(--bw-wpb-button-first-line-font-size);
}

.bw-wpb-button__label-line--second {
    font-size: var(--bw-wpb-button-second-line-font-size);
}

.bw-wpb-button-wrap .bw-wpb-button--text-align-left {
    text-align: left;
}

.bw-wpb-button-wrap .bw-wpb-button--text-align-center {
    text-align: center;
}

.bw-wpb-button-wrap .bw-wpb-button--text-align-right {
    text-align: right;
}

.bw-wpb-button-wrap .bw-wpb-button--text-align-left .bw-wpb-button__inner {
    justify-content: flex-start;
}

.bw-wpb-button-wrap .bw-wpb-button--text-align-center .bw-wpb-button__inner {
    justify-content: center;
}

.bw-wpb-button-wrap .bw-wpb-button--text-align-right .bw-wpb-button__inner {
    justify-content: flex-end;
}

.bw-wpb-button-wrap .bw-wpb-button--text-align-left .bw-wpb-button__label {
    text-align: left;
}

.bw-wpb-button-wrap .bw-wpb-button--text-align-center .bw-wpb-button__label {
    text-align: center;
}

.bw-wpb-button-wrap .bw-wpb-button--text-align-right .bw-wpb-button__label {
    text-align: right;
}

.bw-wpb-button-wrap .bw-wpb-button--text-align-left .bw-wpb-button__label--two-lines {
    align-items: flex-start;
}

.bw-wpb-button-wrap .bw-wpb-button--text-align-center .bw-wpb-button__label--two-lines {
    align-items: center;
}

.bw-wpb-button-wrap .bw-wpb-button--text-align-right .bw-wpb-button__label--two-lines {
    align-items: flex-end;
}

.bw-wpb-button__icon {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: block;
    width: var(--bw-wpb-icon-size);
    height: var(--bw-wpb-icon-size);
    flex: 0 0 var(--bw-wpb-icon-size);
    transform: translateY(-50%);
    pointer-events: none;
}

.bw-wpb-button--icon-left .bw-wpb-button__icon {
    left: var(--bw-wpb-icon-offset);
}

.bw-wpb-button--icon-right .bw-wpb-button__icon {
    right: var(--bw-wpb-icon-offset);
}

.bw-wpb-button__icon--preset {
    background-color: currentColor;
    -webkit-mask: var(--bw-wpb-icon-mask) center / contain no-repeat;
    mask: var(--bw-wpb-icon-mask) center / contain no-repeat;
}

.bw-wpb-button__icon--custom img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bw-wpb-button-wrap .bw-wpb-button--has-icon:not(.bw-wpb-button--full) .bw-wpb-button__icon {
    position: static;
    transform: none;
}

.bw-wpb-button-wrap .bw-wpb-button--icon-right:not(.bw-wpb-button--full) .bw-wpb-button__icon {
    order: 2;
}

.bw-wpb-button__border {
    position: absolute;
    z-index: 1;
    display: block;
    pointer-events: none;
}

.bw-wpb-button__border--top,
.bw-wpb-button__border--bottom {
    left: 0;
    width: 100%;
    height: var(--bw-wpb-border-width);
}

.bw-wpb-button__border--right,
.bw-wpb-button__border--left {
    top: 0;
    width: var(--bw-wpb-border-width);
    height: 100%;
}

.bw-wpb-button__border--top {
    top: 0;
    background: linear-gradient(to left, transparent, var(--bw-wpb-animation-color));
    animation: bw-wpb-button-border-top var(--bw-wpb-animation-speed) linear infinite;
}

.bw-wpb-button__border--right {
    right: 0;
    background: linear-gradient(to top, transparent, var(--bw-wpb-animation-color));
    animation: bw-wpb-button-border-right var(--bw-wpb-animation-speed) linear infinite;
    animation-delay: calc(var(--bw-wpb-animation-speed) * -0.5);
}

.bw-wpb-button__border--bottom {
    bottom: 0;
    background: linear-gradient(to right, transparent, var(--bw-wpb-animation-color));
    animation: bw-wpb-button-border-bottom var(--bw-wpb-animation-speed) linear infinite;
}

.bw-wpb-button__border--left {
    left: 0;
    background: linear-gradient(to bottom, transparent, var(--bw-wpb-animation-color));
    animation: bw-wpb-button-border-left var(--bw-wpb-animation-speed) linear infinite;
    animation-delay: calc(var(--bw-wpb-animation-speed) * -0.5);
}

@keyframes bw-wpb-button-border-top {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes bw-wpb-button-border-right {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

@keyframes bw-wpb-button-border-bottom {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes bw-wpb-button-border-left {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .bw-wpb-button-wrap .bw-wpb-button {
        transition: none;
    }

    .bw-wpb-button__border {
        background: var(--bw-wpb-animation-color);
        animation: none;
        transform: none;
    }
}

@media (max-width: 767px) {
    .bw-wpb-button-wrap--visibility-desktop {
        display: none !important;
    }

    .bw-wpb-button-wrap--visibility-mobile {
        display: flex !important;
    }

    .bw-wpb-button-wrap .bw-wpb-button--device-desktop {
        display: none !important;
    }

    .bw-wpb-button-wrap .bw-wpb-button--device-mobile {
        display: inline-flex !important;
    }

    .bw-wpb-button-wrap .bw-wpb-button {
        min-width: 0;
    }

    .bw-wpb-button-wrap .bw-wpb-button--has-icon {
        padding-right: max(24px, calc(var(--bw-wpb-icon-offset) + var(--bw-wpb-icon-size) + 12px));
        padding-left: max(24px, calc(var(--bw-wpb-icon-offset) + var(--bw-wpb-icon-size) + 12px));
    }

    .bw-wpb-button-wrap .bw-wpb-button--has-icon:not(.bw-wpb-button--full) {
        padding-right: 24px;
        padding-left: 24px;
    }
}

@media (max-width: 1024px) and (pointer: coarse) {
    .bw-wpb-button-wrap--visibility-desktop {
        display: none !important;
    }

    .bw-wpb-button-wrap--visibility-mobile {
        display: flex !important;
    }

    .bw-wpb-button-wrap .bw-wpb-button--device-desktop {
        display: none !important;
    }

    .bw-wpb-button-wrap .bw-wpb-button--device-mobile {
        display: inline-flex !important;
    }
}

.bw-wpb-image-text {
    display: flex;
    width: 100%;
    gap: var(--bw-wpb-image-text-gap);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bw-wpb-image-text--layout-top {
    flex-direction: column;
}

.bw-wpb-image-text--layout-left {
    flex-direction: row;
}

.bw-wpb-image-text--layout-left.bw-wpb-image-text--vertical-top {
    align-items: flex-start;
}

.bw-wpb-image-text--layout-left.bw-wpb-image-text--vertical-center {
    align-items: center;
}

.bw-wpb-image-text--layout-left.bw-wpb-image-text--vertical-bottom {
    align-items: flex-end;
}

.bw-wpb-image-text--align-left {
    text-align: left;
}

.bw-wpb-image-text--align-center {
    text-align: center;
}

.bw-wpb-image-text--align-right {
    text-align: right;
}

.bw-wpb-image-text--layout-top.bw-wpb-image-text--align-left {
    align-items: flex-start;
}

.bw-wpb-image-text--layout-top.bw-wpb-image-text--align-center {
    align-items: center;
}

.bw-wpb-image-text--layout-top.bw-wpb-image-text--align-right {
    align-items: flex-end;
}

.bw-wpb-image-text__media {
    display: flex;
    width: var(--bw-wpb-image-text-image-width);
    max-width: 100%;
    flex: 0 0 auto;
    justify-content: center;
}

.bw-wpb-image-text__link {
    display: block;
    width: 100%;
    max-width: 100%;
    color: inherit;
    text-decoration: none;
}

.bw-wpb-image-text__link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.bw-wpb-image-text__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: var(--bw-wpb-image-text-image-height);
    object-fit: var(--bw-wpb-image-text-image-fit);
}

.bw-wpb-image-text__content {
    width: 100%;
    max-width: var(--bw-wpb-image-text-text-max-width);
    min-width: 0;
    flex: 1 1 auto;
}

.bw-wpb-image-text .bw-wpb-image-text__title {
    margin: 0;
    color: var(--bw-wpb-image-text-title-color);
    font-family: var(--bw-wpb-image-text-title-font-family);
    font-size: var(--bw-wpb-image-text-title-font-size);
    font-weight: var(--bw-wpb-image-text-title-font-weight);
    letter-spacing: 0;
    line-height: 1.15;
    overflow-wrap: anywhere;
    text-align: inherit !important;
    text-align-last: auto !important;
    word-spacing: normal !important;
}

.bw-wpb-image-text__description {
    margin-top: 14px;
    color: var(--bw-wpb-image-text-description-color);
    font-family: var(--bw-wpb-image-text-description-font-family);
    font-size: var(--bw-wpb-image-text-description-font-size);
    font-weight: var(--bw-wpb-image-text-description-font-weight);
    letter-spacing: 0;
    line-height: 1.6;
    overflow-wrap: anywhere;
    text-align: inherit !important;
    text-align-last: auto !important;
    word-spacing: normal !important;
}

.bw-wpb-image-text__description:first-child {
    margin-top: 0;
}

.bw-wpb-image-text__description > * {
    margin-top: 0;
    margin-bottom: 1em;
    letter-spacing: inherit;
    text-align: inherit !important;
    text-align-last: auto !important;
    word-spacing: normal !important;
}

.bw-wpb-image-text__description > *:last-child {
    margin-bottom: 0;
}

.bw-wpb-image-text__description a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

@media (max-width: 767px) {
    .bw-wpb-image-text {
        gap: var(--bw-wpb-image-text-mobile-gap);
    }

    .bw-wpb-image-text--layout-left {
        flex-direction: column;
    }

    .bw-wpb-image-text--layout-left.bw-wpb-image-text--align-left {
        align-items: flex-start;
    }

    .bw-wpb-image-text--layout-left.bw-wpb-image-text--align-center {
        align-items: center;
    }

    .bw-wpb-image-text--layout-left.bw-wpb-image-text--align-right {
        align-items: flex-end;
    }

    .bw-wpb-image-text__media {
        width: var(--bw-wpb-image-text-mobile-image-width);
    }

    .bw-wpb-image-text__image {
        height: var(--bw-wpb-image-text-mobile-image-height);
    }

    .bw-wpb-image-text .bw-wpb-image-text__title {
        font-size: var(--bw-wpb-image-text-title-mobile-font-size);
    }

    .bw-wpb-image-text__description {
        font-size: var(--bw-wpb-image-text-description-mobile-font-size);
    }
}

.bw-wpb-embed-video-wrap {
    display: flex;
    width: 100%;
}

.bw-wpb-embed-video-wrap--align-left {
    justify-content: flex-start;
}

.bw-wpb-embed-video-wrap--align-center {
    justify-content: center;
}

.bw-wpb-embed-video-wrap--align-right {
    justify-content: flex-end;
}

.bw-wpb-embed-video {
    display: block;
    width: var(--bw-wpb-embed-video-width);
    max-width: min(var(--bw-wpb-embed-video-max-width), 100%);
}

.bw-wpb-embed-video__player {
    display: block;
    width: 100%;
    max-width: 100%;
    height: var(--bw-wpb-embed-video-height);
    aspect-ratio: var(--bw-wpb-embed-video-aspect-ratio);
    border-radius: var(--bw-wpb-embed-video-border-radius);
    background: #000;
    object-fit: var(--bw-wpb-embed-video-object-fit);
}

.bw-wpb-embed-video__player:focus-visible {
    outline: 2px solid #c09b80;
    outline-offset: 4px;
}

@media (max-width: 767px) {
    .bw-wpb-embed-video {
        width: 100%;
        max-width: 100%;
    }

    .bw-wpb-embed-video__player {
        height: var(--bw-wpb-embed-video-mobile-height);
    }
}

.bw-wpb-carousel {
    display: flex;
    width: var(--bw-wpb-carousel-width);
    max-width: min(var(--bw-wpb-carousel-max-width), 100%);
    flex-direction: column;
}

.wpb_wrapper.bw-wpb-carousel-parent--stretch,
.wpb_wrapper:has(> .bw-wpb-carousel--stretch-parent) {
    width: 100%;
    max-width: none !important;
}

.bw-wpb-carousel--align-left {
    margin-right: auto;
    margin-left: 0;
}

.bw-wpb-carousel--align-center {
    margin-right: auto;
    margin-left: auto;
}

.bw-wpb-carousel--align-right {
    margin-right: 0;
    margin-left: auto;
}

.bw-wpb-carousel__viewport {
    width: 100%;
    height: var(--bw-wpb-carousel-height);
    overflow: hidden;
    border-radius: var(--bw-wpb-carousel-border-radius);
    background: transparent;
    touch-action: pan-y;
}

.bw-wpb-carousel[data-swipe="1"] .bw-wpb-carousel__viewport,
.bw-wpb-carousel[data-swipe="1"] .bw-wpb-carousel__lightbox,
.bw-wpb-carousel[data-swipe="1"] .bw-wpb-carousel__image {
    cursor: grab;
}

.bw-wpb-carousel[data-swipe="1"].is-dragging .bw-wpb-carousel__viewport,
.bw-wpb-carousel[data-swipe="1"].is-dragging .bw-wpb-carousel__lightbox,
.bw-wpb-carousel[data-swipe="1"].is-dragging .bw-wpb-carousel__image {
    cursor: grabbing;
}

.bw-wpb-carousel__track {
    display: flex;
    height: 100%;
    transition: transform var(--bw-wpb-carousel-transition-speed) ease;
    will-change: transform;
}

.bw-wpb-carousel__slide {
    display: flex;
    min-width: 100%;
    height: var(--bw-wpb-carousel-height);
    flex: 0 0 100%;
    align-items: center;
    justify-content: center;
}

.bw-wpb-carousel__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: var(--bw-wpb-carousel-height);
    border-radius: var(--bw-wpb-carousel-border-radius);
    object-fit: var(--bw-wpb-carousel-image-fit);
    user-select: none;
    -webkit-user-drag: none;
}

.bw-wpb-carousel__lightbox {
    display: block;
    width: 100%;
    max-width: 100%;
    height: var(--bw-wpb-carousel-height);
    color: inherit;
    text-decoration: none;
}

.bw-wpb-carousel__lightbox:focus-visible {
    outline: 2px solid var(--bw-wpb-carousel-arrow-bg);
    outline-offset: 3px;
}

.bw-wpb-carousel--height-natural .bw-wpb-carousel__viewport,
.bw-wpb-carousel--height-natural .bw-wpb-carousel__slide,
.bw-wpb-carousel--height-natural .bw-wpb-carousel__lightbox,
.bw-wpb-carousel--height-natural .bw-wpb-carousel__image {
    height: auto;
}

.bw-wpb-carousel--height-parent {
    height: 100%;
    min-height: var(--bw-wpb-carousel-height);
}

.bw-wpb-carousel--height-parent .bw-wpb-carousel__viewport {
    height: auto;
    min-height: var(--bw-wpb-carousel-height);
    flex: 1 1 auto;
}

.bw-wpb-carousel--height-parent .bw-wpb-carousel__track,
.bw-wpb-carousel--height-parent .bw-wpb-carousel__slide,
.bw-wpb-carousel--height-parent .bw-wpb-carousel__lightbox,
.bw-wpb-carousel--height-parent .bw-wpb-carousel__image {
    height: 100%;
    min-height: var(--bw-wpb-carousel-height);
}

.bw-wpb-carousel__controls {
    position: relative;
    display: flex;
    width: 100%;
    min-height: var(--bw-wpb-carousel-arrow-size);
    margin-top: var(--bw-wpb-carousel-controls-offset);
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bw-wpb-carousel--arrows-no .bw-wpb-carousel__controls {
    justify-content: center;
}

.bw-wpb-carousel--dots-no .bw-wpb-carousel__controls {
    justify-content: space-between;
}

.bw-wpb-carousel__arrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: var(--bw-wpb-carousel-arrow-size);
    height: var(--bw-wpb-carousel-arrow-size);
    flex: 0 0 var(--bw-wpb-carousel-arrow-size);
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--bw-wpb-carousel-arrow-bg);
    box-shadow: none;
    color: var(--bw-wpb-carousel-arrow-color);
    cursor: pointer;
    line-height: 1;
    transition: background-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
    appearance: none;
}

.bw-wpb-carousel__arrow:hover,
.bw-wpb-carousel__arrow:focus-visible {
    background: var(--bw-wpb-carousel-arrow-hover-bg);
    color: var(--bw-wpb-carousel-arrow-hover-color);
    outline: none;
}

.bw-wpb-carousel__arrow:focus-visible {
    box-shadow: 0 0 0 3px rgba(192, 155, 128, 0.32);
}

.bw-wpb-carousel__arrow:disabled {
    cursor: default;
    opacity: 0.35;
}

.bw-wpb-carousel--hide-disabled .bw-wpb-carousel__arrow:disabled {
    visibility: hidden;
    opacity: 0;
}

.bw-wpb-carousel__arrow-icon {
    position: relative;
    display: block;
    width: var(--bw-wpb-carousel-arrow-icon-size);
    height: 3px;
    border-radius: 999px;
    background: currentColor;
}

.bw-wpb-carousel__arrow-icon::after {
    position: absolute;
    top: 50%;
    width: calc(var(--bw-wpb-carousel-arrow-icon-size) * 0.55);
    height: calc(var(--bw-wpb-carousel-arrow-icon-size) * 0.55);
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
    content: "";
}

.bw-wpb-carousel__arrow--prev .bw-wpb-carousel__arrow-icon::after {
    left: -1px;
    transform: translateY(-50%) rotate(-135deg);
}

.bw-wpb-carousel__arrow--next .bw-wpb-carousel__arrow-icon::after {
    right: -1px;
    transform: translateY(-50%) rotate(45deg);
}

.bw-wpb-carousel__dots {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--bw-wpb-carousel-dot-gap);
    transform: translate(-50%, -50%);
}

.bw-wpb-carousel--arrows-no .bw-wpb-carousel__dots {
    position: static;
    transform: none;
}

.bw-wpb-carousel__dot {
    display: inline-flex;
    width: calc(var(--bw-wpb-carousel-dot-size) + 8px);
    height: calc(var(--bw-wpb-carousel-dot-size) + 8px);
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    appearance: none;
}

.bw-wpb-carousel__dot:focus-visible {
    outline: 2px solid var(--bw-wpb-carousel-dot-active-color);
    outline-offset: 2px;
}

.bw-wpb-carousel__dot-mark {
    display: block;
    width: var(--bw-wpb-carousel-dot-size);
    height: var(--bw-wpb-carousel-dot-size);
    border-radius: 999px;
    background: var(--bw-wpb-carousel-dot-color);
    transition: background-color 0.18s ease, transform 0.18s ease;
}

.bw-wpb-carousel__dot:hover .bw-wpb-carousel__dot-mark,
.bw-wpb-carousel__dot.is-active .bw-wpb-carousel__dot-mark {
    background: var(--bw-wpb-carousel-dot-active-color);
}

.bw-wpb-carousel__dot.is-active .bw-wpb-carousel__dot-mark {
    transform: scale(1.15);
}

@media (prefers-reduced-motion: reduce) {
    .bw-wpb-carousel__track,
    .bw-wpb-carousel__arrow,
    .bw-wpb-carousel__dot-mark {
        transition: none;
    }
}

@media (max-width: 767px) {
    .bw-wpb-carousel {
        width: var(--bw-wpb-carousel-mobile-width);
    }

    .bw-wpb-carousel__viewport,
    .bw-wpb-carousel__slide,
    .bw-wpb-carousel__lightbox,
    .bw-wpb-carousel__image {
        height: var(--bw-wpb-carousel-mobile-height);
    }

    .bw-wpb-carousel--height-natural .bw-wpb-carousel__viewport,
    .bw-wpb-carousel--height-natural .bw-wpb-carousel__slide,
    .bw-wpb-carousel--height-natural .bw-wpb-carousel__lightbox,
    .bw-wpb-carousel--height-natural .bw-wpb-carousel__image {
        height: auto;
    }

    .bw-wpb-carousel--height-parent {
        min-height: var(--bw-wpb-carousel-mobile-height);
    }

    .bw-wpb-carousel--height-parent .bw-wpb-carousel__viewport {
        height: auto;
        min-height: var(--bw-wpb-carousel-mobile-height);
    }

    .bw-wpb-carousel--height-parent .bw-wpb-carousel__track,
    .bw-wpb-carousel--height-parent .bw-wpb-carousel__slide,
    .bw-wpb-carousel--height-parent .bw-wpb-carousel__lightbox,
    .bw-wpb-carousel--height-parent .bw-wpb-carousel__image {
        height: 100%;
        min-height: var(--bw-wpb-carousel-mobile-height);
    }

    .bw-wpb-carousel__controls {
        margin-top: max(16px, calc(var(--bw-wpb-carousel-controls-offset) * 0.75));
    }

    .bw-wpb-carousel__dots {
        max-width: calc(100% - (var(--bw-wpb-carousel-arrow-size) * 2) - 32px);
        flex-wrap: wrap;
    }
}

.bw-wpb-center-slider {
    --bw-cs-gap: 70px;
    --bw-cs-viewport-padding: 50px;
    --bw-cs-side-padding: 0px;
    --bw-cs-scale: 1.25;
    display: flex;
    width: 100%;
    flex-direction: column;
}

.bw-wpb-center-slider__stage {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
}

.bw-wpb-center-slider__viewport {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
    padding: var(--bw-cs-viewport-padding) 0;
}

.bw-wpb-center-slider__viewport,
.bw-wpb-center-slider__frame {
    cursor: grab;
}

.bw-wpb-center-slider.is-dragging .bw-wpb-center-slider__viewport,
.bw-wpb-center-slider.is-dragging .bw-wpb-center-slider__frame {
    cursor: grabbing;
}

.bw-wpb-center-slider__track {
    display: flex;
    gap: var(--bw-cs-gap);
    align-items: center;
    justify-content: flex-start;
    transition-property: transform;
    transition-timing-function: ease;
    will-change: transform;
}

.bw-wpb-center-slider__slide {
    display: none;
    flex: 0 0 calc((100% - (var(--bw-cs-gap) * 2)) / 3);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bw-wpb-center-slider__slide.is-active,
.bw-wpb-center-slider__slide.is-prev,
.bw-wpb-center-slider__slide.is-next {
    display: flex;
}

.bw-wpb-center-slider__frame {
    position: relative;
    width: 100%;
    padding: 0 var(--bw-cs-side-padding);
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 450ms ease, opacity 450ms ease;
    transform-origin: center center;
}

.bw-wpb-center-slider__slide.is-active .bw-wpb-center-slider__frame {
    z-index: 2;
    transform: scale(var(--bw-cs-scale));
}

.bw-wpb-center-slider__image {
    display: block;
    width: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.bw-wpb-center-slider__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.bw-wpb-center-slider__link:focus-visible {
    outline: 2px solid #c09b80;
    outline-offset: 3px;
}

.bw-wpb-center-slider__caption-box {
    position: absolute;
    left: var(--bw-cs-side-padding);
    bottom: 30px;
    max-width: 85%;
    padding: 20px;
    background: rgba(40, 40, 39, 0.5);
}

.bw-wpb-center-slider__caption-title {
    margin: 0 0 4px;
    font-family: "Domaine Sans Text", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.bw-wpb-center-slider__caption-text {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
}

.bw-wpb-center-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #c09b80;
    cursor: pointer;
    line-height: 1;
    transform: translateY(-50%);
    transition: color 0.18s ease, opacity 0.18s ease;
    appearance: none;
}

.bw-wpb-center-slider__arrow--prev {
    right: 100%;
    margin-right: 50px;
}

.bw-wpb-center-slider__arrow--next {
    left: 100%;
    margin-left: 50px;
}

.bw-wpb-center-slider__arrow:hover,
.bw-wpb-center-slider__arrow:focus-visible {
    color: #b88968;
    outline: none;
    background-color: transparent;
}

.bw-wpb-center-slider__arrow:focus-visible {
    box-shadow: 0 0 0 3px rgba(192, 155, 128, 0.32);
}

.bw-wpb-center-slider__arrow svg {
    display: block;
    width: auto;
    height: 40px;
}

.bw-wpb-center-slider__dots {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .bw-wpb-center-slider__track,
    .bw-wpb-center-slider__frame,
    .bw-wpb-center-slider__arrow {
        transition: none;
    }
}

@media (max-width: 767px) {
    .bw-wpb-center-slider {
        --bw-cs-gap: 0px;
        --bw-cs-viewport-padding: 16px;
        --bw-cs-side-padding: 0px;
    }

    .bw-wpb-center-slider__slide {
        flex-basis: 100%;
    }

    .bw-wpb-center-slider__slide.is-active .bw-wpb-center-slider__frame {
        transform: none;
    }

    .bw-wpb-center-slider__caption-box {
        bottom: 16px;
        max-width: 90%;
        padding: 14px;
    }

    .bw-wpb-center-slider__caption-title {
        font-size: 16px;
    }

    .bw-wpb-center-slider__caption-text {
        font-size: 15px;
    }

    .bw-wpb-center-slider__arrow {
        display: none;
    }

    .bw-wpb-center-slider__dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 16px;
    }

    .bw-wpb-center-slider__dot {
        width: 10px;
        height: 10px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #555555;
        box-shadow: none;
        cursor: pointer;
        appearance: none;
    }

    .bw-wpb-center-slider__dot:hover,
    .bw-wpb-center-slider__dot.is-active {
        background: #c09b80;
    }
}

body.bw-wpb-popup-is-open {
    overflow: hidden;
}

.bw-wpb-popup[hidden] {
    display: none;
}

.bw-wpb-popup {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    width: var(--bw-wpb-popup-viewport-width, 100vw);
    height: var(--bw-wpb-popup-viewport-height, 100vh);
    height: var(--bw-wpb-popup-viewport-height, 100dvh);
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.18s ease;
}

.bw-wpb-popup--open {
    opacity: 1;
}

.bw-wpb-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.76);
}

.bw-wpb-popup__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(1180px, calc(100vw - 48px));
    height: min(760px, calc(100vh - 48px));
    height: min(760px, calc(100dvh - 48px));
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    flex-direction: column;
    background: #111;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.bw-wpb-popup__close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #000;
    color: #fff;
    cursor: pointer;
    font-size: 28px;
    line-height: 44px;
    text-align: center;
    appearance: none;
}

.bw-wpb-popup__close:hover,
.bw-wpb-popup__close:focus-visible {
    background: #c09b80;
    color: #fff;
    outline: none;
}

.bw-wpb-popup__title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bw-wpb-popup__iframe {
    display: block;
    width: 100%;
    height: auto;
    min-width: 0;
    min-height: 0;
    flex: 1 1 auto;
    border: 0;
    background: #fff;
}

.bw-wpb-popup--pdf-fit .bw-wpb-popup__dialog {
    background: #fff;
}

.bw-wpb-popup--pdf-fit .bw-wpb-popup__iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--bw-wpb-popup-pdf-width, 100%);
    height: var(--bw-wpb-popup-pdf-height, 100%);
    max-width: none;
    max-height: none;
    flex: none;
    transform: translate(-50%, -50%) scale(var(--bw-wpb-popup-pdf-scale, 1));
    transform-origin: center center;
}

@media (max-width: 767px) {
    .bw-wpb-popup {
        height: 100svh;
        height: 100dvh;
        padding: 8px;
        padding: max(8px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    }

    .bw-wpb-popup__dialog {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
    }

    .bw-wpb-popup__close {
        width: 40px;
        height: 40px;
        font-size: 26px;
        line-height: 40px;
    }
}

@media (max-width: 1024px) and (pointer: coarse) {
    .bw-wpb-popup {
        height: 100svh;
        height: 100dvh;
        padding: 8px;
        padding: max(8px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    }

    .bw-wpb-popup__dialog {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
    }
}

.bw-wpb-hero-slider {
    position: relative;
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

.bw-wpb-hero-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.bw-wpb-hero-slider__track:after {
    content: '';
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, 0) 30%);
}

.bw-wpb-hero-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 800ms ease;
    pointer-events: none;
}

.bw-wpb-hero-slider__slide.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
}

.bw-wpb-hero-slider__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bw-wpb-hero-slider__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}

.bw-wpb-hero-slider__overlay {
    position: absolute;
    left: 0;
    bottom: 140px;
    z-index: 2;
    max-width: calc(100% - 64px);
    padding: 24px 30px 24px 40px;
    background: rgba(0, 0, 0, .5);
}

.entry-content .bw-wpb-hero-slider__title {
    margin: 0 0 6px;
    font-family: "Domaine Sans Text", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
}

.entry-content .bw-wpb-hero-slider__subtitle {
    margin: 0;
    font-family: "Domaine Sans Text", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: initial;
    color: #ffffff;
}

.bw-wpb-hero-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    line-height: 0;
    transform: translateY(-50%);
    transition: opacity 0.18s ease;
    appearance: none;
    border-radius: 0;
}

.bw-wpb-hero-slider__arrow--prev {
    left: 32px;
}

.bw-wpb-hero-slider__arrow--next {
    right: 32px;
}

.bw-wpb-hero-slider__arrow:hover,
.bw-wpb-hero-slider__arrow:focus-visible {
    opacity: 0.8;
    background-color: transparent;
}

.bw-wpb-hero-slider__arrow:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.bw-wpb-hero-slider__arrow svg {
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .25));
}

@media (prefers-reduced-motion: reduce) {
    .bw-wpb-hero-slider__slide,
    .bw-wpb-hero-slider__arrow {
        transition: none;
    }
}

@media (max-width: 767px) {
    .bw-wpb-hero-slider__image--desktop {
        display: none;
    }

    .bw-wpb-hero-slider__image--mobile {
        display: block;
    }

    .bw-wpb-hero-slider__overlay {
        bottom: 80px;
        max-width: calc(100% - 40px);
        padding: 18px;
        padding: 18px 25px 18px 30px;
    }

    .entry-content .bw-wpb-hero-slider__title {
        font-size: 20px;
    }

    .entry-content .bw-wpb-hero-slider__subtitle {
        font-size: 14px;
    }
}
