/* Slider */
.slider-fullscreen-pangasius {
    .slick-slide {

        @apply flex !important;
        @apply items-center justify-center mx-auto;
        max-height: 80vh;
        height: 350px;


        img {
            @apply w-full h-full object-cover;

        }

        @screen sm {
            @apply h-auto;
        }
    }

    .arrows {
        @apply px-5 top-1/2;
        transform: translateY(-50%);

        i {
            @apply text-white border-white border rounded-full flex items-center justify-center text-xl;
            width: 40px;
            height: 40px;
        }
    }
}