@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

@import "tailwindcss";

@layer utilities {
    .font-plus-jakarta-sans {
        font-family: "Plus Jakarta Sans", sans-serif;
    }

}

@media screen and (max-width:1024px) {


    .side-nav {
        position: fixed;
        z-index: 1010;
        top: 72px;
        left: -100%;
        height: 100vh;
        width: 270px;
        background-color: #FFFFFF;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 50px 0;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(15px);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
        transition: left 0.5s ease;
    }

    .side-nav.active {
        left: 0;

    }

    /* Overlay */
    .layer {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .layer.active {
        visibility: visible;
        opacity: 1;
    }
}

@media screen and (max-width: 767.98px) {
    .search-form.active {
        position: absolute;
        top: 64px;
        left: 20px;
    }

    .search-box {
        display: none;
        transition: all 2s ease;
        width: calc(100vw - 40px);
    }

    .search-box.active {
        display: block;

    }


    .search-icon.active {
        position: absolute;
        top: 10px;
        left: 10px;
    }
}


.slide {
    display: none;
}


.active-dot,
.dot:hover {
    background-color: #717171;
}


.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4
    }

    to {
        opacity: 1
    }
}