/* Large Fabric Block */

.large-fabric-block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 4em;
}

.large-fabric-slide {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    min-height: 685px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;     
    overflow: hidden; 
}

.large-fabric-slide::after{
    content: '';
    position: absolute;
    inset: 0;               
    background: linear-gradient(360deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 25%) 25.5%, rgb(0 0 0 / 34%) 100%);
    transform: rotate(-180deg);
    pointer-events: none;   
    border-radius: inherit; 
    z-index: 1;            
}

.large-fabric-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    max-width: 700px;
    height: 100%;
    gap: 1em;
    padding: 4em;
    position: relative;
    z-index: 2;
    background: none;   
}

.lf-slide-title {
    font-weight: 700;
    font-size: 40px;
    line-height: 80%;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0;
}

.lf-slide-description {
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.04em;
    color: #fff;
}

.lf-slide-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 50px;
    background-color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

.lf-slide-btn:hover {
    background-color: #d6d6d6;
    color: #131212;
}

.lf-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    padding-top: 1em;
}

.lf-slider-prev,
.lf-slider-next {
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

.lf-slider-prev img,
.lf-slider-next img {
    width: 32px;
    height: auto;
    stroke: #fff;
}

.lf-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lf-slider-dots .slick-dots {
    position: relative !important;
    bottom: 0;
    display: flex !important;
    gap: 0.5em;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.slick-dots li {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer; 
}

.lf-slider-dots .slick-dots li button {
    width: 20px;
    height: 5px;
    padding: 0;
    border: none;
    border-radius: 20px;
    background-color: #777;
    text-indent: -9999px;
    cursor: pointer;
}

.lf-slider-dots .slick-dots li.slick-active button {
    background-color: #fff;
}