.v1-slider {
    position: relative;
}
.v1-slider_fixed {
    position: relative;
    z-index: 1;
    height: 100svh;
}
.v1-slider_fixed .v1-slider {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin-bottom: 0;
}
header.fixed + main .v1-slider_fixed {
    height: calc(100svh - 62px);
}
header.fixed + main .v1-slider_fixed .v1-slider {
    top: 62px;
}

@media screen and (max-width: 520px) {
    .v1-slider video {
    object-fit: cover;
    height: 100vh;
}
}
.v1-slider__wrap {
    height: 100%;
}

.v1-slider__item {
    position: relative;
    height: 100%;
}

.v1-slider__item picture,
.v1-slider__item img {
    object-fit: cover;
    height: calc(100svh - var(--header-height) + 2px);
}

.v1-slider .slick-list,
.v1-slider .slick-track {
    height: 100%!important;
}
.v1-slider__info {
    width: 100%;

    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    z-index: 10;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition:  opacity var(--transition-cond-2) .5s;
    /* color: #FFFFFF; */
}
.v1-slider__info.v1-hidden {
    opacity: 0;
    visibility: hidden;
}
.v1-slider__info.left {
    margin-left: -25vw;
}
.v1-slider__info.right {
    margin-right: -25vw;
}

.v1-slider__info.white {
    color: #FFFFFF;
}

.v1-slider__title {
    font-family: Mulish;
    font-size: clamp(42px,6.8vw,64px);
    font-weight: 200;
    line-height: 1.22em;
    text-align: center;
    text-transform: none;
}

.v1-slider__desc {
    font-size: clamp(14px,2.8vw,16px);;
    font-weight: 400;
    line-height: 1.25em;
    margin-top: 12px;
    /* text-transform: uppercase; */
}

.v1-slider__info.white._shadowed .v1-slider__title,
.v1-slider__info.white._shadowed .v1-slider__desc {
    text-shadow: 0px 1px 4px rgba(0,0,0,.25);
}

.v1-slider__btn {
    width: max-content;
    min-width: 200px;
    text-align: center;
    font-weight: 400;
    color: #000000;
    background: #fff;
    padding: 15px;
    border: 0px;
    /* text-transform: uppercase; */
    transition: var(--transition-cond);
    margin-top: 24px;
    /* border: 1px solid #000; */
}

.v1-slider__info.black .v1-slider__btn {
    background: #000;
    border: none;
    color: #fff;
}

.v1-slider__info.white._shadowed .v1-slider__btn {
    box-shadow: 0px 8px 12px 0px rgba(0,0,0,.15);
}

.v1-slider .slick-dots {
    width: 100%;
    display: flex;
    justify-content: start;
    text-align: center;
    position: absolute;
    bottom: 24px;
    left: 24px;
    list-style: none;
    font-size: 0;
    margin: 0;
    padding: 0;
}
.button-scroll {
    position: absolute;
    width: 80px;
    height: 80px;
    bottom: 0;
    padding: 0;
    left: 50%;
    transform: translatex(-50%);
    background: no-repeat;
    border: none;
    z-index: 2;
    cursor: pointer;
    transition: var(--transition-cond);
}

.button-scroll:hover {
    opacity: .5;
}


.v1-slider .slick-dots .slick-active button {
    animation: v1Slider .2s linear forwards;
}

@keyframes v1Slider {
    0%{
        width: 20px;
        background: #FFFFFF;
    }
    100%{
        width: 40px;
        background: #000;
    }
}

.v1-slider .slick-dots button {
    width: 20px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 4px;
    margin: 0 5px;
    transition: all 0.3s liner;

    border: unset;
    outline: none;
}

@media (max-width: 767px) {

    .v1-slider__info.left {
        margin-left: unset;
    }

    .v1-slider__info.right {
        margin-right: unset;
    }
    .v1-slider__info {
        top: calc(100svh - var(--header-height) - 92px);
        transform: translateY(-100%);
        left: 24px;
        right: 24px;
        width: auto;
    }
    
    .v1-slider__info.white._shadowed .v1-slider__title,
    .v1-slider__info.white._shadowed .v1-slider__desc {
        text-shadow: none;
    }
    .v1-slider__info.white._shadowed .v1-slider__btn {
        box-shadow: none;
    }
}

@media (hover: hover) {
    
    .v1-slider__btn:hover {
        color: #00000080;
    }
    .v1-slider__info.black .v1-slider__btn:hover {
        color: rgba(255, 255, 255, .5);
    }
    .v1-slider__info.black .v1-slider__btn:active {
        background-color: rgba(0, 0, 0, .25);
        color: #fff;
    }
}

.fs-video{
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}