.fullpage-slides .fullpage-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.fullpage-slides .fullpage-slide-bg {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    min-width: 100%;
    min-height: 100%;
    transition-property: transform;
    transition-duration: 10s;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.fullpage-slides .slide-content {
    position: relative;
    z-index: 1;
    width: 100%;
}
.fullpage-slides .fullpage-slide .fullpage-slide-bg {
    --animation-duration: 20000ms;
    animation: var(--animation-duration) linear;
    animation-fill-mode: forwards;
    animation-play-state: paused;
}
.fullpage-slides .fullpage-slide .fullpage-slide-bg.fullpage-slide-bg--infinite {
    animation: var(--animation-duration) linear infinite alternate;
}
.fullpage-slides .fullpage-slide .fullpage-slide-bg.ken-in {
    animation-name: fullpage-ken-burns-in;
}
.fullpage-slides .fullpage-slide .fullpage-slide-bg.ken-out {
    animation-name: fullpage-ken-burns-out;
}
.fullpage-slides .fullpage-slide.active .fullpage-slide-bg.ken-in,
.fullpage-slides .fullpage-slide.active .fullpage-slide-bg.ken-out {
    animation-play-state: running;
}
@keyframes fullpage-ken-burns-in {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.5);
    }
}
@keyframes fullpage-ken-burns-out {
    0% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}
.fullpage-slides .background-overlay {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.invisible {
    visibility: hidden;
}
.elementor-widget-fullpage-scroll .fullpage-slide .elementor-slick-slider .slick-arrows-inside .slick-next {
    right: 5%;
}
.elementor-widget-fullpage-scroll .fullpage-slide .elementor-slick-slider .slick-arrows-inside .slick-prev {
    left: 5%;
}
body.admin-bar #fp-nav {
    top: calc(50% + 16px);
}
#fp-nav ul {
    display: grid;
}
.fp-slidesNav {
    direction: ltr;
}
.fp-slidesNav ul {
    display: inline-flex;
}
#fp-nav ul,
.fp-slidesNav ul {
    gap: 10px;
}
.fp-controlArrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}
.fp-controlArrow svg {
    width: 24px;
    height: 24px;
}
.fullpage-wrapper-fade {
    width: 100% !important;
    transform: none !important;
}
.fp-section-fade {
    width: 100% !important;
    position: absolute !important;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 0;
    transition: all 0.7s ease-in-out;
}
.fp-section-fade.active {
    visibility: visible;
    opacity: 1;
    z-index: 1;
}
