.experience-region.experience-main {
    overflow-x: hidden;
}

.heroBanner-slider-item {
    width: 100%;
    overflow: hidden;
    height: 100dvh;
    position: relative;
}

.heroBanner-slider .slick-track {
    height: 100dvh;
}

.heroBanner-slider-item img {
    aspect-ratio: 16/9;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    bottom: 80px;
    margin-inline-start: 32px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px;
    gap: 8px;
    max-width: 426px;
}

@media (max-width: 899.98px) {
    .banner-content {
        bottom: 40px;
        max-width: 100%;
        left: 0;
        right: 0;
        margin: 0 16px;
    }
}

.banner-content .banner-title {
    font-size: 48px;
    line-height: 50.4px;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    cursor: text;
}

@media (max-width: 899.98px) {
    .banner-content .banner-title {
        font-size: 2rem;
        line-height: 38.4px;
    }
}

.banner-content .banner-description {
    font-size: 12px;
    line-height: 16.38px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: text;
}

.banner-content .banner-link {
    font-size: 12px;
    line-height: 16.38px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 4px;
    text-underline-offset: .18rem;
    text-decoration: underline;
}

.banner-link img {
    width: 20px;
    display: inline-block;
}

.slider-dots {
    position: absolute;
    bottom: 28px;
    right: 0;
    width: 460px;
    list-style: none;
}

@media (max-width: 899.98px) {
    .slider-dots {
        bottom: 0;
        width: 100%;
    }
}

.slider-dots li {
    display: inline-flex;
    align-items: center;
    width: calc(25% - 35px);
    margin: 0 8px;
    min-height: 10px;
    cursor: pointer;
}

.slider-dots button {
    position: relative;
    width: 100%;
    height: 2px;
    border: 0;
    border-radius: 4px;
    font-size: 0;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.slider-dots button:focus {
    outline: none;
    background-color: #ffffff;
}

.slider-dots button:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0%;
    height: 100%;
    border-radius: 4px;
}

.slider-dots .slick-active button:after {
    background-color: #ffffff;
    animation: progress 5s linear forwards;
}

.slider-dots .slick-paused button:after {
    background-color: #ffffff;
    width: 100%;
}

.play-pause-btn {
    position: absolute;
    bottom: 35px;
    right: 32px;
}

@media (max-width: 899.98px) {
    .play-pause-btn {
        bottom: 12px;
    }
}

.play-pause-btn>.icon-wrapper {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.65));
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

@media (max-width: 899.98px) {
    .play-pause-btn>.icon-wrapper {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 899.98px) {
    .play-pause-btn>.icon-wrapper img {
        width: 14px;
        height: 14px;
    }
}

.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}

@keyframes progress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}