/* Slider */
.single-post-crabe {
    .slick-slide {

        @apply flex !important;
        @apply items-center justify-center mx-auto;
        max-height: 80vh;
        height: 350px;


        img {
            @apply object-cover w-full h-full;

        }

        @screen sm {
            @apply h-auto;
        }
    }

    .description {
        ul {
            margin: 2em 0;

            li {
                @apply p-0 m-0 list-none;
                margin: 1em;

                &:before {
                    @apply text-secondary;
                    content: '\f111';
                    font-family: 'Font Awesome 5 Pro';
                    float: left;
                    margin-left: -1.5em;
                    font-size: 12px;
                    margin-top: 4px;
                }
            }
        }
    }
}