#location-menu-container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.category-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    & h3 {
        margin-top: 30px;
    }
}

.grid-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

p.truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: transparent;
}

.svg-container svg {
    width: 50%;
    height: auto;
    max-width: 400px;
}

.svg-container svg path {
    fill: none;
    stroke: #A8223D;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw 1.5s infinite forwards, fillColor 1.5s ease-in-out infinite;
    transition: stroke 0.3s ease;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fillColor {
    0% {
        fill: none;
    }

    25% {
        fill: #F0B8C8;
    }

    50% {
        fill: #F5A8B5;
    }

    100% {
        fill: #A8223D;
    }
}

@media (max-width: 931px) {
    .grid-container {
        justify-content: center;
    }

    .category-container {
        align-items: center;
    }
}