/* Nav */
.nav-logo{
    width: 200px;
    height: auto;
}



/* Footer */
.footer-copyright-wrapper{
    max-width: 1344px;
    color: #eeeeee;
    text-align: center;
    font-size: 11px;
    padding: 16px 16px 16px;
    margin: 0 auto;
    border-top: 1px solid #ccc;
}
.footer-logos-row{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 16px;
}
.footer-logos-row .and-symb{
    font-size: 24px;
    color: #fff;
}





.footer-big-text-wrapper {
    overflow: hidden;
    width: 100%;
}

.footer-slider {
    display: flex;
}

.footer-track {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    animation: scrollLoop 20s linear infinite;
}

.footer-txt-slider {
    white-space: nowrap;
}


@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Whatsapp Float Btn */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #40b93c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 9999;
    text-decoration: none;
    box-shadow:
        0 0 10px rgba(69, 211, 37, 0.8),
        0 0 20px rgba(51, 211, 37, 0.6),
        0 0 30px rgba(37, 211, 57, 0.4);

    animation: floaty 3s ease-in-out infinite, glowPulse 1.8s infinite;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    pointer-events: none;
    z-index: 9999999;
}
.whatsapp-float.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    line-height: 1;
    color: #000000;
}

@keyframes floaty {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow:
        0 0 8px rgba(37, 211, 69, 0.6),
        0 0 16px rgba(46, 211, 37, 0.4);
    }
    50% {
        box-shadow:
        0 0 14px rgba(46, 211, 37, 0.9),
        0 0 28px rgba(37, 211, 51, 0.7);
    }
    100% {
        box-shadow:
        0 0 8px rgba(37, 211, 37, 0.6),
        0 0 16px rgba(57, 211, 37, 0.4);
    }
}

/* @media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 28px;
        bottom: 16px;
        right: 16px;
    }
} */
