/* LEFT ADDRESS */
.nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fc0000;
}

.nav-left i {
    color: #fc8989;
}



.btn-row {
    display: flex;
    align-items: center;
    gap: 15px;
    /* side by side spacing */
}

.earth-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    z-index: 999;
}


/* Mobile */
@media (max-width: 767px) {
    .address-hide-mobile {
        display: none;
    }
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}



/* Mobile hide */
.map {
    display: none;
}

/* Desktop / Tablet */
@media (min-width: 768px) {
    .map {
        display: block;
    }
}

.map2 {
    display: block;
}

/* Desktop / Tablet */
@media (min-width: 1200px) {
    .map2 {
        display: none;
    }
}


.num {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}


@media (max-width: 767px) {

    /* Gallery row */
    .instagram .gallery {
        display: flex;
        flex-wrap: wrap;
        margin: 0;
        padding: 0;
    }

    /* Hide all items */
    .instagram .gallery .item {
        display: none;
    }

    /* Show only first 3 items */
    .instagram .gallery .item:nth-child(-n+3) {
        display: block;
        width: 33.3333%;
        /* 3 images = full width */
        padding: 2px;
        /* small gap, adjust if needed */
        box-sizing: border-box;
    }

    .instagram .gallery img {
        width: 100%;
        height: auto;
        display: block;
    }
}


