.bailleul-before-after {
    position: relative;
    display: block;
    overflow: hidden;
    --reveal: 50;
    --reveal-inv: calc(100 - var(--reveal));
    touch-action: pan-y;
    user-select: none;
    cursor: ew-resize
}

.bailleul-before-after__before,
.bailleul-before-after__after {
    display: block
}

.bailleul-before-after__before {
    position: relative;
    z-index: 0
}

.bailleul-before-after__img,
.bailleul-before-after__before img,
.bailleul-before-after__after img {
    display: block;
    width: 100%;
    height: auto
}

.bailleul-before-after__after {
    position: absolute;
    inset: 0;
    clip-path: inset(0 calc(100% - (var(--reveal)*1%)) 0 0);
    pointer-events: none;
    z-index: 1
}

.bailleul-before-after[data-dir="rtl"] .bailleul-before-after__after {
    clip-path: inset(0 0 0 calc(100% - (var(--reveal)*1%)))
}

.bailleul-before-after__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--reveal)*1%);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 4
}

.bailleul-before-after[data-dir="rtl"] .bailleul-before-after__handle {
    left: calc(var(--reveal-inv)*1%)
}

.bailleul-before-after__line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .25);
    transition: background-color .18s ease, box-shadow .18s ease, opacity .18s ease
}

.bailleul-before-after__knob {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid rgba(0, 0, 0, .35);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
    position: relative;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease
}

.bailleul-before-after:hover .bailleul-before-after__knob {
    transform: scale(1.03);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22)
}

.bailleul-before-after__knob:before,
.bailleul-before-after__knob:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    transform: translateY(-50%)
}

.bailleul-before-after__knob:before {
    left: 12px;
    border-right: 9px solid rgba(0, 0, 0, .55)
}

.bailleul-before-after__knob:after {
    right: 12px;
    border-left: 9px solid rgba(0, 0, 0, .55)
}

.bailleul-before-after[data-dir="rtl"] .bailleul-before-after__knob:before {
    left: 12px;
    border-right: 9px solid rgba(0, 0, 0, .55)
}

.bailleul-before-after[data-dir="rtl"] .bailleul-before-after__knob:after {
    right: 12px;
    border-left: 9px solid rgba(0, 0, 0, .55)
}

.bailleul-before-after__range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    touch-action: none;
    z-index: 5
}

.bailleul-before-after__labels {
    position: absolute;
    inset: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    pointer-events: none;
    z-index: 3
}

.bailleul-before-after__label {
    font-size: 13px;
    line-height: 1;
    letter-spacing: .2px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    white-space: nowrap
}

.subul-border-run {
    position: relative;
    --subul-border-run-inset: 15px;
    --subul-border-run-color: #ddd;
    --subul-border-run-width: 1px;
    --subul-border-run-radius: 0px;
    --subul-border-run-duration: .8s
}

.subul-border-run:before,
.subul-border-run:after {
    content: "";
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    transition: opacity var(--subul-border-run-duration) ease, width var(--subul-border-run-duration) ease, height var(--subul-border-run-duration) ease;
    z-index: 6;
    pointer-events: none;
    border-radius: var(--subul-border-run-radius);
    box-sizing: border-box
}

.subul-border-run:before {
    top: var(--subul-border-run-inset);
    left: var(--subul-border-run-inset);
    border-top: var(--subul-border-run-width) solid var(--subul-border-run-color);
    border-left: var(--subul-border-run-width) solid var(--subul-border-run-color)
}

.subul-border-run:after {
    right: var(--subul-border-run-inset);
    bottom: var(--subul-border-run-inset);
    border-right: var(--subul-border-run-width) solid var(--subul-border-run-color);
    border-bottom: var(--subul-border-run-width) solid var(--subul-border-run-color)
}

@media (hover:hover) {

    .subul-border-run:hover:before,
    .subul-border-run:hover:after {
        opacity: 1;
        width: calc(100% - (var(--subul-border-run-inset) + var(--subul-border-run-inset)));
        height: calc(100% - (var(--subul-border-run-inset) + var(--subul-border-run-inset)))
    }
}

