.jet-view-more {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.jet-view-more__button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    padding: 15px 30px;
    font-size: 16px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    line-height: 1;
    background-color: #818a91;
    color: white;
    text-align: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s
}

.jet-view-more__icon {
    color: white;
    margin: 0 5px 0 0
}

.jet-view-more__label {
    color: white
}

.jet-view-more-section-edit-mode {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.5
}

.jet-view-more-section {
    height: 0;
    overflow: hidden
}

.jet-view-more-section.jet-tricks-fade-effect {
    -webkit-animation-name: jetTricksFade;
    animation-name: jetTricksFade;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-timing-function: cubic-bezier(0.26, 0.69, 0.37, 0.96);
    animation-timing-function: cubic-bezier(0.26, 0.69, 0.37, 0.96);
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.jet-view-more-section.jet-tricks-fade-effect.view-more-visible {
    height: auto;
    -webkit-animation-play-state: running;
    animation-play-state: running
}

.jet-view-more-section.jet-tricks-zoom-in-effect {
    -webkit-animation-name: jetTricksZoomIn;
    animation-name: jetTricksZoomIn;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-timing-function: cubic-bezier(0.26, 0.69, 0.37, 0.96);
    animation-timing-function: cubic-bezier(0.26, 0.69, 0.37, 0.96);
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.jet-view-more-section.jet-tricks-zoom-in-effect.view-more-visible {
    height: auto;
    -webkit-animation-play-state: running;
    animation-play-state: running
}

.jet-view-more-section.jet-tricks-zoom-out-effect {
    -webkit-animation-name: jetTricksZoomOut;
    animation-name: jetTricksZoomOut;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-timing-function: cubic-bezier(0.26, 0.69, 0.37, 0.96);
    animation-timing-function: cubic-bezier(0.26, 0.69, 0.37, 0.96);
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.jet-view-more-section.jet-tricks-zoom-out-effect.view-more-visible {
    height: auto;
    -webkit-animation-play-state: running;
    animation-play-state: running
}

.jet-view-more-section.jet-tricks-move-up-effect {
    -webkit-animation-name: jetTricksMoveUp;
    animation-name: jetTricksMoveUp;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-timing-function: cubic-bezier(0.26, 0.69, 0.37, 0.96);
    animation-timing-function: cubic-bezier(0.26, 0.69, 0.37, 0.96);
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.jet-view-more-section.jet-tricks-move-up-effect.view-more-visible {
    height: auto;
    -webkit-animation-play-state: running;
    animation-play-state: running
}

.jet-view-more-section.jet-tricks-fall-perspective-effect {
    -webkit-animation-name: jetTricksFallPerspective;
    animation-name: jetTricksFallPerspective;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-timing-function: cubic-bezier(0.26, 0.69, 0.37, 0.96);
    animation-timing-function: cubic-bezier(0.26, 0.69, 0.37, 0.96);
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.jet-view-more-section.jet-tricks-fall-perspective-effect.view-more-visible {
    height: auto;
    -webkit-animation-play-state: running;
    animation-play-state: running
}

@-webkit-keyframes jetTricksFade {
    0% {
        height: 0;
        opacity: 0
    }

    1% {
        height: auto;
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes jetTricksFade {
    0% {
        height: 0;
        opacity: 0
    }

    1% {
        height: auto;
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes jetTricksZoomIn {
    0% {
        height: 0;
        opacity: 0;
        -webkit-transform: scale(0.75);
        transform: scale(0.75)
    }

    1% {
        height: auto;
        opacity: 0;
        -webkit-transform: scale(0.75);
        transform: scale(0.75)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes jetTricksZoomIn {
    0% {
        height: 0;
        opacity: 0;
        -webkit-transform: scale(0.75);
        transform: scale(0.75)
    }

    1% {
        height: auto;
        opacity: 0;
        -webkit-transform: scale(0.75);
        transform: scale(0.75)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes jetTricksZoomOut {
    0% {
        height: 0;
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    1% {
        height: auto;
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes jetTricksZoomOut {
    0% {
        height: 0;
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    1% {
        height: auto;
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes jetTricksMoveUp {
    0% {
        height: 0;
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    1% {
        height: auto;
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes jetTricksMoveUp {
    0% {
        height: 0;
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    1% {
        height: auto;
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes jetTricksFallPerspective {
    0% {
        height: 0;
        opacity: 0;
        -webkit-transform: perspective(1000px) translateY(50px) translateZ(-300px) rotateX(-35deg);
        transform: perspective(1000px) translateY(50px) translateZ(-300px) rotateX(-35deg)
    }

    1% {
        height: auto;
        opacity: 0;
        -webkit-transform: perspective(1000px) translateY(50px) translateZ(-300px) rotateX(-35deg);
        transform: perspective(1000px) translateY(50px) translateZ(-300px) rotateX(-35deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: perspective(1000px) translateY(0) translateZ(0) rotateX(0deg);
        transform: perspective(1000px) translateY(0) translateZ(0) rotateX(0deg)
    }
}

@keyframes jetTricksFallPerspective {
    0% {
        height: 0;
        opacity: 0;
        -webkit-transform: perspective(1000px) translateY(50px) translateZ(-300px) rotateX(-35deg);
        transform: perspective(1000px) translateY(50px) translateZ(-300px) rotateX(-35deg)
    }

    1% {
        height: auto;
        opacity: 0;
        -webkit-transform: perspective(1000px) translateY(50px) translateZ(-300px) rotateX(-35deg);
        transform: perspective(1000px) translateY(50px) translateZ(-300px) rotateX(-35deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: perspective(1000px) translateY(0) translateZ(0) rotateX(0deg);
        transform: perspective(1000px) translateY(0) translateZ(0) rotateX(0deg)
    }
}

.jet-unfold {
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease
}

.jet-unfold__mask {
    overflow: hidden;
    position: relative
}

.jet-unfold__separator {
    position: absolute;
    display: block;
    width: 100%;
    height: 30px;
    bottom: 0;
    opacity: 1;
    -webkit-transition: opacity 100ms ease;
    -o-transition: opacity 100ms ease;
    transition: opacity 100ms ease
}

.jet-unfold__trigger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 30px
}

.jet-unfold__button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #6ec1e4;
    cursor: pointer
}

.jet-unfold__button-icon {
    margin-right: 5px
}

.jet-unfold-state .jet-unfold__separator {
    opacity: 0
}

.jet-hotspots {
    position: relative
}

.jet-hotspots.image-loaded .jet-hotspots__item {
    visibility: visible
}

.jet-hotspots__container {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    display: block
}

.jet-hotspots__image {
    width: 100%
}

.jet-hotspots__item {
    visibility: hidden;
    position: absolute;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    z-index: 99
}

.jet-hotspots__item .jet-hotspots__item-inner {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    color: white;
    background-color: #6ec1e4;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.jet-hotspots__item i {
    font-size: 20px
}

.jet-hotspots__item span {
    font-size: 14px;
    margin: 0 5px;
    overflow-wrap: break-word
}

.jet-hotspots.jet-hotspots__hotspots-flash-animation .jet-hotspots__item .jet-hotspots__item-inner {
    -webkit-animation-name: flash;
    animation-name: flash;
    -webkit-animation-duration: 7.5s;
    animation-duration: 7.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running
}

.jet-hotspots.jet-hotspots__hotspots-flash-animation .jet-hotspots__item:hover .jet-hotspots__item-inner {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.jet-hotspots.jet-hotspots__hotspots-pulse-animation .jet-hotspots__item .jet-hotspots__item-inner {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running
}

.jet-hotspots.jet-hotspots__hotspots-pulse-animation .jet-hotspots__item:hover .jet-hotspots__item-inner {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.jet-hotspots.jet-hotspots__hotspots-shake-animation .jet-hotspots__item .jet-hotspots__item-inner {
    -webkit-animation-name: shake;
    animation-name: shake;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running
}

.jet-hotspots.jet-hotspots__hotspots-shake-animation .jet-hotspots__item:hover .jet-hotspots__item-inner {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.jet-hotspots.jet-hotspots__hotspots-tada-animation .jet-hotspots__item .jet-hotspots__item-inner {
    -webkit-animation-name: tada;
    animation-name: tada;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running
}

.jet-hotspots.jet-hotspots__hotspots-tada-animation .jet-hotspots__item:hover .jet-hotspots__item-inner {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.jet-hotspots.jet-hotspots__hotspots-rubber-animation .jet-hotspots__item .jet-hotspots__item-inner {
    -webkit-animation-name: rubber;
    animation-name: rubber;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running
}

.jet-hotspots.jet-hotspots__hotspots-rubber-animation .jet-hotspots__item:hover .jet-hotspots__item-inner {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.jet-hotspots.jet-hotspots__hotspots-swing-animation .jet-hotspots__item .jet-hotspots__item-inner {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-play-state: running
}

.jet-hotspots.jet-hotspots__hotspots-swing-animation .jet-hotspots__item:hover .jet-hotspots__item-inner {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

@-webkit-keyframes flash {
    0%,100%,89% {
        opacity: 1
    }

    90%,94%,98% {
        opacity: 0
    }

    92%,96% {
        opacity: 1
    }
}

@keyframes flash {
    0%,100%,89% {
        opacity: 1
    }

    90%,94%,98% {
        opacity: 0
    }

    92%,96% {
        opacity: 1
    }
}

@-webkit-keyframes pulse {
    0%,100%,89% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    90%,94%,98% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    92%,96% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }
}

@keyframes pulse {
    0%,100%,89% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    90%,94%,98% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    92%,96% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }
}

@-webkit-keyframes shake {
    0%,100%,89% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    90%,94%,98% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    92%,96% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
}

@keyframes shake {
    0%,100%,89% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    90%,94%,98% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    92%,96% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
}

@-webkit-keyframes tada {
    0%,100%,86% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    87% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
    }

    90%,94%,98% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }

    92%,96% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
}

@keyframes tada {
    0%,100%,86% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    87% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
    }

    90%,94%,98% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }

    92%,96% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
}

@-webkit-keyframes rubber {
    64% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    73% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1)
    }

    77% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1)
    }

    81% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1)
    }

    86% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1)
    }

    90% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rubber {
    64% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    73% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1)
    }

    77% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1)
    }

    81% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1)
    }

    86% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1)
    }

    90% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@-webkit-keyframes swing {
    0%,100%,75% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }

    85% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }

    90% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }

    95% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
}

@keyframes swing {
    0%,100%,75% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }

    85% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }

    90% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }

    95% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
}

.jet-satellite-widget {
    position: relative
}

.jet-satellite-widget>.elementor-widget-container {
    position: relative;
    z-index: 1
}

.jet-tricks-satellite {
    position: absolute;
    pointer-events: none;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    z-index: 2
}

.jet-tricks-satellite .jet-tricks-satellite__text {
    font-size: 60px;
    font-weight: 600;
    color: #6ec1e4;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.jet-tricks-satellite .jet-tricks-satellite__text span {
    display: block;
    white-space: nowrap;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%
}

.jet-tricks-satellite .jet-tricks-satellite__icon {
    position: relative;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.jet-tricks-satellite .jet-tricks-satellite__icon .jet-tricks-satellite__icon-instance {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    color: #fff;
    background-color: #6ec1e4
}

.jet-tricks-satellite .jet-tricks-satellite__image {
    position: relative;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.jet-tricks-satellite .jet-tricks-satellite__image .jet-tricks-satellite__image-instance {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%
}

.jet-tricks-satellite--top-left {
    top: 0;
    left: 0
}

.jet-tricks-satellite--top-center {
    top: 0;
    left: 50%
}

.jet-tricks-satellite--top-right {
    top: 0;
    left: 100%
}

.jet-tricks-satellite--middle-left {
    top: 50%;
    left: 0
}

.jet-tricks-satellite--middle-center {
    top: 50%;
    left: 50%
}

.jet-tricks-satellite--middle-right {
    top: 50%;
    left: 100%
}

.jet-tricks-satellite--bottom-left {
    top: 100%;
    left: 0
}

.jet-tricks-satellite--bottom-center {
    top: 100%;
    left: 50%
}

.jet-tricks-satellite--bottom-right {
    top: 100%;
    left: 100%
}

.jet-tooltip-widget__content {
    display: none
}

.jet-tooltip-widget .tippy-popper .tippy-tooltip {
    max-width: 100%
}

.jet-tooltip-widget .tippy-popper .jet-tooltip-widget__content {
    display: block
}

.jet-tricks-particles-section__instance {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.jet-sticky-section.stuck {
    position: fixed;
    width: auto;
    z-index: 99
}

.jet-sticky-column {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.jet-parallax-widget:not(.is-mac)>.elementor-widget-container {
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.88, 0.54, 0.98);
    transition: -webkit-transform 0.25s cubic-bezier(0.25, 0.88, 0.54, 0.98);
    -o-transition: transform 0.25s cubic-bezier(0.25, 0.88, 0.54, 0.98);
    transition: transform 0.25s cubic-bezier(0.25, 0.88, 0.54, 0.98);
    transition: transform 0.25s cubic-bezier(0.25, 0.88, 0.54, 0.98), -webkit-transform 0.25s cubic-bezier(0.25, 0.88, 0.54, 0.98);
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

/*
     FILE ARCHIVED ON 23:56:07 Jan 23, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 05:39:26 Jul 22, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 1.642
  exclusion.robots: 0.018
  exclusion.robots.policy: 0.009
  esindex: 0.011
  cdx.remote: 106.877
  LoadShardBlock: 196.191 (3)
  PetaboxLoader3.datanode: 88.493 (4)
  PetaboxLoader3.resolve: 291.757 (3)
  load_resource: 212.08
*/
