.new_footer_area {
    position: relative;
    overflow: hidden;
}

.new_footer_top {
    padding: 120px 0 270px;
    position: relative;
    overflow-x: hidden;
}

.footer_bottom {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #7f88a6;
    padding: 27px 0 50px;
}

.copy_right_text {
    margin-top: 2rem;
    text-align: center;
}

.copy_right_text p {
    color: #010101;
    font-size: 18px;
}

.company_widget .section-title.getstarted_txt {
    color: #010101;
}

.fotter_book_btn {
    background: var(--color-primary-1);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-default);
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: 0.3s ease-in-out;
}

.fotter_book_btn:hover {
    transform: scale(1.05);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: #d6bfa5;
    transform: translateX(3px);
    opacity: 0.9;
}

.two-column-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    column-gap: 2rem;
    row-gap: 0.4rem;
}

.fotter_link_txt_adj {
    text-align: left;
    width: 100%;
}

.new_footer_top .fotter_link_txt_adj ul li a {
    color: #010101;
    font-size: 1.5rem;
    font-weight: 500;
}

@media (min-width: 992px) {
    .fotter_link_txt_adj {
        padding-top: 1rem;
    }
}

@media (max-width: 768px) {
    .two-column-list {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .footer-links a {
        font-size: 1rem;
    }
}

@media screen and (max-width: 600px) {
    footer .footer__row__copyright {
        flex-direction: column;
        gap: 0.5rem
    }

    /* .footer_bg_one,
    .footer_bg_three,
    .footer_bg_four, */
    .parachute-2 {
        display: none;
    }
}

.new_footer_top .footer_bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 266px;
    background: url('/assets/images/dubai_pic.webp');
}

/* .footer_bg_one {
    background: url("assets/images/volks.gif") no-repeat center / 100%;
    width: 330px;
    height: 105px;
    position: absolute;
    bottom: 0;
    left: 10%;
    animation: myfirst 25s linear infinite;
}

.footer_bg_two {
    background: url("assets/images/cyclist.gif") no-repeat center / 100%;
    width: 88px;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 25%;
    animation: myfirst 30s linear infinite;
}

.footer_bg_three {
    background: url(assets/images/tempo.gif) no-repeat center / contain;
    width: 190px;
    height: 83px;
    position: absolute;
    bottom: 0;
    left: 25%;
    animation: mylast 30s linear infinite;
}

.footer_bg_four {
    background: url(assets/images/cart_wheel.gif) no-repeat center / contain;
    width: 198px;
    height: 52px;
    position: absolute;
    bottom: 0;
    left: 60%;
    animation: mylast 20s linear infinite;
} */

/* @keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@keyframes mylast {
    0% {
        left: 110%;
    }

    100% {
        left: -20%;
    }
} */

.parachute-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    pointer-events: none;
    overflow: hidden;
}

.parachute {
    position: absolute;
    width: 70px;
    opacity: 0.9;
    animation: parachuteFall linear infinite;
}

.parachute-1 {
    left: 10%;
    animation-duration: 14s;
    animation-delay: 0s;
}

.parachute-2 {
    left: 45%;
    width: 90px;
    animation-duration: 17s;
    animation-delay: 3s;
}

.parachute-3 {
    left: 75%;
    width: 60px;
    animation-duration: 15s;
    animation-delay: 5s;
}

@keyframes parachuteFall {
    0% {
        top: -120px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateX(25px) rotate(5deg);
    }

    75% {
        transform: translateX(-25px) rotate(-5deg);
    }

    100% {
        top: 100%;
        transform: translateX(10px) rotate(0deg);
        opacity: 0;
    }
}