@media (hover:hover) {

    .subul-video-popup.subul-border-run:hover:before,
    .subul-video-popup.subul-border-run:hover:after,
    .subul-gallery-loadmore__item.subul-border-run:hover:before,
    .subul-gallery-loadmore__item.subul-border-run:hover:after {
        width: calc(100% - (var(--subul-border-run-inset) + var(--subul-border-run-inset)));
        height: calc(100% - (var(--subul-border-run-inset) + var(--subul-border-run-inset))) !important
    }
}

.subul-border-run-gallery {
    --subul-border-run-inset: 15px;
    --subul-border-run-color: #ddd;
    --subul-border-run-width: 1px;
    --subul-border-run-radius: 0px;
    --subul-border-run-duration: .8s
}

.subul-border-run-gallery .gallery-item,
.subul-border-run-gallery .elementor-gallery-item {
    position: relative
}

.subul-border-run-gallery .gallery-item:before,
.subul-border-run-gallery .gallery-item:after,
.subul-border-run-gallery .elementor-gallery-item:before,
.subul-border-run-gallery .elementor-gallery-item:after {
    content: "";
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    transition: opacity var(--subul-border-run-duration) ease, width var(--subul-border-run-duration) ease, height var(--subul-border-run-duration) ease;
    z-index: 6;
    pointer-events: none;
    border-radius: var(--subul-border-run-radius);
    box-sizing: border-box
}

.subul-border-run-gallery .gallery-item:before,
.subul-border-run-gallery .elementor-gallery-item:before {
    top: var(--subul-border-run-inset);
    left: var(--subul-border-run-inset);
    border-top: var(--subul-border-run-width) solid var(--subul-border-run-color);
    border-left: var(--subul-border-run-width) solid var(--subul-border-run-color)
}

.subul-border-run-gallery .gallery-item:after,
.subul-border-run-gallery .elementor-gallery-item:after {
    right: var(--subul-border-run-inset);
    bottom: var(--subul-border-run-inset);
    border-right: var(--subul-border-run-width) solid var(--subul-border-run-color);
    border-bottom: var(--subul-border-run-width) solid var(--subul-border-run-color)
}

@media (hover:hover) {

    .subul-border-run-gallery .gallery-item:hover:before,
    .subul-border-run-gallery .gallery-item:hover:after,
    .subul-border-run-gallery .elementor-gallery-item:hover:before,
    .subul-border-run-gallery .elementor-gallery-item:hover:after {
        opacity: 1;
        width: calc(100% - (var(--subul-border-run-inset) + var(--subul-border-run-inset)));
        height: calc(100% - (var(--subul-border-run-inset) + var(--subul-border-run-inset)))
    }
}

.subul-video-popup {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0
}

.subul-video-popup__overlay {
    position: absolute;
    inset: 0;
    background: var(--subul-video-overlay, rgba(0, 0, 0, .35));
    z-index: 0
}

.subul-video-popup__container {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center
}

.subul-video-popup__title {
    color: #fff;
    font-size: 30px;
    line-height: 1.7;
    margin: 0 0 24px
}

.subul-video-popup a.subul-video-popup__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--subul-video-button-bg, transparent);
    border: 2px solid #fff;
    cursor: pointer;
    position: relative;
    outline: 0;
    text-decoration: none;
    isolation: isolate;
    overflow: visible;
    -webkit-tap-highlight-color: transparent
}

.subul-video-popup a.subul-video-popup__button:before,
.subul-video-popup a.subul-video-popup__button:after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 var(--subul-video-ripple-color, rgba(255, 255, 255, .12));
    opacity: .9;
    animation: subulVideoRipple 1.8s infinite;
    pointer-events: none;
    z-index: 0
}

.subul-video-popup a.subul-video-popup__button:after {
    animation-delay: .9s
}

