.bnr_bx {
    margin-top: 40px;
}
.footer-menu {
    background: #fff;
    box-shadow: 0px 0px 5.46px 0.54px rgba(39, 17, 6, 0.08);
    padding: 35px 0;
    text-align: center;
    display: flex;
    gap: 100px;
    justify-content: center;
}

.fly-link {
    font-size: 18px;
    font-family: "Poppins";
    color: rgb(26, 25, 25);
    font-weight: 600;
    line-height: 28px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.fly-text {
    position: absolute;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #1a1919;
    z-index: 9999;
    pointer-events: none;
    white-space: nowrap;
    transition: none;
}

.fly-menu {
    position: absolute;
    background: #fff;
    display: flex;
    gap: 100px;
    justify-content: center;
    padding: 35px 0;
    box-shadow: 0px 0px 5.46px 0.54px rgba(39, 17, 6, 0.08);
    z-index: 9999;
    transition: none;
    opacity: 1;
    color: #1a1919;
}


@keyframes zoomInMenu {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.footer-menu a {
  opacity: 0;
  transform: scale(0.7);
}

.fly-menu a {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}


.footer-menu.menu-visible:not(.fly-menu) a {
   animation: zoomInMenu 1.2s cubic-bezier(.23,1.07,.73,1.01) forwards;
}
.footer-menu.menu-visible:not(.fly-menu) a:nth-child(1) { animation-delay: 0.2s; }
.footer-menu.menu-visible:not(.fly-menu) a:nth-child(2) { animation-delay: 0.5s; }
.footer-menu.menu-visible:not(.fly-menu) a:nth-child(3) { animation-delay: 0.8s; }
.footer-menu.menu-visible:not(.fly-menu) a:nth-child(4) { animation-delay: 1.1s; }
.footer-menu.menu-visible:not(.fly-menu) a:nth-child(5) { animation-delay: 1.4s; }
.footer-menu.menu-visible:not(.fly-menu) a:nth-child(6) { animation-delay: 1.7s; }
.footer-menu.menu-visible:not(.fly-menu) a:nth-child(7) { animation-delay: 2.0s; }
.footer-menu.menu-visible:not(.fly-menu) a:nth-child(8) { animation-delay: 2.3s; }




@media only screen and (max-width: 1680px) {
    .fly-menu {
        padding-right: 70px;
    }
}

@media only screen and (max-width: 1550px) {
    .fly-link {
        font-size: 16px;

    }
}

@media  only screen and (min-width: 1366px) and (max-width: 1440px) {
    .fly-link {
        font-size: 14px;
    }
}

@media only screen and (max-width: 1440px) {
    .fly-link {
         padding-right: 64px;
    }
}


@media only screen and (max-width: 1024px) {
    .fly-link {
         padding-right: 20px;
    }
}


@media only screen and (max-width: 991px) {
    .footer-menu {
        gap: 70px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-menu {
        gap: 50px;
    }
}

@media only screen and (max-width: 600px) {
    .footer-menu {
        gap: 30px;
    }
}

@media only screen and (max-width: 520px) {
    .footer-menu {
        gap: 15px;
    }
}

@media only screen and (max-width: 420px) {
    .fly-link {
        font-size: 13px;
    }
    .footer-menu {
        gap: 10px;
    }
}
@media only screen and (max-width: 360px) {

}