.slider {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 105px;
    position: relative;
}

.slider .slider-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider .slider-inner .slick-track {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
}

.slide {
    width: 310px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
}

.slide-link {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
}

.slide .image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 232px;
    overflow: hidden;
}

.slide .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide .text-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.slide .text-wrapper .title {
    margin: 0px;
    color: var(--secondary);
    font-weight: 600;
    font-family: "Poppins", serif;
}

.slide .category {
    margin: 0px;
    font-size: 11px;
    font-family: "Poppins", serif;
    color: var(--body);
    pointer-events: none !important;
}

.slider .buttons-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
}

.slider .buttons-container button {
    border: none;
    width: 30px;
    height: 30px;
    background-color: transparent;
    margin: 0px 12px;
}

.slider .slider-button.left {
    background-image: url('../icons/arrow-left-green.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.slider .slider-button.right {
    background-image: url('../icons/arrow-right-green.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.slider .slide-counter {
    display: none;
}

.slider.full-page, .slider.background {
    padding: 0px;
}

.slider.full-page .slick-track, .slider.background .slick-track {
    gap: 0px;
}

.slider.background .img-slide {
    width: 100vw;
    height: 100vh;
}

.slider.full-page .img-slide {
    width: 100vw;
    height: 630px;
}

.slider.full-page .img-slide img, 
.slider.background .img-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.slider.background .buttons-container {
    display: none !important;
}

.slider.full-page .slider-button {
    margin: 0px 40px;
}

.slider.full-page .slider-button.left {
    background-image: url('../icons/arrow-left-white.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.slider.full-page .slider-button.right {
    background-image: url('../icons/arrow-right-white.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.slider .slider-dots {
    display: none;
}

@media screen and (min-width: 1321px) {
    .slider.full-page .img-slide {
        width: 100vw;
        height: 750px;
    }
}

@media screen and (min-width: 1400px) {
    .slider.normal .slide .image-wrapper {
        max-height: 310px;
    }
}

@media screen and (max-width: 992px) {
    .slider.full-page .buttons-container {
        display: none !important;
    }

    .slider.full-page .slider-dots {
        display: flex;
        position: absolute;
        bottom: 20px;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        height: fit-content;
        z-index: 10;
    }

    .slider.full-page .slider-dots li {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider.full-page .slider-dots button {
        width: 12px;
        height: 12px;
        background: white;
        font-size: 0px;
        overflow: hidden;
        border-radius: 20px;
        border: 1px solid white;
        transition: all 0.2s ease-in-out;
        padding: 0px;
    }

    .slider.full-page .slider-dots .slick-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        height: fit-content;
        padding: 0px;
        list-style: none;
        margin: 0px;
    }

    .slider.full-page .slider-dots .slick-active button {
        background: var(--green);
    }
}

@media screen and (max-width: 768px) {
    .slider.normal {
        padding: 0px;
        flex-direction: column;
        gap: 35px;
    }

    .slider.normal .slider-inner .slick-track {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 15px;
    }

    .slider.normal .buttons-container {
        position: relative;
        top: 0px;
        left: 0px;
        transform: none;
    }

    .slider.normal .slide {
        width: calc(100vw - 60px);
    }

    .slider.normal .slide .image-wrapper {
        max-height: 325px;
    }

    .slider.normal .slide .text-wrapper {
        gap: 15px;
    }

    .slider.full-page .img-slide {
        height: 400px;
    }
}

@media screen and (max-width: 575px) {
    .slider .slide-counter {
        display: block;
    }
}