/**
 * STYLES: Block 001 - Hero Bereich
*/

.block-001 {
    height: 100vh;
}

.block-001 .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: -1;
}

.block-001 .bg-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(282deg, rgba(42, 37, 37, 0) 30%, rgba(42, 37, 37, 0.4) 95%);
}

.block-001 .background-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.block-001 .background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1);
}

.block-001 .background-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(282deg, rgba(42, 37, 37, 0) 30%, rgba(42, 37, 37, 0.4) 95%);
}

.block-001 .hero-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: var(--section-padding-top-bottom);
}

.block-001 h1 {
    color: var(--color-white);
    max-width: 700px;
}

.block-001 .lead {
    color: var(--color-white);
    font-size: 1.35rem;
    max-width: 600px;
}


/* Slick Slider CSS */

.block-001 .slick-track,
.block-001 .slick-list {
    height: inherit !important;
}

.block-001 ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translate(-50%, 0);
    list-style-type: none;
    padding: 0;
    z-index: 9;
}

.home .block-001 ul.slick-dots {
    bottom: 8rem;
}


.block-001 ul.slick-dots button {
    font-size: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    border: none;
    background: var(--background-white);
    cursor: pointer;
}

.block-001 ul.slick-dots li.slick-active button {
    background: var(--background-liga);
}

.block-001 ul.slick-dots li:not(:last-child) {
    margin-right: .5rem;
}

.block-001 ul.slick-dots li:first-child:nth-last-child(1) {
  display: none;
}