.lipidtech {
    .swiper-button-prev {
        background-color: var(--hf-dark-800);
    }
    .swiper-button-next {
        background-color: var(--hf-dark-800);
    }
}

.swiper-slide {
    max-height: 450px;
    img {
        height: 100%;
        width: 100%;
        min-height: 100%;
        object-fit: cover;
    }
}

@media screen and (min-width: 980px) {

    .swiper-container-wrapper {
        overflow: visible;
        width: 100vw;
        overflow: visible;
        clip-path: inset(-100vw -100vw -100vw 0);
        height: 550px;
        position: relative;
        display: flex;
        align-items: flex-end;
    }

    .swiper-wrapper {
        display: flex;
        align-items: flex-end;
    }
  
    .controllers--slider {
        top: 23px;
        left: -9px;
        z-index: 99999;
        width: 130px;
        position: absolute;
    }
  
    .swiper-button-prev {
        &:after {
            font-size: 20px
        }
    }
    .swiper-button-next {
        &:after {
            font-size: 20px
        }
    }
}
  
  
@media screen and (max-width: 979px) {
  
    .swiper-container-wrapper {
        overflow: hidden;
    }
  
    .swiper {
        overflow: visible;
    }
  
    .swiper-wrapper {
        padding-left: 0;
        height: fit-content;
    }
  
    .swiper-slide {
        height: fit-content;
        background-color: white;
    }
  
    .controllers--slider {
        top: 0;
        left: 0;
        z-index: 99999;
    }
}
  
.swiper-button-next::after, .swiper-button-prev::after {
    color: white;
    font-size: 18px!important
}
  
  
.swiper-button-next::after {
    margin-left: 3px;
}
  
.swiper-button-prev::after {
    margin-right: 3px;
}
  
.swiper-button-next, .swiper-button-prev {
    background-color: var(--hf-blue-600);
    padding: 5px;
    height: 45px;
    width: 45px;
    min-width: 45px;
    min-height: 45px;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlayed {

    .swiper-slide {
        position: relative;

        .slider-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-gradient-blue);
            transition: var(--animation-300);
            z-index: 1;
            opacity: 1;

            &:hover {
                opacity: 0;
                transition: var(--animation-300);
            }
        }

        .multiply-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-gradient-blue);
            mix-blend-mode: multiply;
        }

        .slider-overlay-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        h2 {
            position: relative;
            z-index: 9999;
            color: var(--hf-white-100);
            margin: 0;
            font-size: 32px;
            hyphens: auto;
            padding: 50px;
            @media only screen and (max-width: 992px) {
                font-size: 24px;
            }
        }
    }
}