@import 'nav-item.css';
@import './home-slider.css';

@tailwind base;
@layer base {
    body::-webkit-scrollbar {
        display: none;
    }
    body {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    h1 {
        @apply font-bold text-5xl leading-none;
    }

    h2 {
        @apply text-xl;
    }

    h3 {
        @apply text-lg;
    }

    h4 {
        @apply text-lg;
    }

    h5 {
        @apply text-lg;
    }

    h6 {
        @apply text-lg;
    }
}
@tailwind components;
@tailwind utilities;
@layer utilities {
    .text-stroke-current {
        -webkit-text-stroke: 1px currentcolor;
    }

    .title-outline-blue {
        -webkit-text-stroke: 1px #466d81;
        color: transparent;
    }

    .title-outline-blue-contrast {
        -webkit-text-stroke: 1px #51bcc6;
        color: transparent;
    }

    .title-outline-green-light {
        -webkit-text-stroke: 1px #abc94a;
        color: transparent;
    }

    .title-outline-green {
        -webkit-text-stroke: 1px #48b28c;
        color: transparent;
    }

    .title-outline-pink {
        -webkit-text-stroke: 1px #ed9bb3;
        color: transparent;
    }

    .title-outline-red {
        -webkit-text-stroke: 1px #ee3b02;
        color: transparent;
    }
}

input[type=text] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.is-animating {
    transition: transform 400ms cubic-bezier(0.5, 0, 0.5, 1)
}

@media(max-width: 780px){
    .embla{
        --slide-height: 75vw;
        --slide-size: 95%;
    }
}


@media(min-width: 780px){
    .embla{
        --slide-height: 35vw;
        --slide-size: 75%;
    }
}

.embla {
    --slide-spacing: 1rem;
    padding: 1.6rem;
    z-index: 10;
}

.embla__viewport {
    overflow: hidden;
}

.embla__container {
    display: flex;
    flex-direction: row;
    height: auto;
    margin-left: calc(var(--slide-spacing) * -1);
}

.embla__slide {
    flex: 0 0 var(--slide-size);
    min-width: 0;
    padding-left: var(--slide-spacing);
    position: relative;
}

.embla__slide__img {
    display: block;
    height: var(--slide-height);
    width: 100%;
    object-fit: cover;
}

li::marker {
    font-size: 13px;
}