.subul-video-popup__icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1
}

.subul-video-popup__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: var(--subul-video-icon-color, #fff)
}

@keyframes subulVideoRipple {
    0% {
        box-shadow: 0 0 0 0 var(--subul-video-ripple-color, rgba(255, 255, 255, .12))
    }

    100% {
        box-shadow: 0 0 0 60px rgba(255, 255, 255, 0)
    }
}

.subul-video-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, .72)
}

.subul-video-modal__dialog {
    width: min(100%, 980px);
    aspect-ratio: 16/9;
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden
}

.subul-video-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    cursor: pointer
}

.subul-video-modal iframe,
.subul-video-modal video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.subul-locations {
    --subul-locations-cols: 3;
    --subul-locations-gap: 30px;
    --subul-location-thumb-height: 260px;
    --subul-location-card-height: var(--subul-location-thumb-height);
    --subul-location-overlay: linear-gradient(180deg, rgba(0, 0, 0, .10) 0, rgba(0, 0, 0, .55) 55%, rgba(0, 0, 0, .85) 100%);
    --subul-location-overlay-hover: rgba(176, 143, 51, .78)
}

.subul-locations .container {
    margin: 0 auto;
    padding: 0 15px
}

.subul-locations .section-title {
    text-align: center;
    margin: 0 0 48px
}

.subul-locations__grid {
    display: grid;
    grid-template-columns: repeat(var(--subul-locations-cols), minmax(0, 1fr));
    gap: var(--subul-locations-gap)
}

.subul-locations__item {
    min-width: 0
}

.subul-locations .location-wrapper {
    position: relative;
    overflow: hidden
}

.subul-locations .location-thumb {
    position: relative;
    height: var(--subul-location-card-height, var(--subul-location-thumb-height));
    overflow: hidden;
    text-align: right;
    isolation: isolate
}

.subul-locations .location-thumb:before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--subul-location-overlay);
    z-index: 1;
    transition: background .3s ease, opacity .3s ease;
    pointer-events: none
}

.subul-locations .location-wrapper:hover .location-thumb:before {
    background: var(--subul-location-overlay-hover)
}

.subul-locations .location-thumb>img,
.subul-locations .location-thumb>a,
.subul-locations .location-thumb>.subul-location__map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.subul-locations .location-thumb>a,
.subul-locations .subul-location__map {
    display: block
}

.subul-locations .location-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease
}

.subul-locations .location-wrapper:hover .location-thumb img {
    transform: scale(1.08)
}

.subul-locations .subul-location__bottom {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16)
}

.subul-locations .subul-location__bottom:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .40);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none
}

.subul-locations .subul-location__bottom-inner {
    position: relative;
    z-index: 1;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: right
}

.subul-locations .subul-location__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: flex-start
}

.subul-locations .subul-location__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0
}

.subul-locations .subul-location__contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    line-height: 1;
    font-size: 20px;
    color: #fff;
    flex: 0 0 auto
}

.subul-locations .subul-location__contact-icon svg {
    display: block;
    width: 1em;
    height: 1em
}

.subul-locations .subul-location__contact-text {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2
}

.subul-locations .subul-location__address {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 12px
}

.subul-locations .subul-location__address-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    line-height: 1;
    font-size: 20px;
    color: #fff;
    flex: 0 0 auto
}

.subul-locations .subul-location__address-icon svg {
    display: block;
    width: 1em;
    height: 1em
}

.subul-locations .subul-location__address-text {
    color: #fff;
    text-decoration: none;
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5
}

.subul-locations .subul-location__bottom a:hover {
    text-decoration: underline
}

.subul-locations .subul-location__map {
    cursor: pointer
}

.subul-locations .subul-location__map-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    padding: 8px 10px;
    border-radius: 999px
}

.subul-locations .location-thumb.subul-location-thumb--map-loaded:before {
    opacity: 0
}

.subul-locations .subul-location__map--loaded {
    cursor: default
}

