.video-bg {
    position: relative;
    overflow: hidden;
    padding-inline: var(--spacing-small);
    -webkit-transition: padding ease-in-out 0.5s;
    -moz-transition: padding ease-in-out 0.5s;
    -o-transition: padding ease-in-out 0.5s;
    transition: padding ease-in-out 0.5s;
    display: flex;
    align-items: center;
}

.video-bg:hover {
    padding-inline: 0;
}

.video-bg video {
    height: auto;
    width: 100%;
    max-width: 100%;
    display: block;
    object-fit: cover;
    height: 1040px;
}

.home-intro-slider-wrapper {
    color: var(--color-white);
    position: absolute;
    left: 0;
    right: 0;
}

.slider-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 70%;
}

.slider-pretitle {
    font-size: var(--body-text-large) !important;
    font-style: normal;
    font-weight: 300 !important;
    line-height: 110%;
    letter-spacing: 1.92px;
    text-transform: uppercase;
}

.slider-title {
    line-height: 100%;
}

.slider-link {
    margin-top: 64px;
    /* margin-bottom: calc(80px + 52px); */
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.swiper-nav {
    display: flex;
    gap: 16px;
    position: absolute;    
    bottom: 0;
    display: none;
}

.swiper-nav .hero-swiper-btn {
    background: rgba(255, 255, 255, 0.40);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 16px;
    width: 100%;
    height: auto;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.hero-swiper-btn::after {
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: initial;
}

.swiper-button-prev.hero-swiper-btn::after {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M0.833527 9.9979L6.37144 16.2458L7.30687 15.4167L3.05785 10.6229L19.1687 10.6229V9.3729L3.05785 9.3729L7.30687 4.57913L6.37144 3.75L0.833527 9.9979Z" fill="%23171717"/></svg>');
}

.swiper-button-next.hero-swiper-btn::after {
    content: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M13.6306 3.75L19.1685 9.9979L13.6306 16.2458L12.6952 15.4167L16.9442 10.6229H0.833344V9.3729H16.9442L12.6952 4.57913L13.6306 3.75Z" fill="%23171717"/></svg>');
}


/* Medium devices (tablets, less than 992px) */
@media (max-width: 992px) {

    .video-bg video {
        height: 840px;
    }

}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 576px) { 

    .home-intro-slider-wrapper {
        top: auto;
        bottom: 25px;
    }

    .video-bg {
        padding: 0;
    }

    .video-bg video {
        height: 680px;
    }

    .slider-content {
        align-items: center;
        width: 100%;
    }

    .slider-link {
        font-size: 18px;
        font-weight: 500;
        line-height: 140%;
        padding: 28px 0px !important;
        text-align: center;
        width: 100%;
        margin-bottom: 40px;
    }

    .home-intro-slider-wrapper .swiper-nav {
        position: static;
        justify-content: center;
    }

    .swiper-nav .hero-swiper-btn {
        width: 50px;
    }

}