body::-webkit-scrollbar {
    width: 0.5rem;
}

body::-webkit-scrollbar-track {
    background: #0d0d0f;
    border-radius: 8px;
}

body::-webkit-scrollbar-thumb {
    background: #EC4899;
    border-radius: 8px;
}


.fix {
    position: fixed;
    z-index: 999;
    width: 100%;
}

.ani-card {
    transition: transform 500ms ease;
}

.ani-card:hover {
    transform: scale(1.015);    
}

.galery-card {
    transition: transform 500ms ease;
}

.galery-card:hover {
    transform: scale(1.01);    
}

.dark-linear {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 34%, rgba(255,255,255,0) 100%);
}

.home-linear {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 4%, rgba(255,255,255,0) 100%);
}


.marker {
    background-image: url('/pict/photo/mapbox-icon.png');
    background-size: cover;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}

.mapboxgl-popup {
    max-width: 200px;
}

.mapboxgl-popup-content {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.mapboxgl-popup-content > h3{
    color: black;
    font-weight: bold;
}

.mapboxgl-popup-content > p{
    color: black;
}

@media only screen and (max-width: 767px) {
    .nav-mobile {
        width: 100vw;
    }

    .nav-ul {
        height: 3rem;
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: flex;
        justify-content: center;
        text-decoration: none;
    }

}