.subul-jet-videos {
    --subul-jet-videos-cols: 4;
    --subul-jet-videos-gap: 24px;
    --subul-jet-videos-radius: 18px
}

.subul-jet-videos__grid {
    display: grid;
    grid-template-columns: repeat(var(--subul-jet-videos-cols), minmax(0, 1fr));
    gap: var(--subul-jet-videos-gap)
}

.subul-jet-videos__cell {
    min-width: 0
}

.subul-jet-videos__item {
    width: 100%;
    border: 0;
    background: #0b0b0b;
    border-radius: var(--subul-jet-videos-radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
    display: block;
    padding: 0
}

.subul-jet-videos__thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform .35s ease
}

.subul-jet-videos__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, .45) 70%, rgba(0, 0, 0, .65) 100%);
    transition: opacity .25s ease;
    opacity: 1
}

.subul-jet-videos__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .9);
    background: rgba(0, 0, 0, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, background .25s ease
}

.subul-jet-videos__play svg {
    width: 26px;
    height: 26px;
    fill: #fff
}

@media (hover:hover) {
    .subul-jet-videos__item:hover .subul-jet-videos__thumb {
        transform: scale(1.06)
    }

    .subul-jet-videos__item:hover .subul-jet-videos__play {
        transform: translate(-50%, -50%) scale(1.04);
        background: rgba(0, 0, 0, .28)
    }
}

.subul-jet-videos__actions {
    display: flex;
    justify-content: center;
    margin-top: 28px
}

.subul-jet-videos__load-more {
    border: 0;
    border-radius: 999px;
    background: #b08f33;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    padding: 14px 26px;
    cursor: pointer
}

.subul-jet-videos__load-more.is-loading {
    opacity: .7;
    cursor: progress
}

.subul-jet-videos__load-more:disabled {
    opacity: .65;
    cursor: not-allowed
}

.subul-gallery-loadmore {
    --subul-gallery-cols: 4;
    --subul-gallery-gap: 24px;
    --subul-gallery-radius: 18px;
    --subul-gallery-overlay: rgba(0, 0, 0, .08);
    --subul-gallery-overlay-hover: rgba(0, 0, 0, .28)
}

.subul-gallery-loadmore__grid {
    display: grid;
    grid-template-columns: repeat(var(--subul-gallery-cols), minmax(0, 1fr));
    gap: var(--subul-gallery-gap)
}

.subul-gallery-loadmore__cell {
    min-width: 0
}

.subul-gallery-loadmore__item {
    position: relative;
    border-radius: var(--subul-gallery-radius);
    overflow: hidden;
    aspect-ratio: 1/1
}

.subul-gallery-loadmore__link {
    position: absolute;
    inset: 0;
    display: block;
    text-decoration: none;
    z-index: 1
}

.subul-gallery-loadmore__overlay {
    position: absolute;
    inset: 0;
    display: block;
    background: var(--subul-gallery-overlay);
    transition: background .25s ease, opacity .25s ease;
    opacity: 1;
    pointer-events: none;
    z-index: 2
}

.subul-gallery-loadmore__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transition: transform .35s ease
}

@media (hover:hover) {
    .subul-gallery-loadmore__item:hover .subul-gallery-loadmore__img {
        transform: scale(1.06)
    }

    .subul-gallery-loadmore__item:hover .subul-gallery-loadmore__overlay {
        background: var(--subul-gallery-overlay-hover)
    }
}

.subul-gallery-loadmore__actions {
    display: flex;
    justify-content: center;
    margin-top: 28px
}

.subul-gallery-loadmore__load-more {
    border: 0;
    border-radius: 999px;
    background: #b08f33;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    padding: 14px 26px;
    cursor: pointer
}

.subul-gallery-loadmore__load-more.is-loading {
    opacity: .7;
    cursor: progress
}

.subul-gallery-loadmore__load-more:disabled {
    opacity: .65;
    cursor: not-allowed
}