@keyframes homepage-bounce-slow {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.animate-bounce-slow {
    animation: homepage-bounce-slow 4s ease-in-out infinite;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hero-map {
    height: 240px;
}

@media (min-width: 640px) {
    .hero-map {
        height: 320px;
    }
}

@media (min-width: 768px) {
    .hero-map {
        height: 380px;
    }
}

@media (min-width: 1024px) {
    .hero-map {
        height: 450px;
    }
}
